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:  new Roo.data.ArrayReader({
1101                 id: config.id,
1102                 fields : config.fields
1103             },
1104             Roo.data.Record.create(config.fields)
1105         ),
1106         proxy : new Roo.data.MemoryProxy(config.data)
1107     });
1108     this.load();
1109 };
1110 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
1111  * Based on:
1112  * Ext JS Library 1.1.1
1113  * Copyright(c) 2006-2007, Ext JS, LLC.
1114  *
1115  * Originally Released Under LGPL - original licence link has changed is not relivant.
1116  *
1117  * Fork - LGPL
1118  * <script type="text/javascript">
1119  */
1120
1121 /**
1122 /**
1123  * @extends Roo.data.Store
1124  * @class Roo.data.JsonStore
1125  * Small helper class to make creating Stores for JSON data easier. <br/>
1126 <pre><code>
1127 var store = new Roo.data.JsonStore({
1128     url: 'get-images.php',
1129     root: 'images',
1130     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
1131 });
1132 </code></pre>
1133  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
1134  * JsonReader and HttpProxy (unless inline data is provided).</b>
1135  * @cfg {Array} fields An array of field definition objects, or field name strings.
1136  * @constructor
1137  * @param {Object} config
1138  */
1139 Roo.data.JsonStore = function(c){
1140     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
1141         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
1142         reader: new Roo.data.JsonReader(c, c.fields)
1143     }));
1144 };
1145 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
1146  * Based on:
1147  * Ext JS Library 1.1.1
1148  * Copyright(c) 2006-2007, Ext JS, LLC.
1149  *
1150  * Originally Released Under LGPL - original licence link has changed is not relivant.
1151  *
1152  * Fork - LGPL
1153  * <script type="text/javascript">
1154  */
1155
1156  
1157 Roo.data.Field = function(config){
1158     if(typeof config == "string"){
1159         config = {name: config};
1160     }
1161     Roo.apply(this, config);
1162     
1163     if(!this.type){
1164         this.type = "auto";
1165     }
1166     
1167     var st = Roo.data.SortTypes;
1168     // named sortTypes are supported, here we look them up
1169     if(typeof this.sortType == "string"){
1170         this.sortType = st[this.sortType];
1171     }
1172     
1173     // set default sortType for strings and dates
1174     if(!this.sortType){
1175         switch(this.type){
1176             case "string":
1177                 this.sortType = st.asUCString;
1178                 break;
1179             case "date":
1180                 this.sortType = st.asDate;
1181                 break;
1182             default:
1183                 this.sortType = st.none;
1184         }
1185     }
1186
1187     // define once
1188     var stripRe = /[\$,%]/g;
1189
1190     // prebuilt conversion function for this field, instead of
1191     // switching every time we're reading a value
1192     if(!this.convert){
1193         var cv, dateFormat = this.dateFormat;
1194         switch(this.type){
1195             case "":
1196             case "auto":
1197             case undefined:
1198                 cv = function(v){ return v; };
1199                 break;
1200             case "string":
1201                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
1202                 break;
1203             case "int":
1204                 cv = function(v){
1205                     return v !== undefined && v !== null && v !== '' ?
1206                            parseInt(String(v).replace(stripRe, ""), 10) : '';
1207                     };
1208                 break;
1209             case "float":
1210                 cv = function(v){
1211                     return v !== undefined && v !== null && v !== '' ?
1212                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
1213                     };
1214                 break;
1215             case "bool":
1216             case "boolean":
1217                 cv = function(v){ return v === true || v === "true" || v == 1; };
1218                 break;
1219             case "date":
1220                 cv = function(v){
1221                     if(!v){
1222                         return '';
1223                     }
1224                     if(v instanceof Date){
1225                         return v;
1226                     }
1227                     if(dateFormat){
1228                         if(dateFormat == "timestamp"){
1229                             return new Date(v*1000);
1230                         }
1231                         return Date.parseDate(v, dateFormat);
1232                     }
1233                     var parsed = Date.parse(v);
1234                     return parsed ? new Date(parsed) : null;
1235                 };
1236              break;
1237             
1238         }
1239         this.convert = cv;
1240     }
1241 };
1242
1243 Roo.data.Field.prototype = {
1244     dateFormat: null,
1245     defaultValue: "",
1246     mapping: null,
1247     sortType : null,
1248     sortDir : "ASC"
1249 };/*
1250  * Based on:
1251  * Ext JS Library 1.1.1
1252  * Copyright(c) 2006-2007, Ext JS, LLC.
1253  *
1254  * Originally Released Under LGPL - original licence link has changed is not relivant.
1255  *
1256  * Fork - LGPL
1257  * <script type="text/javascript">
1258  */
1259  
1260 // Base class for reading structured data from a data source.  This class is intended to be
1261 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
1262
1263 /**
1264  * @class Roo.data.DataReader
1265  * Base class for reading structured data from a data source.  This class is intended to be
1266  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
1267  */
1268
1269 Roo.data.DataReader = function(meta, recordType){
1270     
1271     this.meta = meta;
1272     
1273     this.recordType = recordType instanceof Array ? 
1274         Roo.data.Record.create(recordType) : recordType;
1275 };
1276
1277 Roo.data.DataReader.prototype = {
1278      /**
1279      * Create an empty record
1280      * @param {Object} data (optional) - overlay some values
1281      * @return {Roo.data.Record} record created.
1282      */
1283     newRow :  function(d) {
1284         var da =  {};
1285         this.recordType.prototype.fields.each(function(c) {
1286             switch( c.type) {
1287                 case 'int' : da[c.name] = 0; break;
1288                 case 'date' : da[c.name] = new Date(); break;
1289                 case 'float' : da[c.name] = 0.0; break;
1290                 case 'boolean' : da[c.name] = false; break;
1291                 default : da[c.name] = ""; break;
1292             }
1293             
1294         });
1295         return new this.recordType(Roo.apply(da, d));
1296     }
1297     
1298     
1299 };/*
1300  * Based on:
1301  * Ext JS Library 1.1.1
1302  * Copyright(c) 2006-2007, Ext JS, LLC.
1303  *
1304  * Originally Released Under LGPL - original licence link has changed is not relivant.
1305  *
1306  * Fork - LGPL
1307  * <script type="text/javascript">
1308  */
1309
1310 /**
1311  * @class Roo.data.DataProxy
1312  * @extends Roo.data.Observable
1313  * This class is an abstract base class for implementations which provide retrieval of
1314  * unformatted data objects.<br>
1315  * <p>
1316  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
1317  * (of the appropriate type which knows how to parse the data object) to provide a block of
1318  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
1319  * <p>
1320  * Custom implementations must implement the load method as described in
1321  * {@link Roo.data.HttpProxy#load}.
1322  */
1323 Roo.data.DataProxy = function(){
1324     this.addEvents({
1325         /**
1326          * @event beforeload
1327          * Fires before a network request is made to retrieve a data object.
1328          * @param {Object} This DataProxy object.
1329          * @param {Object} params The params parameter to the load function.
1330          */
1331         beforeload : true,
1332         /**
1333          * @event load
1334          * Fires before the load method's callback is called.
1335          * @param {Object} This DataProxy object.
1336          * @param {Object} o The data object.
1337          * @param {Object} arg The callback argument object passed to the load function.
1338          */
1339         load : true,
1340         /**
1341          * @event loadexception
1342          * Fires if an Exception occurs during data retrieval.
1343          * @param {Object} This DataProxy object.
1344          * @param {Object} o The data object.
1345          * @param {Object} arg The callback argument object passed to the load function.
1346          * @param {Object} e The Exception.
1347          */
1348         loadexception : true
1349     });
1350     Roo.data.DataProxy.superclass.constructor.call(this);
1351 };
1352
1353 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
1354
1355     /**
1356      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
1357      */
1358 /*
1359  * Based on:
1360  * Ext JS Library 1.1.1
1361  * Copyright(c) 2006-2007, Ext JS, LLC.
1362  *
1363  * Originally Released Under LGPL - original licence link has changed is not relivant.
1364  *
1365  * Fork - LGPL
1366  * <script type="text/javascript">
1367  */
1368 /**
1369  * @class Roo.data.MemoryProxy
1370  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
1371  * to the Reader when its load method is called.
1372  * @constructor
1373  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
1374  */
1375 Roo.data.MemoryProxy = function(data){
1376     if (data.data) {
1377         data = data.data;
1378     }
1379     Roo.data.MemoryProxy.superclass.constructor.call(this);
1380     this.data = data;
1381 };
1382
1383 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
1384     
1385     /**
1386      * Load data from the requested source (in this case an in-memory
1387      * data object passed to the constructor), read the data object into
1388      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1389      * process that block using the passed callback.
1390      * @param {Object} params This parameter is not used by the MemoryProxy class.
1391      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1392      * object into a block of Roo.data.Records.
1393      * @param {Function} callback The function into which to pass the block of Roo.data.records.
1394      * The function must be passed <ul>
1395      * <li>The Record block object</li>
1396      * <li>The "arg" argument from the load function</li>
1397      * <li>A boolean success indicator</li>
1398      * </ul>
1399      * @param {Object} scope The scope in which to call the callback
1400      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1401      */
1402     load : function(params, reader, callback, scope, arg){
1403         params = params || {};
1404         var result;
1405         try {
1406             result = reader.readRecords(params.data ? params.data :this.data);
1407         }catch(e){
1408             this.fireEvent("loadexception", this, arg, null, e);
1409             callback.call(scope, null, arg, false);
1410             return;
1411         }
1412         callback.call(scope, result, arg, true);
1413     },
1414     
1415     // private
1416     update : function(params, records){
1417         
1418     }
1419 });/*
1420  * Based on:
1421  * Ext JS Library 1.1.1
1422  * Copyright(c) 2006-2007, Ext JS, LLC.
1423  *
1424  * Originally Released Under LGPL - original licence link has changed is not relivant.
1425  *
1426  * Fork - LGPL
1427  * <script type="text/javascript">
1428  */
1429 /**
1430  * @class Roo.data.HttpProxy
1431  * @extends Roo.data.DataProxy
1432  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
1433  * configured to reference a certain URL.<br><br>
1434  * <p>
1435  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
1436  * from which the running page was served.<br><br>
1437  * <p>
1438  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
1439  * <p>
1440  * Be aware that to enable the browser to parse an XML document, the server must set
1441  * the Content-Type header in the HTTP response to "text/xml".
1442  * @constructor
1443  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
1444  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
1445  * will be used to make the request.
1446  */
1447 Roo.data.HttpProxy = function(conn){
1448     Roo.data.HttpProxy.superclass.constructor.call(this);
1449     // is conn a conn config or a real conn?
1450     this.conn = conn;
1451     this.useAjax = !conn || !conn.events;
1452   
1453 };
1454
1455 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
1456     // thse are take from connection...
1457     
1458     /**
1459      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
1460      */
1461     /**
1462      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
1463      * extra parameters to each request made by this object. (defaults to undefined)
1464      */
1465     /**
1466      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
1467      *  to each request made by this object. (defaults to undefined)
1468      */
1469     /**
1470      * @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)
1471      */
1472     /**
1473      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
1474      */
1475      /**
1476      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
1477      * @type Boolean
1478      */
1479   
1480
1481     /**
1482      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
1483      * @type Boolean
1484      */
1485     /**
1486      * Return the {@link Roo.data.Connection} object being used by this Proxy.
1487      * @return {Connection} The Connection object. This object may be used to subscribe to events on
1488      * a finer-grained basis than the DataProxy events.
1489      */
1490     getConnection : function(){
1491         return this.useAjax ? Roo.Ajax : this.conn;
1492     },
1493
1494     /**
1495      * Load data from the configured {@link Roo.data.Connection}, read the data object into
1496      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
1497      * process that block using the passed callback.
1498      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1499      * for the request to the remote server.
1500      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1501      * object into a block of Roo.data.Records.
1502      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1503      * The function must be passed <ul>
1504      * <li>The Record block object</li>
1505      * <li>The "arg" argument from the load function</li>
1506      * <li>A boolean success indicator</li>
1507      * </ul>
1508      * @param {Object} scope The scope in which to call the callback
1509      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1510      */
1511     load : function(params, reader, callback, scope, arg){
1512         if(this.fireEvent("beforeload", this, params) !== false){
1513             var  o = {
1514                 params : params || {},
1515                 request: {
1516                     callback : callback,
1517                     scope : scope,
1518                     arg : arg
1519                 },
1520                 reader: reader,
1521                 callback : this.loadResponse,
1522                 scope: this
1523             };
1524             if(this.useAjax){
1525                 Roo.applyIf(o, this.conn);
1526                 if(this.activeRequest){
1527                     Roo.Ajax.abort(this.activeRequest);
1528                 }
1529                 this.activeRequest = Roo.Ajax.request(o);
1530             }else{
1531                 this.conn.request(o);
1532             }
1533         }else{
1534             callback.call(scope||this, null, arg, false);
1535         }
1536     },
1537
1538     // private
1539     loadResponse : function(o, success, response){
1540         delete this.activeRequest;
1541         if(!success){
1542             this.fireEvent("loadexception", this, o, response);
1543             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1544             return;
1545         }
1546         var result;
1547         try {
1548             result = o.reader.read(response);
1549         }catch(e){
1550             this.fireEvent("loadexception", this, o, response, e);
1551             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1552             return;
1553         }
1554         
1555         this.fireEvent("load", this, o, o.request.arg);
1556         o.request.callback.call(o.request.scope, result, o.request.arg, true);
1557     },
1558
1559     // private
1560     update : function(dataSet){
1561
1562     },
1563
1564     // private
1565     updateResponse : function(dataSet){
1566
1567     }
1568 });/*
1569  * Based on:
1570  * Ext JS Library 1.1.1
1571  * Copyright(c) 2006-2007, Ext JS, LLC.
1572  *
1573  * Originally Released Under LGPL - original licence link has changed is not relivant.
1574  *
1575  * Fork - LGPL
1576  * <script type="text/javascript">
1577  */
1578
1579 /**
1580  * @class Roo.data.ScriptTagProxy
1581  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
1582  * other than the originating domain of the running page.<br><br>
1583  * <p>
1584  * <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
1585  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
1586  * <p>
1587  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
1588  * source code that is used as the source inside a &lt;script> tag.<br><br>
1589  * <p>
1590  * In order for the browser to process the returned data, the server must wrap the data object
1591  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
1592  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
1593  * depending on whether the callback name was passed:
1594  * <p>
1595  * <pre><code>
1596 boolean scriptTag = false;
1597 String cb = request.getParameter("callback");
1598 if (cb != null) {
1599     scriptTag = true;
1600     response.setContentType("text/javascript");
1601 } else {
1602     response.setContentType("application/x-json");
1603 }
1604 Writer out = response.getWriter();
1605 if (scriptTag) {
1606     out.write(cb + "(");
1607 }
1608 out.print(dataBlock.toJsonString());
1609 if (scriptTag) {
1610     out.write(");");
1611 }
1612 </pre></code>
1613  *
1614  * @constructor
1615  * @param {Object} config A configuration object.
1616  */
1617 Roo.data.ScriptTagProxy = function(config){
1618     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
1619     Roo.apply(this, config);
1620     this.head = document.getElementsByTagName("head")[0];
1621 };
1622
1623 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
1624
1625 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
1626     /**
1627      * @cfg {String} url The URL from which to request the data object.
1628      */
1629     /**
1630      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
1631      */
1632     timeout : 30000,
1633     /**
1634      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
1635      * the server the name of the callback function set up by the load call to process the returned data object.
1636      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
1637      * javascript output which calls this named function passing the data object as its only parameter.
1638      */
1639     callbackParam : "callback",
1640     /**
1641      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
1642      * name to the request.
1643      */
1644     nocache : true,
1645
1646     /**
1647      * Load data from the configured URL, read the data object into
1648      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1649      * process that block using the passed callback.
1650      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1651      * for the request to the remote server.
1652      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1653      * object into a block of Roo.data.Records.
1654      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1655      * The function must be passed <ul>
1656      * <li>The Record block object</li>
1657      * <li>The "arg" argument from the load function</li>
1658      * <li>A boolean success indicator</li>
1659      * </ul>
1660      * @param {Object} scope The scope in which to call the callback
1661      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1662      */
1663     load : function(params, reader, callback, scope, arg){
1664         if(this.fireEvent("beforeload", this, params) !== false){
1665
1666             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
1667
1668             var url = this.url;
1669             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
1670             if(this.nocache){
1671                 url += "&_dc=" + (new Date().getTime());
1672             }
1673             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
1674             var trans = {
1675                 id : transId,
1676                 cb : "stcCallback"+transId,
1677                 scriptId : "stcScript"+transId,
1678                 params : params,
1679                 arg : arg,
1680                 url : url,
1681                 callback : callback,
1682                 scope : scope,
1683                 reader : reader
1684             };
1685             var conn = this;
1686
1687             window[trans.cb] = function(o){
1688                 conn.handleResponse(o, trans);
1689             };
1690
1691             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
1692
1693             if(this.autoAbort !== false){
1694                 this.abort();
1695             }
1696
1697             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
1698
1699             var script = document.createElement("script");
1700             script.setAttribute("src", url);
1701             script.setAttribute("type", "text/javascript");
1702             script.setAttribute("id", trans.scriptId);
1703             this.head.appendChild(script);
1704
1705             this.trans = trans;
1706         }else{
1707             callback.call(scope||this, null, arg, false);
1708         }
1709     },
1710
1711     // private
1712     isLoading : function(){
1713         return this.trans ? true : false;
1714     },
1715
1716     /**
1717      * Abort the current server request.
1718      */
1719     abort : function(){
1720         if(this.isLoading()){
1721             this.destroyTrans(this.trans);
1722         }
1723     },
1724
1725     // private
1726     destroyTrans : function(trans, isLoaded){
1727         this.head.removeChild(document.getElementById(trans.scriptId));
1728         clearTimeout(trans.timeoutId);
1729         if(isLoaded){
1730             window[trans.cb] = undefined;
1731             try{
1732                 delete window[trans.cb];
1733             }catch(e){}
1734         }else{
1735             // if hasn't been loaded, wait for load to remove it to prevent script error
1736             window[trans.cb] = function(){
1737                 window[trans.cb] = undefined;
1738                 try{
1739                     delete window[trans.cb];
1740                 }catch(e){}
1741             };
1742         }
1743     },
1744
1745     // private
1746     handleResponse : function(o, trans){
1747         this.trans = false;
1748         this.destroyTrans(trans, true);
1749         var result;
1750         try {
1751             result = trans.reader.readRecords(o);
1752         }catch(e){
1753             this.fireEvent("loadexception", this, o, trans.arg, e);
1754             trans.callback.call(trans.scope||window, null, trans.arg, false);
1755             return;
1756         }
1757         this.fireEvent("load", this, o, trans.arg);
1758         trans.callback.call(trans.scope||window, result, trans.arg, true);
1759     },
1760
1761     // private
1762     handleFailure : function(trans){
1763         this.trans = false;
1764         this.destroyTrans(trans, false);
1765         this.fireEvent("loadexception", this, null, trans.arg);
1766         trans.callback.call(trans.scope||window, null, trans.arg, false);
1767     }
1768 });/*
1769  * Based on:
1770  * Ext JS Library 1.1.1
1771  * Copyright(c) 2006-2007, Ext JS, LLC.
1772  *
1773  * Originally Released Under LGPL - original licence link has changed is not relivant.
1774  *
1775  * Fork - LGPL
1776  * <script type="text/javascript">
1777  */
1778
1779 /**
1780  * @class Roo.data.JsonReader
1781  * @extends Roo.data.DataReader
1782  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
1783  * based on mappings in a provided Roo.data.Record constructor.
1784  * 
1785  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
1786  * in the reply previously. 
1787  * 
1788  * <p>
1789  * Example code:
1790  * <pre><code>
1791 var RecordDef = Roo.data.Record.create([
1792     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1793     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
1794 ]);
1795 var myReader = new Roo.data.JsonReader({
1796     totalProperty: "results",    // The property which contains the total dataset size (optional)
1797     root: "rows",                // The property which contains an Array of row objects
1798     id: "id"                     // The property within each row object that provides an ID for the record (optional)
1799 }, RecordDef);
1800 </code></pre>
1801  * <p>
1802  * This would consume a JSON file like this:
1803  * <pre><code>
1804 { 'results': 2, 'rows': [
1805     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
1806     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
1807 }
1808 </code></pre>
1809  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
1810  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
1811  * paged from the remote server.
1812  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
1813  * @cfg {String} root name of the property which contains the Array of row objects.
1814  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
1815  * @cfg {Array} fields Array of field definition objects
1816  * @constructor
1817  * Create a new JsonReader
1818  * @param {Object} meta Metadata configuration options
1819  * @param {Object} recordType Either an Array of field definition objects,
1820  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
1821  */
1822 Roo.data.JsonReader = function(meta, recordType){
1823     
1824     meta = meta || {};
1825     // set some defaults:
1826     Roo.applyIf(meta, {
1827         totalProperty: 'total',
1828         successProperty : 'success',
1829         root : 'data',
1830         id : 'id'
1831     });
1832     
1833     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
1834 };
1835 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
1836     
1837     /**
1838      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
1839      * Used by Store query builder to append _requestMeta to params.
1840      * 
1841      */
1842     metaFromRemote : false,
1843     /**
1844      * This method is only used by a DataProxy which has retrieved data from a remote server.
1845      * @param {Object} response The XHR object which contains the JSON data in its responseText.
1846      * @return {Object} data A data block which is used by an Roo.data.Store object as
1847      * a cache of Roo.data.Records.
1848      */
1849     read : function(response){
1850         var json = response.responseText;
1851        
1852         var o = /* eval:var:o */ eval("("+json+")");
1853         if(!o) {
1854             throw {message: "JsonReader.read: Json object not found"};
1855         }
1856         
1857         if(o.metaData){
1858             
1859             delete this.ef;
1860             this.metaFromRemote = true;
1861             this.meta = o.metaData;
1862             this.recordType = Roo.data.Record.create(o.metaData.fields);
1863             this.onMetaChange(this.meta, this.recordType, o);
1864         }
1865         return this.readRecords(o);
1866     },
1867
1868     // private function a store will implement
1869     onMetaChange : function(meta, recordType, o){
1870
1871     },
1872
1873     /**
1874          * @ignore
1875          */
1876     simpleAccess: function(obj, subsc) {
1877         return obj[subsc];
1878     },
1879
1880         /**
1881          * @ignore
1882          */
1883     getJsonAccessor: function(){
1884         var re = /[\[\.]/;
1885         return function(expr) {
1886             try {
1887                 return(re.test(expr))
1888                     ? new Function("obj", "return obj." + expr)
1889                     : function(obj){
1890                         return obj[expr];
1891                     };
1892             } catch(e){}
1893             return Roo.emptyFn;
1894         };
1895     }(),
1896
1897     /**
1898      * Create a data block containing Roo.data.Records from an XML document.
1899      * @param {Object} o An object which contains an Array of row objects in the property specified
1900      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
1901      * which contains the total size of the dataset.
1902      * @return {Object} data A data block which is used by an Roo.data.Store object as
1903      * a cache of Roo.data.Records.
1904      */
1905     readRecords : function(o){
1906         /**
1907          * After any data loads, the raw JSON data is available for further custom processing.
1908          * @type Object
1909          */
1910         this.o = o;
1911         var s = this.meta, Record = this.recordType,
1912             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
1913
1914 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
1915         if (!this.ef) {
1916             if(s.totalProperty) {
1917                     this.getTotal = this.getJsonAccessor(s.totalProperty);
1918                 }
1919                 if(s.successProperty) {
1920                     this.getSuccess = this.getJsonAccessor(s.successProperty);
1921                 }
1922                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
1923                 if (s.id) {
1924                         var g = this.getJsonAccessor(s.id);
1925                         this.getId = function(rec) {
1926                                 var r = g(rec);  
1927                                 return (r === undefined || r === "") ? null : r;
1928                         };
1929                 } else {
1930                         this.getId = function(){return null;};
1931                 }
1932             this.ef = [];
1933             for(var jj = 0; jj < fl; jj++){
1934                 f = fi[jj];
1935                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
1936                 this.ef[jj] = this.getJsonAccessor(map);
1937             }
1938         }
1939
1940         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
1941         if(s.totalProperty){
1942             var vt = parseInt(this.getTotal(o), 10);
1943             if(!isNaN(vt)){
1944                 totalRecords = vt;
1945             }
1946         }
1947         if(s.successProperty){
1948             var vs = this.getSuccess(o);
1949             if(vs === false || vs === 'false'){
1950                 success = false;
1951             }
1952         }
1953         var records = [];
1954         for(var i = 0; i < c; i++){
1955                 var n = root[i];
1956             var values = {};
1957             var id = this.getId(n);
1958             for(var j = 0; j < fl; j++){
1959                 f = fi[j];
1960             var v = this.ef[j](n);
1961             if (!f.convert) {
1962                 Roo.log('missing convert for ' + f.name);
1963                 Roo.log(f);
1964                 continue;
1965             }
1966             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
1967             }
1968             var record = new Record(values, id);
1969             record.json = n;
1970             records[i] = record;
1971         }
1972         return {
1973             raw : o,
1974             success : success,
1975             records : records,
1976             totalRecords : totalRecords
1977         };
1978     }
1979 });/*
1980  * Based on:
1981  * Ext JS Library 1.1.1
1982  * Copyright(c) 2006-2007, Ext JS, LLC.
1983  *
1984  * Originally Released Under LGPL - original licence link has changed is not relivant.
1985  *
1986  * Fork - LGPL
1987  * <script type="text/javascript">
1988  */
1989
1990 /**
1991  * @class Roo.data.XmlReader
1992  * @extends Roo.data.DataReader
1993  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
1994  * based on mappings in a provided Roo.data.Record constructor.<br><br>
1995  * <p>
1996  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
1997  * header in the HTTP response must be set to "text/xml".</em>
1998  * <p>
1999  * Example code:
2000  * <pre><code>
2001 var RecordDef = Roo.data.Record.create([
2002    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
2003    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
2004 ]);
2005 var myReader = new Roo.data.XmlReader({
2006    totalRecords: "results", // The element which contains the total dataset size (optional)
2007    record: "row",           // The repeated element which contains row information
2008    id: "id"                 // The element within the row that provides an ID for the record (optional)
2009 }, RecordDef);
2010 </code></pre>
2011  * <p>
2012  * This would consume an XML file like this:
2013  * <pre><code>
2014 &lt;?xml?>
2015 &lt;dataset>
2016  &lt;results>2&lt;/results>
2017  &lt;row>
2018    &lt;id>1&lt;/id>
2019    &lt;name>Bill&lt;/name>
2020    &lt;occupation>Gardener&lt;/occupation>
2021  &lt;/row>
2022  &lt;row>
2023    &lt;id>2&lt;/id>
2024    &lt;name>Ben&lt;/name>
2025    &lt;occupation>Horticulturalist&lt;/occupation>
2026  &lt;/row>
2027 &lt;/dataset>
2028 </code></pre>
2029  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
2030  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
2031  * paged from the remote server.
2032  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
2033  * @cfg {String} success The DomQuery path to the success attribute used by forms.
2034  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
2035  * a record identifier value.
2036  * @constructor
2037  * Create a new XmlReader
2038  * @param {Object} meta Metadata configuration options
2039  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
2040  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
2041  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
2042  */
2043 Roo.data.XmlReader = function(meta, recordType){
2044     meta = meta || {};
2045     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2046 };
2047 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
2048     /**
2049      * This method is only used by a DataProxy which has retrieved data from a remote server.
2050          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
2051          * to contain a method called 'responseXML' that returns an XML document object.
2052      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2053      * a cache of Roo.data.Records.
2054      */
2055     read : function(response){
2056         var doc = response.responseXML;
2057         if(!doc) {
2058             throw {message: "XmlReader.read: XML Document not available"};
2059         }
2060         return this.readRecords(doc);
2061     },
2062
2063     /**
2064      * Create a data block containing Roo.data.Records from an XML document.
2065          * @param {Object} doc A parsed XML document.
2066      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2067      * a cache of Roo.data.Records.
2068      */
2069     readRecords : function(doc){
2070         /**
2071          * After any data loads/reads, the raw XML Document is available for further custom processing.
2072          * @type XMLDocument
2073          */
2074         this.xmlData = doc;
2075         var root = doc.documentElement || doc;
2076         var q = Roo.DomQuery;
2077         var recordType = this.recordType, fields = recordType.prototype.fields;
2078         var sid = this.meta.id;
2079         var totalRecords = 0, success = true;
2080         if(this.meta.totalRecords){
2081             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
2082         }
2083         
2084         if(this.meta.success){
2085             var sv = q.selectValue(this.meta.success, root, true);
2086             success = sv !== false && sv !== 'false';
2087         }
2088         var records = [];
2089         var ns = q.select(this.meta.record, root);
2090         for(var i = 0, len = ns.length; i < len; i++) {
2091                 var n = ns[i];
2092                 var values = {};
2093                 var id = sid ? q.selectValue(sid, n) : undefined;
2094                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2095                     var f = fields.items[j];
2096                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
2097                     v = f.convert(v);
2098                     values[f.name] = v;
2099                 }
2100                 var record = new recordType(values, id);
2101                 record.node = n;
2102                 records[records.length] = record;
2103             }
2104
2105             return {
2106                 success : success,
2107                 records : records,
2108                 totalRecords : totalRecords || records.length
2109             };
2110     }
2111 });/*
2112  * Based on:
2113  * Ext JS Library 1.1.1
2114  * Copyright(c) 2006-2007, Ext JS, LLC.
2115  *
2116  * Originally Released Under LGPL - original licence link has changed is not relivant.
2117  *
2118  * Fork - LGPL
2119  * <script type="text/javascript">
2120  */
2121
2122 /**
2123  * @class Roo.data.ArrayReader
2124  * @extends Roo.data.DataReader
2125  * Data reader class to create an Array of Roo.data.Record objects from an Array.
2126  * Each element of that Array represents a row of data fields. The
2127  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
2128  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
2129  * <p>
2130  * Example code:.
2131  * <pre><code>
2132 var RecordDef = Roo.data.Record.create([
2133     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
2134     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
2135 ]);
2136 var myReader = new Roo.data.ArrayReader({
2137     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
2138 }, RecordDef);
2139 </code></pre>
2140  * <p>
2141  * This would consume an Array like this:
2142  * <pre><code>
2143 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
2144   </code></pre>
2145  
2146  * @constructor
2147  * Create a new JsonReader
2148  * @param {Object} meta Metadata configuration options.
2149  * @param {Object|Array} recordType Either an Array of field definition objects
2150  * 
2151  * @cfg {Array} fields Array of field definition objects
2152  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
2153  * as specified to {@link Roo.data.Record#create},
2154  * or an {@link Roo.data.Record} object
2155  *
2156  * 
2157  * created using {@link Roo.data.Record#create}.
2158  */
2159 Roo.data.ArrayReader = function(meta, recordType)
2160 {    
2161     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2162 };
2163
2164 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
2165     /**
2166      * Create a data block containing Roo.data.Records from an XML document.
2167      * @param {Object} o An Array of row objects which represents the dataset.
2168      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
2169      * a cache of Roo.data.Records.
2170      */
2171     readRecords : function(o)
2172     {
2173         var sid = this.meta ? this.meta.id : null;
2174         var recordType = this.recordType, fields = recordType.prototype.fields;
2175         var records = [];
2176         var root = o;
2177         for(var i = 0; i < root.length; i++){
2178                 var n = root[i];
2179             var values = {};
2180             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
2181             for(var j = 0, jlen = fields.length; j < jlen; j++){
2182                 var f = fields.items[j];
2183                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
2184                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
2185                 v = f.convert(v);
2186                 values[f.name] = v;
2187             }
2188             var record = new recordType(values, id);
2189             record.json = n;
2190             records[records.length] = record;
2191         }
2192         return {
2193             records : records,
2194             totalRecords : records.length
2195         };
2196     }
2197 });/*
2198  * Based on:
2199  * Ext JS Library 1.1.1
2200  * Copyright(c) 2006-2007, Ext JS, LLC.
2201  *
2202  * Originally Released Under LGPL - original licence link has changed is not relivant.
2203  *
2204  * Fork - LGPL
2205  * <script type="text/javascript">
2206  */
2207
2208
2209 /**
2210  * @class Roo.data.Tree
2211  * @extends Roo.util.Observable
2212  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
2213  * in the tree have most standard DOM functionality.
2214  * @constructor
2215  * @param {Node} root (optional) The root node
2216  */
2217 Roo.data.Tree = function(root){
2218    this.nodeHash = {};
2219    /**
2220     * The root node for this tree
2221     * @type Node
2222     */
2223    this.root = null;
2224    if(root){
2225        this.setRootNode(root);
2226    }
2227    this.addEvents({
2228        /**
2229         * @event append
2230         * Fires when a new child node is appended to a node in this tree.
2231         * @param {Tree} tree The owner tree
2232         * @param {Node} parent The parent node
2233         * @param {Node} node The newly appended node
2234         * @param {Number} index The index of the newly appended node
2235         */
2236        "append" : true,
2237        /**
2238         * @event remove
2239         * Fires when a child node is removed from a node in this tree.
2240         * @param {Tree} tree The owner tree
2241         * @param {Node} parent The parent node
2242         * @param {Node} node The child node removed
2243         */
2244        "remove" : true,
2245        /**
2246         * @event move
2247         * Fires when a node is moved to a new location in the tree
2248         * @param {Tree} tree The owner tree
2249         * @param {Node} node The node moved
2250         * @param {Node} oldParent The old parent of this node
2251         * @param {Node} newParent The new parent of this node
2252         * @param {Number} index The index it was moved to
2253         */
2254        "move" : true,
2255        /**
2256         * @event insert
2257         * Fires when a new child node is inserted in a node in this tree.
2258         * @param {Tree} tree The owner tree
2259         * @param {Node} parent The parent node
2260         * @param {Node} node The child node inserted
2261         * @param {Node} refNode The child node the node was inserted before
2262         */
2263        "insert" : true,
2264        /**
2265         * @event beforeappend
2266         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
2267         * @param {Tree} tree The owner tree
2268         * @param {Node} parent The parent node
2269         * @param {Node} node The child node to be appended
2270         */
2271        "beforeappend" : true,
2272        /**
2273         * @event beforeremove
2274         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
2275         * @param {Tree} tree The owner tree
2276         * @param {Node} parent The parent node
2277         * @param {Node} node The child node to be removed
2278         */
2279        "beforeremove" : true,
2280        /**
2281         * @event beforemove
2282         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
2283         * @param {Tree} tree The owner tree
2284         * @param {Node} node The node being moved
2285         * @param {Node} oldParent The parent of the node
2286         * @param {Node} newParent The new parent the node is moving to
2287         * @param {Number} index The index it is being moved to
2288         */
2289        "beforemove" : true,
2290        /**
2291         * @event beforeinsert
2292         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
2293         * @param {Tree} tree The owner tree
2294         * @param {Node} parent The parent node
2295         * @param {Node} node The child node to be inserted
2296         * @param {Node} refNode The child node the node is being inserted before
2297         */
2298        "beforeinsert" : true
2299    });
2300
2301     Roo.data.Tree.superclass.constructor.call(this);
2302 };
2303
2304 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
2305     pathSeparator: "/",
2306
2307     proxyNodeEvent : function(){
2308         return this.fireEvent.apply(this, arguments);
2309     },
2310
2311     /**
2312      * Returns the root node for this tree.
2313      * @return {Node}
2314      */
2315     getRootNode : function(){
2316         return this.root;
2317     },
2318
2319     /**
2320      * Sets the root node for this tree.
2321      * @param {Node} node
2322      * @return {Node}
2323      */
2324     setRootNode : function(node){
2325         this.root = node;
2326         node.ownerTree = this;
2327         node.isRoot = true;
2328         this.registerNode(node);
2329         return node;
2330     },
2331
2332     /**
2333      * Gets a node in this tree by its id.
2334      * @param {String} id
2335      * @return {Node}
2336      */
2337     getNodeById : function(id){
2338         return this.nodeHash[id];
2339     },
2340
2341     registerNode : function(node){
2342         this.nodeHash[node.id] = node;
2343     },
2344
2345     unregisterNode : function(node){
2346         delete this.nodeHash[node.id];
2347     },
2348
2349     toString : function(){
2350         return "[Tree"+(this.id?" "+this.id:"")+"]";
2351     }
2352 });
2353
2354 /**
2355  * @class Roo.data.Node
2356  * @extends Roo.util.Observable
2357  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
2358  * @cfg {String} id The id for this node. If one is not specified, one is generated.
2359  * @constructor
2360  * @param {Object} attributes The attributes/config for the node
2361  */
2362 Roo.data.Node = function(attributes){
2363     /**
2364      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
2365      * @type {Object}
2366      */
2367     this.attributes = attributes || {};
2368     this.leaf = this.attributes.leaf;
2369     /**
2370      * The node id. @type String
2371      */
2372     this.id = this.attributes.id;
2373     if(!this.id){
2374         this.id = Roo.id(null, "ynode-");
2375         this.attributes.id = this.id;
2376     }
2377      
2378     
2379     /**
2380      * All child nodes of this node. @type Array
2381      */
2382     this.childNodes = [];
2383     if(!this.childNodes.indexOf){ // indexOf is a must
2384         this.childNodes.indexOf = function(o){
2385             for(var i = 0, len = this.length; i < len; i++){
2386                 if(this[i] == o) {
2387                     return i;
2388                 }
2389             }
2390             return -1;
2391         };
2392     }
2393     /**
2394      * The parent node for this node. @type Node
2395      */
2396     this.parentNode = null;
2397     /**
2398      * The first direct child node of this node, or null if this node has no child nodes. @type Node
2399      */
2400     this.firstChild = null;
2401     /**
2402      * The last direct child node of this node, or null if this node has no child nodes. @type Node
2403      */
2404     this.lastChild = null;
2405     /**
2406      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
2407      */
2408     this.previousSibling = null;
2409     /**
2410      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
2411      */
2412     this.nextSibling = null;
2413
2414     this.addEvents({
2415        /**
2416         * @event append
2417         * Fires when a new child node is appended
2418         * @param {Tree} tree The owner tree
2419         * @param {Node} this This node
2420         * @param {Node} node The newly appended node
2421         * @param {Number} index The index of the newly appended node
2422         */
2423        "append" : true,
2424        /**
2425         * @event remove
2426         * Fires when a child node is removed
2427         * @param {Tree} tree The owner tree
2428         * @param {Node} this This node
2429         * @param {Node} node The removed node
2430         */
2431        "remove" : true,
2432        /**
2433         * @event move
2434         * Fires when this node is moved to a new location in the tree
2435         * @param {Tree} tree The owner tree
2436         * @param {Node} this This node
2437         * @param {Node} oldParent The old parent of this node
2438         * @param {Node} newParent The new parent of this node
2439         * @param {Number} index The index it was moved to
2440         */
2441        "move" : true,
2442        /**
2443         * @event insert
2444         * Fires when a new child node is inserted.
2445         * @param {Tree} tree The owner tree
2446         * @param {Node} this This node
2447         * @param {Node} node The child node inserted
2448         * @param {Node} refNode The child node the node was inserted before
2449         */
2450        "insert" : true,
2451        /**
2452         * @event beforeappend
2453         * Fires before a new child is appended, return false to cancel the append.
2454         * @param {Tree} tree The owner tree
2455         * @param {Node} this This node
2456         * @param {Node} node The child node to be appended
2457         */
2458        "beforeappend" : true,
2459        /**
2460         * @event beforeremove
2461         * Fires before a child is removed, return false to cancel the remove.
2462         * @param {Tree} tree The owner tree
2463         * @param {Node} this This node
2464         * @param {Node} node The child node to be removed
2465         */
2466        "beforeremove" : true,
2467        /**
2468         * @event beforemove
2469         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
2470         * @param {Tree} tree The owner tree
2471         * @param {Node} this This node
2472         * @param {Node} oldParent The parent of this node
2473         * @param {Node} newParent The new parent this node is moving to
2474         * @param {Number} index The index it is being moved to
2475         */
2476        "beforemove" : true,
2477        /**
2478         * @event beforeinsert
2479         * Fires before a new child is inserted, return false to cancel the insert.
2480         * @param {Tree} tree The owner tree
2481         * @param {Node} this This node
2482         * @param {Node} node The child node to be inserted
2483         * @param {Node} refNode The child node the node is being inserted before
2484         */
2485        "beforeinsert" : true
2486    });
2487     this.listeners = this.attributes.listeners;
2488     Roo.data.Node.superclass.constructor.call(this);
2489 };
2490
2491 Roo.extend(Roo.data.Node, Roo.util.Observable, {
2492     fireEvent : function(evtName){
2493         // first do standard event for this node
2494         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
2495             return false;
2496         }
2497         // then bubble it up to the tree if the event wasn't cancelled
2498         var ot = this.getOwnerTree();
2499         if(ot){
2500             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
2501                 return false;
2502             }
2503         }
2504         return true;
2505     },
2506
2507     /**
2508      * Returns true if this node is a leaf
2509      * @return {Boolean}
2510      */
2511     isLeaf : function(){
2512         return this.leaf === true;
2513     },
2514
2515     // private
2516     setFirstChild : function(node){
2517         this.firstChild = node;
2518     },
2519
2520     //private
2521     setLastChild : function(node){
2522         this.lastChild = node;
2523     },
2524
2525
2526     /**
2527      * Returns true if this node is the last child of its parent
2528      * @return {Boolean}
2529      */
2530     isLast : function(){
2531        return (!this.parentNode ? true : this.parentNode.lastChild == this);
2532     },
2533
2534     /**
2535      * Returns true if this node is the first child of its parent
2536      * @return {Boolean}
2537      */
2538     isFirst : function(){
2539        return (!this.parentNode ? true : this.parentNode.firstChild == this);
2540     },
2541
2542     hasChildNodes : function(){
2543         return !this.isLeaf() && this.childNodes.length > 0;
2544     },
2545
2546     /**
2547      * Insert node(s) as the last child node of this node.
2548      * @param {Node/Array} node The node or Array of nodes to append
2549      * @return {Node} The appended node if single append, or null if an array was passed
2550      */
2551     appendChild : function(node){
2552         var multi = false;
2553         if(node instanceof Array){
2554             multi = node;
2555         }else if(arguments.length > 1){
2556             multi = arguments;
2557         }
2558         
2559         // if passed an array or multiple args do them one by one
2560         if(multi){
2561             for(var i = 0, len = multi.length; i < len; i++) {
2562                 this.appendChild(multi[i]);
2563             }
2564         }else{
2565             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
2566                 return false;
2567             }
2568             var index = this.childNodes.length;
2569             var oldParent = node.parentNode;
2570             // it's a move, make sure we move it cleanly
2571             if(oldParent){
2572                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
2573                     return false;
2574                 }
2575                 oldParent.removeChild(node);
2576             }
2577             
2578             index = this.childNodes.length;
2579             if(index == 0){
2580                 this.setFirstChild(node);
2581             }
2582             this.childNodes.push(node);
2583             node.parentNode = this;
2584             var ps = this.childNodes[index-1];
2585             if(ps){
2586                 node.previousSibling = ps;
2587                 ps.nextSibling = node;
2588             }else{
2589                 node.previousSibling = null;
2590             }
2591             node.nextSibling = null;
2592             this.setLastChild(node);
2593             node.setOwnerTree(this.getOwnerTree());
2594             this.fireEvent("append", this.ownerTree, this, node, index);
2595             if(this.ownerTree) {
2596                 this.ownerTree.fireEvent("appendnode", this, node, index);
2597             }
2598             if(oldParent){
2599                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
2600             }
2601             return node;
2602         }
2603     },
2604
2605     /**
2606      * Removes a child node from this node.
2607      * @param {Node} node The node to remove
2608      * @return {Node} The removed node
2609      */
2610     removeChild : function(node){
2611         var index = this.childNodes.indexOf(node);
2612         if(index == -1){
2613             return false;
2614         }
2615         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
2616             return false;
2617         }
2618
2619         // remove it from childNodes collection
2620         this.childNodes.splice(index, 1);
2621
2622         // update siblings
2623         if(node.previousSibling){
2624             node.previousSibling.nextSibling = node.nextSibling;
2625         }
2626         if(node.nextSibling){
2627             node.nextSibling.previousSibling = node.previousSibling;
2628         }
2629
2630         // update child refs
2631         if(this.firstChild == node){
2632             this.setFirstChild(node.nextSibling);
2633         }
2634         if(this.lastChild == node){
2635             this.setLastChild(node.previousSibling);
2636         }
2637
2638         node.setOwnerTree(null);
2639         // clear any references from the node
2640         node.parentNode = null;
2641         node.previousSibling = null;
2642         node.nextSibling = null;
2643         this.fireEvent("remove", this.ownerTree, this, node);
2644         return node;
2645     },
2646
2647     /**
2648      * Inserts the first node before the second node in this nodes childNodes collection.
2649      * @param {Node} node The node to insert
2650      * @param {Node} refNode The node to insert before (if null the node is appended)
2651      * @return {Node} The inserted node
2652      */
2653     insertBefore : function(node, refNode){
2654         if(!refNode){ // like standard Dom, refNode can be null for append
2655             return this.appendChild(node);
2656         }
2657         // nothing to do
2658         if(node == refNode){
2659             return false;
2660         }
2661
2662         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
2663             return false;
2664         }
2665         var index = this.childNodes.indexOf(refNode);
2666         var oldParent = node.parentNode;
2667         var refIndex = index;
2668
2669         // when moving internally, indexes will change after remove
2670         if(oldParent == this && this.childNodes.indexOf(node) < index){
2671             refIndex--;
2672         }
2673
2674         // it's a move, make sure we move it cleanly
2675         if(oldParent){
2676             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
2677                 return false;
2678             }
2679             oldParent.removeChild(node);
2680         }
2681         if(refIndex == 0){
2682             this.setFirstChild(node);
2683         }
2684         this.childNodes.splice(refIndex, 0, node);
2685         node.parentNode = this;
2686         var ps = this.childNodes[refIndex-1];
2687         if(ps){
2688             node.previousSibling = ps;
2689             ps.nextSibling = node;
2690         }else{
2691             node.previousSibling = null;
2692         }
2693         node.nextSibling = refNode;
2694         refNode.previousSibling = node;
2695         node.setOwnerTree(this.getOwnerTree());
2696         this.fireEvent("insert", this.ownerTree, this, node, refNode);
2697         if(oldParent){
2698             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
2699         }
2700         return node;
2701     },
2702
2703     /**
2704      * Returns the child node at the specified index.
2705      * @param {Number} index
2706      * @return {Node}
2707      */
2708     item : function(index){
2709         return this.childNodes[index];
2710     },
2711
2712     /**
2713      * Replaces one child node in this node with another.
2714      * @param {Node} newChild The replacement node
2715      * @param {Node} oldChild The node to replace
2716      * @return {Node} The replaced node
2717      */
2718     replaceChild : function(newChild, oldChild){
2719         this.insertBefore(newChild, oldChild);
2720         this.removeChild(oldChild);
2721         return oldChild;
2722     },
2723
2724     /**
2725      * Returns the index of a child node
2726      * @param {Node} node
2727      * @return {Number} The index of the node or -1 if it was not found
2728      */
2729     indexOf : function(child){
2730         return this.childNodes.indexOf(child);
2731     },
2732
2733     /**
2734      * Returns the tree this node is in.
2735      * @return {Tree}
2736      */
2737     getOwnerTree : function(){
2738         // if it doesn't have one, look for one
2739         if(!this.ownerTree){
2740             var p = this;
2741             while(p){
2742                 if(p.ownerTree){
2743                     this.ownerTree = p.ownerTree;
2744                     break;
2745                 }
2746                 p = p.parentNode;
2747             }
2748         }
2749         return this.ownerTree;
2750     },
2751
2752     /**
2753      * Returns depth of this node (the root node has a depth of 0)
2754      * @return {Number}
2755      */
2756     getDepth : function(){
2757         var depth = 0;
2758         var p = this;
2759         while(p.parentNode){
2760             ++depth;
2761             p = p.parentNode;
2762         }
2763         return depth;
2764     },
2765
2766     // private
2767     setOwnerTree : function(tree){
2768         // if it's move, we need to update everyone
2769         if(tree != this.ownerTree){
2770             if(this.ownerTree){
2771                 this.ownerTree.unregisterNode(this);
2772             }
2773             this.ownerTree = tree;
2774             var cs = this.childNodes;
2775             for(var i = 0, len = cs.length; i < len; i++) {
2776                 cs[i].setOwnerTree(tree);
2777             }
2778             if(tree){
2779                 tree.registerNode(this);
2780             }
2781         }
2782     },
2783
2784     /**
2785      * Returns the path for this node. The path can be used to expand or select this node programmatically.
2786      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
2787      * @return {String} The path
2788      */
2789     getPath : function(attr){
2790         attr = attr || "id";
2791         var p = this.parentNode;
2792         var b = [this.attributes[attr]];
2793         while(p){
2794             b.unshift(p.attributes[attr]);
2795             p = p.parentNode;
2796         }
2797         var sep = this.getOwnerTree().pathSeparator;
2798         return sep + b.join(sep);
2799     },
2800
2801     /**
2802      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2803      * function call will be the scope provided or the current node. The arguments to the function
2804      * will be the args provided or the current node. If the function returns false at any point,
2805      * the bubble is stopped.
2806      * @param {Function} fn The function to call
2807      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2808      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2809      */
2810     bubble : function(fn, scope, args){
2811         var p = this;
2812         while(p){
2813             if(fn.call(scope || p, args || p) === false){
2814                 break;
2815             }
2816             p = p.parentNode;
2817         }
2818     },
2819
2820     /**
2821      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2822      * function call will be the scope provided or the current node. The arguments to the function
2823      * will be the args provided or the current node. If the function returns false at any point,
2824      * the cascade is stopped on that branch.
2825      * @param {Function} fn The function to call
2826      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2827      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2828      */
2829     cascade : function(fn, scope, args){
2830         if(fn.call(scope || this, args || this) !== false){
2831             var cs = this.childNodes;
2832             for(var i = 0, len = cs.length; i < len; i++) {
2833                 cs[i].cascade(fn, scope, args);
2834             }
2835         }
2836     },
2837
2838     /**
2839      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
2840      * function call will be the scope provided or the current node. The arguments to the function
2841      * will be the args provided or the current node. If the function returns false at any point,
2842      * the iteration stops.
2843      * @param {Function} fn The function to call
2844      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2845      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2846      */
2847     eachChild : function(fn, scope, args){
2848         var cs = this.childNodes;
2849         for(var i = 0, len = cs.length; i < len; i++) {
2850                 if(fn.call(scope || this, args || cs[i]) === false){
2851                     break;
2852                 }
2853         }
2854     },
2855
2856     /**
2857      * Finds the first child that has the attribute with the specified value.
2858      * @param {String} attribute The attribute name
2859      * @param {Mixed} value The value to search for
2860      * @return {Node} The found child or null if none was found
2861      */
2862     findChild : function(attribute, value){
2863         var cs = this.childNodes;
2864         for(var i = 0, len = cs.length; i < len; i++) {
2865                 if(cs[i].attributes[attribute] == value){
2866                     return cs[i];
2867                 }
2868         }
2869         return null;
2870     },
2871
2872     /**
2873      * Finds the first child by a custom function. The child matches if the function passed
2874      * returns true.
2875      * @param {Function} fn
2876      * @param {Object} scope (optional)
2877      * @return {Node} The found child or null if none was found
2878      */
2879     findChildBy : function(fn, scope){
2880         var cs = this.childNodes;
2881         for(var i = 0, len = cs.length; i < len; i++) {
2882                 if(fn.call(scope||cs[i], cs[i]) === true){
2883                     return cs[i];
2884                 }
2885         }
2886         return null;
2887     },
2888
2889     /**
2890      * Sorts this nodes children using the supplied sort function
2891      * @param {Function} fn
2892      * @param {Object} scope (optional)
2893      */
2894     sort : function(fn, scope){
2895         var cs = this.childNodes;
2896         var len = cs.length;
2897         if(len > 0){
2898             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
2899             cs.sort(sortFn);
2900             for(var i = 0; i < len; i++){
2901                 var n = cs[i];
2902                 n.previousSibling = cs[i-1];
2903                 n.nextSibling = cs[i+1];
2904                 if(i == 0){
2905                     this.setFirstChild(n);
2906                 }
2907                 if(i == len-1){
2908                     this.setLastChild(n);
2909                 }
2910             }
2911         }
2912     },
2913
2914     /**
2915      * Returns true if this node is an ancestor (at any point) of the passed node.
2916      * @param {Node} node
2917      * @return {Boolean}
2918      */
2919     contains : function(node){
2920         return node.isAncestor(this);
2921     },
2922
2923     /**
2924      * Returns true if the passed node is an ancestor (at any point) of this node.
2925      * @param {Node} node
2926      * @return {Boolean}
2927      */
2928     isAncestor : function(node){
2929         var p = this.parentNode;
2930         while(p){
2931             if(p == node){
2932                 return true;
2933             }
2934             p = p.parentNode;
2935         }
2936         return false;
2937     },
2938
2939     toString : function(){
2940         return "[Node"+(this.id?" "+this.id:"")+"]";
2941     }
2942 });/*
2943  * Based on:
2944  * Ext JS Library 1.1.1
2945  * Copyright(c) 2006-2007, Ext JS, LLC.
2946  *
2947  * Originally Released Under LGPL - original licence link has changed is not relivant.
2948  *
2949  * Fork - LGPL
2950  * <script type="text/javascript">
2951  */
2952  (function(){ 
2953 /**
2954  * @class Roo.Layer
2955  * @extends Roo.Element
2956  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
2957  * automatic maintaining of shadow/shim positions.
2958  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
2959  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
2960  * you can pass a string with a CSS class name. False turns off the shadow.
2961  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
2962  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
2963  * @cfg {String} cls CSS class to add to the element
2964  * @cfg {Number} zindex Starting z-index (defaults to 11000)
2965  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
2966  * @constructor
2967  * @param {Object} config An object with config options.
2968  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
2969  */
2970
2971 Roo.Layer = function(config, existingEl){
2972     config = config || {};
2973     var dh = Roo.DomHelper;
2974     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
2975     if(existingEl){
2976         this.dom = Roo.getDom(existingEl);
2977     }
2978     if(!this.dom){
2979         var o = config.dh || {tag: "div", cls: "x-layer"};
2980         this.dom = dh.append(pel, o);
2981     }
2982     if(config.cls){
2983         this.addClass(config.cls);
2984     }
2985     this.constrain = config.constrain !== false;
2986     this.visibilityMode = Roo.Element.VISIBILITY;
2987     if(config.id){
2988         this.id = this.dom.id = config.id;
2989     }else{
2990         this.id = Roo.id(this.dom);
2991     }
2992     this.zindex = config.zindex || this.getZIndex();
2993     this.position("absolute", this.zindex);
2994     if(config.shadow){
2995         this.shadowOffset = config.shadowOffset || 4;
2996         this.shadow = new Roo.Shadow({
2997             offset : this.shadowOffset,
2998             mode : config.shadow
2999         });
3000     }else{
3001         this.shadowOffset = 0;
3002     }
3003     this.useShim = config.shim !== false && Roo.useShims;
3004     this.useDisplay = config.useDisplay;
3005     this.hide();
3006 };
3007
3008 var supr = Roo.Element.prototype;
3009
3010 // shims are shared among layer to keep from having 100 iframes
3011 var shims = [];
3012
3013 Roo.extend(Roo.Layer, Roo.Element, {
3014
3015     getZIndex : function(){
3016         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
3017     },
3018
3019     getShim : function(){
3020         if(!this.useShim){
3021             return null;
3022         }
3023         if(this.shim){
3024             return this.shim;
3025         }
3026         var shim = shims.shift();
3027         if(!shim){
3028             shim = this.createShim();
3029             shim.enableDisplayMode('block');
3030             shim.dom.style.display = 'none';
3031             shim.dom.style.visibility = 'visible';
3032         }
3033         var pn = this.dom.parentNode;
3034         if(shim.dom.parentNode != pn){
3035             pn.insertBefore(shim.dom, this.dom);
3036         }
3037         shim.setStyle('z-index', this.getZIndex()-2);
3038         this.shim = shim;
3039         return shim;
3040     },
3041
3042     hideShim : function(){
3043         if(this.shim){
3044             this.shim.setDisplayed(false);
3045             shims.push(this.shim);
3046             delete this.shim;
3047         }
3048     },
3049
3050     disableShadow : function(){
3051         if(this.shadow){
3052             this.shadowDisabled = true;
3053             this.shadow.hide();
3054             this.lastShadowOffset = this.shadowOffset;
3055             this.shadowOffset = 0;
3056         }
3057     },
3058
3059     enableShadow : function(show){
3060         if(this.shadow){
3061             this.shadowDisabled = false;
3062             this.shadowOffset = this.lastShadowOffset;
3063             delete this.lastShadowOffset;
3064             if(show){
3065                 this.sync(true);
3066             }
3067         }
3068     },
3069
3070     // private
3071     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
3072     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
3073     sync : function(doShow){
3074         var sw = this.shadow;
3075         if(!this.updating && this.isVisible() && (sw || this.useShim)){
3076             var sh = this.getShim();
3077
3078             var w = this.getWidth(),
3079                 h = this.getHeight();
3080
3081             var l = this.getLeft(true),
3082                 t = this.getTop(true);
3083
3084             if(sw && !this.shadowDisabled){
3085                 if(doShow && !sw.isVisible()){
3086                     sw.show(this);
3087                 }else{
3088                     sw.realign(l, t, w, h);
3089                 }
3090                 if(sh){
3091                     if(doShow){
3092                        sh.show();
3093                     }
3094                     // fit the shim behind the shadow, so it is shimmed too
3095                     var a = sw.adjusts, s = sh.dom.style;
3096                     s.left = (Math.min(l, l+a.l))+"px";
3097                     s.top = (Math.min(t, t+a.t))+"px";
3098                     s.width = (w+a.w)+"px";
3099                     s.height = (h+a.h)+"px";
3100                 }
3101             }else if(sh){
3102                 if(doShow){
3103                    sh.show();
3104                 }
3105                 sh.setSize(w, h);
3106                 sh.setLeftTop(l, t);
3107             }
3108             
3109         }
3110     },
3111
3112     // private
3113     destroy : function(){
3114         this.hideShim();
3115         if(this.shadow){
3116             this.shadow.hide();
3117         }
3118         this.removeAllListeners();
3119         var pn = this.dom.parentNode;
3120         if(pn){
3121             pn.removeChild(this.dom);
3122         }
3123         Roo.Element.uncache(this.id);
3124     },
3125
3126     remove : function(){
3127         this.destroy();
3128     },
3129
3130     // private
3131     beginUpdate : function(){
3132         this.updating = true;
3133     },
3134
3135     // private
3136     endUpdate : function(){
3137         this.updating = false;
3138         this.sync(true);
3139     },
3140
3141     // private
3142     hideUnders : function(negOffset){
3143         if(this.shadow){
3144             this.shadow.hide();
3145         }
3146         this.hideShim();
3147     },
3148
3149     // private
3150     constrainXY : function(){
3151         if(this.constrain){
3152             var vw = Roo.lib.Dom.getViewWidth(),
3153                 vh = Roo.lib.Dom.getViewHeight();
3154             var s = Roo.get(document).getScroll();
3155
3156             var xy = this.getXY();
3157             var x = xy[0], y = xy[1];   
3158             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
3159             // only move it if it needs it
3160             var moved = false;
3161             // first validate right/bottom
3162             if((x + w) > vw+s.left){
3163                 x = vw - w - this.shadowOffset;
3164                 moved = true;
3165             }
3166             if((y + h) > vh+s.top){
3167                 y = vh - h - this.shadowOffset;
3168                 moved = true;
3169             }
3170             // then make sure top/left isn't negative
3171             if(x < s.left){
3172                 x = s.left;
3173                 moved = true;
3174             }
3175             if(y < s.top){
3176                 y = s.top;
3177                 moved = true;
3178             }
3179             if(moved){
3180                 if(this.avoidY){
3181                     var ay = this.avoidY;
3182                     if(y <= ay && (y+h) >= ay){
3183                         y = ay-h-5;   
3184                     }
3185                 }
3186                 xy = [x, y];
3187                 this.storeXY(xy);
3188                 supr.setXY.call(this, xy);
3189                 this.sync();
3190             }
3191         }
3192     },
3193
3194     isVisible : function(){
3195         return this.visible;    
3196     },
3197
3198     // private
3199     showAction : function(){
3200         this.visible = true; // track visibility to prevent getStyle calls
3201         if(this.useDisplay === true){
3202             this.setDisplayed("");
3203         }else if(this.lastXY){
3204             supr.setXY.call(this, this.lastXY);
3205         }else if(this.lastLT){
3206             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
3207         }
3208     },
3209
3210     // private
3211     hideAction : function(){
3212         this.visible = false;
3213         if(this.useDisplay === true){
3214             this.setDisplayed(false);
3215         }else{
3216             this.setLeftTop(-10000,-10000);
3217         }
3218     },
3219
3220     // overridden Element method
3221     setVisible : function(v, a, d, c, e){
3222         if(v){
3223             this.showAction();
3224         }
3225         if(a && v){
3226             var cb = function(){
3227                 this.sync(true);
3228                 if(c){
3229                     c();
3230                 }
3231             }.createDelegate(this);
3232             supr.setVisible.call(this, true, true, d, cb, e);
3233         }else{
3234             if(!v){
3235                 this.hideUnders(true);
3236             }
3237             var cb = c;
3238             if(a){
3239                 cb = function(){
3240                     this.hideAction();
3241                     if(c){
3242                         c();
3243                     }
3244                 }.createDelegate(this);
3245             }
3246             supr.setVisible.call(this, v, a, d, cb, e);
3247             if(v){
3248                 this.sync(true);
3249             }else if(!a){
3250                 this.hideAction();
3251             }
3252         }
3253     },
3254
3255     storeXY : function(xy){
3256         delete this.lastLT;
3257         this.lastXY = xy;
3258     },
3259
3260     storeLeftTop : function(left, top){
3261         delete this.lastXY;
3262         this.lastLT = [left, top];
3263     },
3264
3265     // private
3266     beforeFx : function(){
3267         this.beforeAction();
3268         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
3269     },
3270
3271     // private
3272     afterFx : function(){
3273         Roo.Layer.superclass.afterFx.apply(this, arguments);
3274         this.sync(this.isVisible());
3275     },
3276
3277     // private
3278     beforeAction : function(){
3279         if(!this.updating && this.shadow){
3280             this.shadow.hide();
3281         }
3282     },
3283
3284     // overridden Element method
3285     setLeft : function(left){
3286         this.storeLeftTop(left, this.getTop(true));
3287         supr.setLeft.apply(this, arguments);
3288         this.sync();
3289     },
3290
3291     setTop : function(top){
3292         this.storeLeftTop(this.getLeft(true), top);
3293         supr.setTop.apply(this, arguments);
3294         this.sync();
3295     },
3296
3297     setLeftTop : function(left, top){
3298         this.storeLeftTop(left, top);
3299         supr.setLeftTop.apply(this, arguments);
3300         this.sync();
3301     },
3302
3303     setXY : function(xy, a, d, c, e){
3304         this.fixDisplay();
3305         this.beforeAction();
3306         this.storeXY(xy);
3307         var cb = this.createCB(c);
3308         supr.setXY.call(this, xy, a, d, cb, e);
3309         if(!a){
3310             cb();
3311         }
3312     },
3313
3314     // private
3315     createCB : function(c){
3316         var el = this;
3317         return function(){
3318             el.constrainXY();
3319             el.sync(true);
3320             if(c){
3321                 c();
3322             }
3323         };
3324     },
3325
3326     // overridden Element method
3327     setX : function(x, a, d, c, e){
3328         this.setXY([x, this.getY()], a, d, c, e);
3329     },
3330
3331     // overridden Element method
3332     setY : function(y, a, d, c, e){
3333         this.setXY([this.getX(), y], a, d, c, e);
3334     },
3335
3336     // overridden Element method
3337     setSize : function(w, h, a, d, c, e){
3338         this.beforeAction();
3339         var cb = this.createCB(c);
3340         supr.setSize.call(this, w, h, a, d, cb, e);
3341         if(!a){
3342             cb();
3343         }
3344     },
3345
3346     // overridden Element method
3347     setWidth : function(w, a, d, c, e){
3348         this.beforeAction();
3349         var cb = this.createCB(c);
3350         supr.setWidth.call(this, w, a, d, cb, e);
3351         if(!a){
3352             cb();
3353         }
3354     },
3355
3356     // overridden Element method
3357     setHeight : function(h, a, d, c, e){
3358         this.beforeAction();
3359         var cb = this.createCB(c);
3360         supr.setHeight.call(this, h, a, d, cb, e);
3361         if(!a){
3362             cb();
3363         }
3364     },
3365
3366     // overridden Element method
3367     setBounds : function(x, y, w, h, a, d, c, e){
3368         this.beforeAction();
3369         var cb = this.createCB(c);
3370         if(!a){
3371             this.storeXY([x, y]);
3372             supr.setXY.call(this, [x, y]);
3373             supr.setSize.call(this, w, h, a, d, cb, e);
3374             cb();
3375         }else{
3376             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
3377         }
3378         return this;
3379     },
3380     
3381     /**
3382      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
3383      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
3384      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
3385      * @param {Number} zindex The new z-index to set
3386      * @return {this} The Layer
3387      */
3388     setZIndex : function(zindex){
3389         this.zindex = zindex;
3390         this.setStyle("z-index", zindex + 2);
3391         if(this.shadow){
3392             this.shadow.setZIndex(zindex + 1);
3393         }
3394         if(this.shim){
3395             this.shim.setStyle("z-index", zindex);
3396         }
3397     }
3398 });
3399 })();/*
3400  * Based on:
3401  * Ext JS Library 1.1.1
3402  * Copyright(c) 2006-2007, Ext JS, LLC.
3403  *
3404  * Originally Released Under LGPL - original licence link has changed is not relivant.
3405  *
3406  * Fork - LGPL
3407  * <script type="text/javascript">
3408  */
3409
3410
3411 /**
3412  * @class Roo.Shadow
3413  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
3414  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
3415  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
3416  * @constructor
3417  * Create a new Shadow
3418  * @param {Object} config The config object
3419  */
3420 Roo.Shadow = function(config){
3421     Roo.apply(this, config);
3422     if(typeof this.mode != "string"){
3423         this.mode = this.defaultMode;
3424     }
3425     var o = this.offset, a = {h: 0};
3426     var rad = Math.floor(this.offset/2);
3427     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
3428         case "drop":
3429             a.w = 0;
3430             a.l = a.t = o;
3431             a.t -= 1;
3432             if(Roo.isIE){
3433                 a.l -= this.offset + rad;
3434                 a.t -= this.offset + rad;
3435                 a.w -= rad;
3436                 a.h -= rad;
3437                 a.t += 1;
3438             }
3439         break;
3440         case "sides":
3441             a.w = (o*2);
3442             a.l = -o;
3443             a.t = o-1;
3444             if(Roo.isIE){
3445                 a.l -= (this.offset - rad);
3446                 a.t -= this.offset + rad;
3447                 a.l += 1;
3448                 a.w -= (this.offset - rad)*2;
3449                 a.w -= rad + 1;
3450                 a.h -= 1;
3451             }
3452         break;
3453         case "frame":
3454             a.w = a.h = (o*2);
3455             a.l = a.t = -o;
3456             a.t += 1;
3457             a.h -= 2;
3458             if(Roo.isIE){
3459                 a.l -= (this.offset - rad);
3460                 a.t -= (this.offset - rad);
3461                 a.l += 1;
3462                 a.w -= (this.offset + rad + 1);
3463                 a.h -= (this.offset + rad);
3464                 a.h += 1;
3465             }
3466         break;
3467     };
3468
3469     this.adjusts = a;
3470 };
3471
3472 Roo.Shadow.prototype = {
3473     /**
3474      * @cfg {String} mode
3475      * The shadow display mode.  Supports the following options:<br />
3476      * sides: Shadow displays on both sides and bottom only<br />
3477      * frame: Shadow displays equally on all four sides<br />
3478      * drop: Traditional bottom-right drop shadow (default)
3479      */
3480     /**
3481      * @cfg {String} offset
3482      * The number of pixels to offset the shadow from the element (defaults to 4)
3483      */
3484     offset: 4,
3485
3486     // private
3487     defaultMode: "drop",
3488
3489     /**
3490      * Displays the shadow under the target element
3491      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
3492      */
3493     show : function(target){
3494         target = Roo.get(target);
3495         if(!this.el){
3496             this.el = Roo.Shadow.Pool.pull();
3497             if(this.el.dom.nextSibling != target.dom){
3498                 this.el.insertBefore(target);
3499             }
3500         }
3501         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
3502         if(Roo.isIE){
3503             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
3504         }
3505         this.realign(
3506             target.getLeft(true),
3507             target.getTop(true),
3508             target.getWidth(),
3509             target.getHeight()
3510         );
3511         this.el.dom.style.display = "block";
3512     },
3513
3514     /**
3515      * Returns true if the shadow is visible, else false
3516      */
3517     isVisible : function(){
3518         return this.el ? true : false;  
3519     },
3520
3521     /**
3522      * Direct alignment when values are already available. Show must be called at least once before
3523      * calling this method to ensure it is initialized.
3524      * @param {Number} left The target element left position
3525      * @param {Number} top The target element top position
3526      * @param {Number} width The target element width
3527      * @param {Number} height The target element height
3528      */
3529     realign : function(l, t, w, h){
3530         if(!this.el){
3531             return;
3532         }
3533         var a = this.adjusts, d = this.el.dom, s = d.style;
3534         var iea = 0;
3535         s.left = (l+a.l)+"px";
3536         s.top = (t+a.t)+"px";
3537         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
3538  
3539         if(s.width != sws || s.height != shs){
3540             s.width = sws;
3541             s.height = shs;
3542             if(!Roo.isIE){
3543                 var cn = d.childNodes;
3544                 var sww = Math.max(0, (sw-12))+"px";
3545                 cn[0].childNodes[1].style.width = sww;
3546                 cn[1].childNodes[1].style.width = sww;
3547                 cn[2].childNodes[1].style.width = sww;
3548                 cn[1].style.height = Math.max(0, (sh-12))+"px";
3549             }
3550         }
3551     },
3552
3553     /**
3554      * Hides this shadow
3555      */
3556     hide : function(){
3557         if(this.el){
3558             this.el.dom.style.display = "none";
3559             Roo.Shadow.Pool.push(this.el);
3560             delete this.el;
3561         }
3562     },
3563
3564     /**
3565      * Adjust the z-index of this shadow
3566      * @param {Number} zindex The new z-index
3567      */
3568     setZIndex : function(z){
3569         this.zIndex = z;
3570         if(this.el){
3571             this.el.setStyle("z-index", z);
3572         }
3573     }
3574 };
3575
3576 // Private utility class that manages the internal Shadow cache
3577 Roo.Shadow.Pool = function(){
3578     var p = [];
3579     var markup = Roo.isIE ?
3580                  '<div class="x-ie-shadow"></div>' :
3581                  '<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>';
3582     return {
3583         pull : function(){
3584             var sh = p.shift();
3585             if(!sh){
3586                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
3587                 sh.autoBoxAdjust = false;
3588             }
3589             return sh;
3590         },
3591
3592         push : function(sh){
3593             p.push(sh);
3594         }
3595     };
3596 }();/*
3597  * Based on:
3598  * Ext JS Library 1.1.1
3599  * Copyright(c) 2006-2007, Ext JS, LLC.
3600  *
3601  * Originally Released Under LGPL - original licence link has changed is not relivant.
3602  *
3603  * Fork - LGPL
3604  * <script type="text/javascript">
3605  */
3606
3607
3608 /**
3609  * @class Roo.SplitBar
3610  * @extends Roo.util.Observable
3611  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
3612  * <br><br>
3613  * Usage:
3614  * <pre><code>
3615 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
3616                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
3617 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
3618 split.minSize = 100;
3619 split.maxSize = 600;
3620 split.animate = true;
3621 split.on('moved', splitterMoved);
3622 </code></pre>
3623  * @constructor
3624  * Create a new SplitBar
3625  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
3626  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
3627  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3628  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
3629                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
3630                         position of the SplitBar).
3631  */
3632 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
3633     
3634     /** @private */
3635     this.el = Roo.get(dragElement, true);
3636     this.el.dom.unselectable = "on";
3637     /** @private */
3638     this.resizingEl = Roo.get(resizingElement, true);
3639
3640     /**
3641      * @private
3642      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3643      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
3644      * @type Number
3645      */
3646     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
3647     
3648     /**
3649      * The minimum size of the resizing element. (Defaults to 0)
3650      * @type Number
3651      */
3652     this.minSize = 0;
3653     
3654     /**
3655      * The maximum size of the resizing element. (Defaults to 2000)
3656      * @type Number
3657      */
3658     this.maxSize = 2000;
3659     
3660     /**
3661      * Whether to animate the transition to the new size
3662      * @type Boolean
3663      */
3664     this.animate = false;
3665     
3666     /**
3667      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
3668      * @type Boolean
3669      */
3670     this.useShim = false;
3671     
3672     /** @private */
3673     this.shim = null;
3674     
3675     if(!existingProxy){
3676         /** @private */
3677         this.proxy = Roo.SplitBar.createProxy(this.orientation);
3678     }else{
3679         this.proxy = Roo.get(existingProxy).dom;
3680     }
3681     /** @private */
3682     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
3683     
3684     /** @private */
3685     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
3686     
3687     /** @private */
3688     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
3689     
3690     /** @private */
3691     this.dragSpecs = {};
3692     
3693     /**
3694      * @private The adapter to use to positon and resize elements
3695      */
3696     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
3697     this.adapter.init(this);
3698     
3699     if(this.orientation == Roo.SplitBar.HORIZONTAL){
3700         /** @private */
3701         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
3702         this.el.addClass("x-splitbar-h");
3703     }else{
3704         /** @private */
3705         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
3706         this.el.addClass("x-splitbar-v");
3707     }
3708     
3709     this.addEvents({
3710         /**
3711          * @event resize
3712          * Fires when the splitter is moved (alias for {@link #event-moved})
3713          * @param {Roo.SplitBar} this
3714          * @param {Number} newSize the new width or height
3715          */
3716         "resize" : true,
3717         /**
3718          * @event moved
3719          * Fires when the splitter is moved
3720          * @param {Roo.SplitBar} this
3721          * @param {Number} newSize the new width or height
3722          */
3723         "moved" : true,
3724         /**
3725          * @event beforeresize
3726          * Fires before the splitter is dragged
3727          * @param {Roo.SplitBar} this
3728          */
3729         "beforeresize" : true,
3730
3731         "beforeapply" : true
3732     });
3733
3734     Roo.util.Observable.call(this);
3735 };
3736
3737 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
3738     onStartProxyDrag : function(x, y){
3739         this.fireEvent("beforeresize", this);
3740         if(!this.overlay){
3741             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
3742             o.unselectable();
3743             o.enableDisplayMode("block");
3744             // all splitbars share the same overlay
3745             Roo.SplitBar.prototype.overlay = o;
3746         }
3747         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
3748         this.overlay.show();
3749         Roo.get(this.proxy).setDisplayed("block");
3750         var size = this.adapter.getElementSize(this);
3751         this.activeMinSize = this.getMinimumSize();;
3752         this.activeMaxSize = this.getMaximumSize();;
3753         var c1 = size - this.activeMinSize;
3754         var c2 = Math.max(this.activeMaxSize - size, 0);
3755         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3756             this.dd.resetConstraints();
3757             this.dd.setXConstraint(
3758                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
3759                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
3760             );
3761             this.dd.setYConstraint(0, 0);
3762         }else{
3763             this.dd.resetConstraints();
3764             this.dd.setXConstraint(0, 0);
3765             this.dd.setYConstraint(
3766                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
3767                 this.placement == Roo.SplitBar.TOP ? c2 : c1
3768             );
3769          }
3770         this.dragSpecs.startSize = size;
3771         this.dragSpecs.startPoint = [x, y];
3772         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
3773     },
3774     
3775     /** 
3776      * @private Called after the drag operation by the DDProxy
3777      */
3778     onEndProxyDrag : function(e){
3779         Roo.get(this.proxy).setDisplayed(false);
3780         var endPoint = Roo.lib.Event.getXY(e);
3781         if(this.overlay){
3782             this.overlay.hide();
3783         }
3784         var newSize;
3785         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3786             newSize = this.dragSpecs.startSize + 
3787                 (this.placement == Roo.SplitBar.LEFT ?
3788                     endPoint[0] - this.dragSpecs.startPoint[0] :
3789                     this.dragSpecs.startPoint[0] - endPoint[0]
3790                 );
3791         }else{
3792             newSize = this.dragSpecs.startSize + 
3793                 (this.placement == Roo.SplitBar.TOP ?
3794                     endPoint[1] - this.dragSpecs.startPoint[1] :
3795                     this.dragSpecs.startPoint[1] - endPoint[1]
3796                 );
3797         }
3798         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
3799         if(newSize != this.dragSpecs.startSize){
3800             if(this.fireEvent('beforeapply', this, newSize) !== false){
3801                 this.adapter.setElementSize(this, newSize);
3802                 this.fireEvent("moved", this, newSize);
3803                 this.fireEvent("resize", this, newSize);
3804             }
3805         }
3806     },
3807     
3808     /**
3809      * Get the adapter this SplitBar uses
3810      * @return The adapter object
3811      */
3812     getAdapter : function(){
3813         return this.adapter;
3814     },
3815     
3816     /**
3817      * Set the adapter this SplitBar uses
3818      * @param {Object} adapter A SplitBar adapter object
3819      */
3820     setAdapter : function(adapter){
3821         this.adapter = adapter;
3822         this.adapter.init(this);
3823     },
3824     
3825     /**
3826      * Gets the minimum size for the resizing element
3827      * @return {Number} The minimum size
3828      */
3829     getMinimumSize : function(){
3830         return this.minSize;
3831     },
3832     
3833     /**
3834      * Sets the minimum size for the resizing element
3835      * @param {Number} minSize The minimum size
3836      */
3837     setMinimumSize : function(minSize){
3838         this.minSize = minSize;
3839     },
3840     
3841     /**
3842      * Gets the maximum size for the resizing element
3843      * @return {Number} The maximum size
3844      */
3845     getMaximumSize : function(){
3846         return this.maxSize;
3847     },
3848     
3849     /**
3850      * Sets the maximum size for the resizing element
3851      * @param {Number} maxSize The maximum size
3852      */
3853     setMaximumSize : function(maxSize){
3854         this.maxSize = maxSize;
3855     },
3856     
3857     /**
3858      * Sets the initialize size for the resizing element
3859      * @param {Number} size The initial size
3860      */
3861     setCurrentSize : function(size){
3862         var oldAnimate = this.animate;
3863         this.animate = false;
3864         this.adapter.setElementSize(this, size);
3865         this.animate = oldAnimate;
3866     },
3867     
3868     /**
3869      * Destroy this splitbar. 
3870      * @param {Boolean} removeEl True to remove the element
3871      */
3872     destroy : function(removeEl){
3873         if(this.shim){
3874             this.shim.remove();
3875         }
3876         this.dd.unreg();
3877         this.proxy.parentNode.removeChild(this.proxy);
3878         if(removeEl){
3879             this.el.remove();
3880         }
3881     }
3882 });
3883
3884 /**
3885  * @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.
3886  */
3887 Roo.SplitBar.createProxy = function(dir){
3888     var proxy = new Roo.Element(document.createElement("div"));
3889     proxy.unselectable();
3890     var cls = 'x-splitbar-proxy';
3891     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
3892     document.body.appendChild(proxy.dom);
3893     return proxy.dom;
3894 };
3895
3896 /** 
3897  * @class Roo.SplitBar.BasicLayoutAdapter
3898  * Default Adapter. It assumes the splitter and resizing element are not positioned
3899  * elements and only gets/sets the width of the element. Generally used for table based layouts.
3900  */
3901 Roo.SplitBar.BasicLayoutAdapter = function(){
3902 };
3903
3904 Roo.SplitBar.BasicLayoutAdapter.prototype = {
3905     // do nothing for now
3906     init : function(s){
3907     
3908     },
3909     /**
3910      * Called before drag operations to get the current size of the resizing element. 
3911      * @param {Roo.SplitBar} s The SplitBar using this adapter
3912      */
3913      getElementSize : function(s){
3914         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3915             return s.resizingEl.getWidth();
3916         }else{
3917             return s.resizingEl.getHeight();
3918         }
3919     },
3920     
3921     /**
3922      * Called after drag operations to set the size of the resizing element.
3923      * @param {Roo.SplitBar} s The SplitBar using this adapter
3924      * @param {Number} newSize The new size to set
3925      * @param {Function} onComplete A function to be invoked when resizing is complete
3926      */
3927     setElementSize : function(s, newSize, onComplete){
3928         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3929             if(!s.animate){
3930                 s.resizingEl.setWidth(newSize);
3931                 if(onComplete){
3932                     onComplete(s, newSize);
3933                 }
3934             }else{
3935                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
3936             }
3937         }else{
3938             
3939             if(!s.animate){
3940                 s.resizingEl.setHeight(newSize);
3941                 if(onComplete){
3942                     onComplete(s, newSize);
3943                 }
3944             }else{
3945                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
3946             }
3947         }
3948     }
3949 };
3950
3951 /** 
3952  *@class Roo.SplitBar.AbsoluteLayoutAdapter
3953  * @extends Roo.SplitBar.BasicLayoutAdapter
3954  * Adapter that  moves the splitter element to align with the resized sizing element. 
3955  * Used with an absolute positioned SplitBar.
3956  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
3957  * document.body, make sure you assign an id to the body element.
3958  */
3959 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
3960     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
3961     this.container = Roo.get(container);
3962 };
3963
3964 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
3965     init : function(s){
3966         this.basic.init(s);
3967     },
3968     
3969     getElementSize : function(s){
3970         return this.basic.getElementSize(s);
3971     },
3972     
3973     setElementSize : function(s, newSize, onComplete){
3974         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
3975     },
3976     
3977     moveSplitter : function(s){
3978         var yes = Roo.SplitBar;
3979         switch(s.placement){
3980             case yes.LEFT:
3981                 s.el.setX(s.resizingEl.getRight());
3982                 break;
3983             case yes.RIGHT:
3984                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
3985                 break;
3986             case yes.TOP:
3987                 s.el.setY(s.resizingEl.getBottom());
3988                 break;
3989             case yes.BOTTOM:
3990                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
3991                 break;
3992         }
3993     }
3994 };
3995
3996 /**
3997  * Orientation constant - Create a vertical SplitBar
3998  * @static
3999  * @type Number
4000  */
4001 Roo.SplitBar.VERTICAL = 1;
4002
4003 /**
4004  * Orientation constant - Create a horizontal SplitBar
4005  * @static
4006  * @type Number
4007  */
4008 Roo.SplitBar.HORIZONTAL = 2;
4009
4010 /**
4011  * Placement constant - The resizing element is to the left of the splitter element
4012  * @static
4013  * @type Number
4014  */
4015 Roo.SplitBar.LEFT = 1;
4016
4017 /**
4018  * Placement constant - The resizing element is to the right of the splitter element
4019  * @static
4020  * @type Number
4021  */
4022 Roo.SplitBar.RIGHT = 2;
4023
4024 /**
4025  * Placement constant - The resizing element is positioned above the splitter element
4026  * @static
4027  * @type Number
4028  */
4029 Roo.SplitBar.TOP = 3;
4030
4031 /**
4032  * Placement constant - The resizing element is positioned under splitter element
4033  * @static
4034  * @type Number
4035  */
4036 Roo.SplitBar.BOTTOM = 4;
4037 /*
4038  * Based on:
4039  * Ext JS Library 1.1.1
4040  * Copyright(c) 2006-2007, Ext JS, LLC.
4041  *
4042  * Originally Released Under LGPL - original licence link has changed is not relivant.
4043  *
4044  * Fork - LGPL
4045  * <script type="text/javascript">
4046  */
4047
4048 /**
4049  * @class Roo.View
4050  * @extends Roo.util.Observable
4051  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
4052  * This class also supports single and multi selection modes. <br>
4053  * Create a data model bound view:
4054  <pre><code>
4055  var store = new Roo.data.Store(...);
4056
4057  var view = new Roo.View({
4058     el : "my-element",
4059     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
4060  
4061     singleSelect: true,
4062     selectedClass: "ydataview-selected",
4063     store: store
4064  });
4065
4066  // listen for node click?
4067  view.on("click", function(vw, index, node, e){
4068  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4069  });
4070
4071  // load XML data
4072  dataModel.load("foobar.xml");
4073  </code></pre>
4074  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
4075  * <br><br>
4076  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
4077  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
4078  * 
4079  * Note: old style constructor is still suported (container, template, config)
4080  * 
4081  * @constructor
4082  * Create a new View
4083  * @param {Object} config The config object
4084  * 
4085  */
4086 Roo.View = function(config, depreciated_tpl, depreciated_config){
4087     
4088     this.parent = false;
4089     
4090     if (typeof(depreciated_tpl) == 'undefined') {
4091         // new way.. - universal constructor.
4092         Roo.apply(this, config);
4093         this.el  = Roo.get(this.el);
4094     } else {
4095         // old format..
4096         this.el  = Roo.get(config);
4097         this.tpl = depreciated_tpl;
4098         Roo.apply(this, depreciated_config);
4099     }
4100     this.wrapEl  = this.el.wrap().wrap();
4101     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
4102     
4103     
4104     if(typeof(this.tpl) == "string"){
4105         this.tpl = new Roo.Template(this.tpl);
4106     } else {
4107         // support xtype ctors..
4108         this.tpl = new Roo.factory(this.tpl, Roo);
4109     }
4110     
4111     
4112     this.tpl.compile();
4113     
4114     /** @private */
4115     this.addEvents({
4116         /**
4117          * @event beforeclick
4118          * Fires before a click is processed. Returns false to cancel the default action.
4119          * @param {Roo.View} this
4120          * @param {Number} index The index of the target node
4121          * @param {HTMLElement} node The target node
4122          * @param {Roo.EventObject} e The raw event object
4123          */
4124             "beforeclick" : true,
4125         /**
4126          * @event click
4127          * Fires when a template node is clicked.
4128          * @param {Roo.View} this
4129          * @param {Number} index The index of the target node
4130          * @param {HTMLElement} node The target node
4131          * @param {Roo.EventObject} e The raw event object
4132          */
4133             "click" : true,
4134         /**
4135          * @event dblclick
4136          * Fires when a template node is double clicked.
4137          * @param {Roo.View} this
4138          * @param {Number} index The index of the target node
4139          * @param {HTMLElement} node The target node
4140          * @param {Roo.EventObject} e The raw event object
4141          */
4142             "dblclick" : true,
4143         /**
4144          * @event contextmenu
4145          * Fires when a template node is right clicked.
4146          * @param {Roo.View} this
4147          * @param {Number} index The index of the target node
4148          * @param {HTMLElement} node The target node
4149          * @param {Roo.EventObject} e The raw event object
4150          */
4151             "contextmenu" : true,
4152         /**
4153          * @event selectionchange
4154          * Fires when the selected nodes change.
4155          * @param {Roo.View} this
4156          * @param {Array} selections Array of the selected nodes
4157          */
4158             "selectionchange" : true,
4159     
4160         /**
4161          * @event beforeselect
4162          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
4163          * @param {Roo.View} this
4164          * @param {HTMLElement} node The node to be selected
4165          * @param {Array} selections Array of currently selected nodes
4166          */
4167             "beforeselect" : true,
4168         /**
4169          * @event preparedata
4170          * Fires on every row to render, to allow you to change the data.
4171          * @param {Roo.View} this
4172          * @param {Object} data to be rendered (change this)
4173          */
4174           "preparedata" : true
4175           
4176           
4177         });
4178
4179
4180
4181     this.el.on({
4182         "click": this.onClick,
4183         "dblclick": this.onDblClick,
4184         "contextmenu": this.onContextMenu,
4185         scope:this
4186     });
4187
4188     this.selections = [];
4189     this.nodes = [];
4190     this.cmp = new Roo.CompositeElementLite([]);
4191     if(this.store){
4192         this.store = Roo.factory(this.store, Roo.data);
4193         this.setStore(this.store, true);
4194     }
4195     
4196     if ( this.footer && this.footer.xtype) {
4197            
4198          var fctr = this.wrapEl.appendChild(document.createElement("div"));
4199         
4200         this.footer.dataSource = this.store;
4201         this.footer.container = fctr;
4202         this.footer = Roo.factory(this.footer, Roo);
4203         fctr.insertFirst(this.el);
4204         
4205         // this is a bit insane - as the paging toolbar seems to detach the el..
4206 //        dom.parentNode.parentNode.parentNode
4207          // they get detached?
4208     }
4209     
4210     
4211     Roo.View.superclass.constructor.call(this);
4212     
4213     
4214 };
4215
4216 Roo.extend(Roo.View, Roo.util.Observable, {
4217     
4218      /**
4219      * @cfg {Roo.data.Store} store Data store to load data from.
4220      */
4221     store : false,
4222     
4223     /**
4224      * @cfg {String|Roo.Element} el The container element.
4225      */
4226     el : '',
4227     
4228     /**
4229      * @cfg {String|Roo.Template} tpl The template used by this View 
4230      */
4231     tpl : false,
4232     /**
4233      * @cfg {String} dataName the named area of the template to use as the data area
4234      *                          Works with domtemplates roo-name="name"
4235      */
4236     dataName: false,
4237     /**
4238      * @cfg {String} selectedClass The css class to add to selected nodes
4239      */
4240     selectedClass : "x-view-selected",
4241      /**
4242      * @cfg {String} emptyText The empty text to show when nothing is loaded.
4243      */
4244     emptyText : "",
4245     
4246     /**
4247      * @cfg {String} text to display on mask (default Loading)
4248      */
4249     mask : false,
4250     /**
4251      * @cfg {Boolean} multiSelect Allow multiple selection
4252      */
4253     multiSelect : false,
4254     /**
4255      * @cfg {Boolean} singleSelect Allow single selection
4256      */
4257     singleSelect:  false,
4258     
4259     /**
4260      * @cfg {Boolean} toggleSelect - selecting 
4261      */
4262     toggleSelect : false,
4263     
4264     /**
4265      * @cfg {Boolean} tickable - selecting 
4266      */
4267     tickable : false,
4268     
4269     /**
4270      * Returns the element this view is bound to.
4271      * @return {Roo.Element}
4272      */
4273     getEl : function(){
4274         return this.wrapEl;
4275     },
4276     
4277     
4278
4279     /**
4280      * Refreshes the view. - called by datachanged on the store. - do not call directly.
4281      */
4282     refresh : function(){
4283         //Roo.log('refresh');
4284         var t = this.tpl;
4285         
4286         // if we are using something like 'domtemplate', then
4287         // the what gets used is:
4288         // t.applySubtemplate(NAME, data, wrapping data..)
4289         // the outer template then get' applied with
4290         //     the store 'extra data'
4291         // and the body get's added to the
4292         //      roo-name="data" node?
4293         //      <span class='roo-tpl-{name}'></span> ?????
4294         
4295         
4296         
4297         this.clearSelections();
4298         this.el.update("");
4299         var html = [];
4300         var records = this.store.getRange();
4301         if(records.length < 1) {
4302             
4303             // is this valid??  = should it render a template??
4304             
4305             this.el.update(this.emptyText);
4306             return;
4307         }
4308         var el = this.el;
4309         if (this.dataName) {
4310             this.el.update(t.apply(this.store.meta)); //????
4311             el = this.el.child('.roo-tpl-' + this.dataName);
4312         }
4313         
4314         for(var i = 0, len = records.length; i < len; i++){
4315             var data = this.prepareData(records[i].data, i, records[i]);
4316             this.fireEvent("preparedata", this, data, i, records[i]);
4317             
4318             var d = Roo.apply({}, data);
4319             
4320             if(this.tickable){
4321                 Roo.apply(d, {'roo-id' : Roo.id()});
4322                 
4323                 var _this = this;
4324             
4325                 Roo.each(this.parent.item, function(item){
4326                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
4327                         return;
4328                     }
4329                     Roo.apply(d, {'roo-data-checked' : 'checked'});
4330                 });
4331             }
4332             
4333             html[html.length] = Roo.util.Format.trim(
4334                 this.dataName ?
4335                     t.applySubtemplate(this.dataName, d, this.store.meta) :
4336                     t.apply(d)
4337             );
4338         }
4339         
4340         
4341         
4342         el.update(html.join(""));
4343         this.nodes = el.dom.childNodes;
4344         this.updateIndexes(0);
4345     },
4346     
4347
4348     /**
4349      * Function to override to reformat the data that is sent to
4350      * the template for each node.
4351      * DEPRICATED - use the preparedata event handler.
4352      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
4353      * a JSON object for an UpdateManager bound view).
4354      */
4355     prepareData : function(data, index, record)
4356     {
4357         this.fireEvent("preparedata", this, data, index, record);
4358         return data;
4359     },
4360
4361     onUpdate : function(ds, record){
4362         // Roo.log('on update');   
4363         this.clearSelections();
4364         var index = this.store.indexOf(record);
4365         var n = this.nodes[index];
4366         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
4367         n.parentNode.removeChild(n);
4368         this.updateIndexes(index, index);
4369     },
4370
4371     
4372     
4373 // --------- FIXME     
4374     onAdd : function(ds, records, index)
4375     {
4376         //Roo.log(['on Add', ds, records, index] );        
4377         this.clearSelections();
4378         if(this.nodes.length == 0){
4379             this.refresh();
4380             return;
4381         }
4382         var n = this.nodes[index];
4383         for(var i = 0, len = records.length; i < len; i++){
4384             var d = this.prepareData(records[i].data, i, records[i]);
4385             if(n){
4386                 this.tpl.insertBefore(n, d);
4387             }else{
4388                 
4389                 this.tpl.append(this.el, d);
4390             }
4391         }
4392         this.updateIndexes(index);
4393     },
4394
4395     onRemove : function(ds, record, index){
4396        // Roo.log('onRemove');
4397         this.clearSelections();
4398         var el = this.dataName  ?
4399             this.el.child('.roo-tpl-' + this.dataName) :
4400             this.el; 
4401         
4402         el.dom.removeChild(this.nodes[index]);
4403         this.updateIndexes(index);
4404     },
4405
4406     /**
4407      * Refresh an individual node.
4408      * @param {Number} index
4409      */
4410     refreshNode : function(index){
4411         this.onUpdate(this.store, this.store.getAt(index));
4412     },
4413
4414     updateIndexes : function(startIndex, endIndex){
4415         var ns = this.nodes;
4416         startIndex = startIndex || 0;
4417         endIndex = endIndex || ns.length - 1;
4418         for(var i = startIndex; i <= endIndex; i++){
4419             ns[i].nodeIndex = i;
4420         }
4421     },
4422
4423     /**
4424      * Changes the data store this view uses and refresh the view.
4425      * @param {Store} store
4426      */
4427     setStore : function(store, initial){
4428         if(!initial && this.store){
4429             this.store.un("datachanged", this.refresh);
4430             this.store.un("add", this.onAdd);
4431             this.store.un("remove", this.onRemove);
4432             this.store.un("update", this.onUpdate);
4433             this.store.un("clear", this.refresh);
4434             this.store.un("beforeload", this.onBeforeLoad);
4435             this.store.un("load", this.onLoad);
4436             this.store.un("loadexception", this.onLoad);
4437         }
4438         if(store){
4439           
4440             store.on("datachanged", this.refresh, this);
4441             store.on("add", this.onAdd, this);
4442             store.on("remove", this.onRemove, this);
4443             store.on("update", this.onUpdate, this);
4444             store.on("clear", this.refresh, this);
4445             store.on("beforeload", this.onBeforeLoad, this);
4446             store.on("load", this.onLoad, this);
4447             store.on("loadexception", this.onLoad, this);
4448         }
4449         
4450         if(store){
4451             this.refresh();
4452         }
4453     },
4454     /**
4455      * onbeforeLoad - masks the loading area.
4456      *
4457      */
4458     onBeforeLoad : function(store,opts)
4459     {
4460          //Roo.log('onBeforeLoad');   
4461         if (!opts.add) {
4462             this.el.update("");
4463         }
4464         this.el.mask(this.mask ? this.mask : "Loading" ); 
4465     },
4466     onLoad : function ()
4467     {
4468         this.el.unmask();
4469     },
4470     
4471
4472     /**
4473      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
4474      * @param {HTMLElement} node
4475      * @return {HTMLElement} The template node
4476      */
4477     findItemFromChild : function(node){
4478         var el = this.dataName  ?
4479             this.el.child('.roo-tpl-' + this.dataName,true) :
4480             this.el.dom; 
4481         
4482         if(!node || node.parentNode == el){
4483                     return node;
4484             }
4485             var p = node.parentNode;
4486             while(p && p != el){
4487             if(p.parentNode == el){
4488                 return p;
4489             }
4490             p = p.parentNode;
4491         }
4492             return null;
4493     },
4494
4495     /** @ignore */
4496     onClick : function(e){
4497         var item = this.findItemFromChild(e.getTarget());
4498         if(item){
4499             var index = this.indexOf(item);
4500             if(this.onItemClick(item, index, e) !== false){
4501                 this.fireEvent("click", this, index, item, e);
4502             }
4503         }else{
4504             this.clearSelections();
4505         }
4506     },
4507
4508     /** @ignore */
4509     onContextMenu : function(e){
4510         var item = this.findItemFromChild(e.getTarget());
4511         if(item){
4512             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
4513         }
4514     },
4515
4516     /** @ignore */
4517     onDblClick : function(e){
4518         var item = this.findItemFromChild(e.getTarget());
4519         if(item){
4520             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
4521         }
4522     },
4523
4524     onItemClick : function(item, index, e)
4525     {
4526         if(this.fireEvent("beforeclick", this, index, item, e) === false){
4527             return false;
4528         }
4529         if (this.toggleSelect) {
4530             var m = this.isSelected(item) ? 'unselect' : 'select';
4531             //Roo.log(m);
4532             var _t = this;
4533             _t[m](item, true, false);
4534             return true;
4535         }
4536         if(this.multiSelect || this.singleSelect){
4537             if(this.multiSelect && e.shiftKey && this.lastSelection){
4538                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
4539             }else{
4540                 this.select(item, this.multiSelect && e.ctrlKey);
4541                 this.lastSelection = item;
4542             }
4543             
4544             if(!this.tickable){
4545                 e.preventDefault();
4546             }
4547             
4548         }
4549         return true;
4550     },
4551
4552     /**
4553      * Get the number of selected nodes.
4554      * @return {Number}
4555      */
4556     getSelectionCount : function(){
4557         return this.selections.length;
4558     },
4559
4560     /**
4561      * Get the currently selected nodes.
4562      * @return {Array} An array of HTMLElements
4563      */
4564     getSelectedNodes : function(){
4565         return this.selections;
4566     },
4567
4568     /**
4569      * Get the indexes of the selected nodes.
4570      * @return {Array}
4571      */
4572     getSelectedIndexes : function(){
4573         var indexes = [], s = this.selections;
4574         for(var i = 0, len = s.length; i < len; i++){
4575             indexes.push(s[i].nodeIndex);
4576         }
4577         return indexes;
4578     },
4579
4580     /**
4581      * Clear all selections
4582      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
4583      */
4584     clearSelections : function(suppressEvent){
4585         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
4586             this.cmp.elements = this.selections;
4587             this.cmp.removeClass(this.selectedClass);
4588             this.selections = [];
4589             if(!suppressEvent){
4590                 this.fireEvent("selectionchange", this, this.selections);
4591             }
4592         }
4593     },
4594
4595     /**
4596      * Returns true if the passed node is selected
4597      * @param {HTMLElement/Number} node The node or node index
4598      * @return {Boolean}
4599      */
4600     isSelected : function(node){
4601         var s = this.selections;
4602         if(s.length < 1){
4603             return false;
4604         }
4605         node = this.getNode(node);
4606         return s.indexOf(node) !== -1;
4607     },
4608
4609     /**
4610      * Selects nodes.
4611      * @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
4612      * @param {Boolean} keepExisting (optional) true to keep existing selections
4613      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4614      */
4615     select : function(nodeInfo, keepExisting, suppressEvent){
4616         if(nodeInfo instanceof Array){
4617             if(!keepExisting){
4618                 this.clearSelections(true);
4619             }
4620             for(var i = 0, len = nodeInfo.length; i < len; i++){
4621                 this.select(nodeInfo[i], true, true);
4622             }
4623             return;
4624         } 
4625         var node = this.getNode(nodeInfo);
4626         if(!node || this.isSelected(node)){
4627             return; // already selected.
4628         }
4629         if(!keepExisting){
4630             this.clearSelections(true);
4631         }
4632         
4633         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
4634             Roo.fly(node).addClass(this.selectedClass);
4635             this.selections.push(node);
4636             if(!suppressEvent){
4637                 this.fireEvent("selectionchange", this, this.selections);
4638             }
4639         }
4640         
4641         
4642     },
4643       /**
4644      * Unselects nodes.
4645      * @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
4646      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
4647      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4648      */
4649     unselect : function(nodeInfo, keepExisting, suppressEvent)
4650     {
4651         if(nodeInfo instanceof Array){
4652             Roo.each(this.selections, function(s) {
4653                 this.unselect(s, nodeInfo);
4654             }, this);
4655             return;
4656         }
4657         var node = this.getNode(nodeInfo);
4658         if(!node || !this.isSelected(node)){
4659             //Roo.log("not selected");
4660             return; // not selected.
4661         }
4662         // fireevent???
4663         var ns = [];
4664         Roo.each(this.selections, function(s) {
4665             if (s == node ) {
4666                 Roo.fly(node).removeClass(this.selectedClass);
4667
4668                 return;
4669             }
4670             ns.push(s);
4671         },this);
4672         
4673         this.selections= ns;
4674         this.fireEvent("selectionchange", this, this.selections);
4675     },
4676
4677     /**
4678      * Gets a template node.
4679      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4680      * @return {HTMLElement} The node or null if it wasn't found
4681      */
4682     getNode : function(nodeInfo){
4683         if(typeof nodeInfo == "string"){
4684             return document.getElementById(nodeInfo);
4685         }else if(typeof nodeInfo == "number"){
4686             return this.nodes[nodeInfo];
4687         }
4688         return nodeInfo;
4689     },
4690
4691     /**
4692      * Gets a range template nodes.
4693      * @param {Number} startIndex
4694      * @param {Number} endIndex
4695      * @return {Array} An array of nodes
4696      */
4697     getNodes : function(start, end){
4698         var ns = this.nodes;
4699         start = start || 0;
4700         end = typeof end == "undefined" ? ns.length - 1 : end;
4701         var nodes = [];
4702         if(start <= end){
4703             for(var i = start; i <= end; i++){
4704                 nodes.push(ns[i]);
4705             }
4706         } else{
4707             for(var i = start; i >= end; i--){
4708                 nodes.push(ns[i]);
4709             }
4710         }
4711         return nodes;
4712     },
4713
4714     /**
4715      * Finds the index of the passed node
4716      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4717      * @return {Number} The index of the node or -1
4718      */
4719     indexOf : function(node){
4720         node = this.getNode(node);
4721         if(typeof node.nodeIndex == "number"){
4722             return node.nodeIndex;
4723         }
4724         var ns = this.nodes;
4725         for(var i = 0, len = ns.length; i < len; i++){
4726             if(ns[i] == node){
4727                 return i;
4728             }
4729         }
4730         return -1;
4731     }
4732 });
4733 /*
4734  * Based on:
4735  * Ext JS Library 1.1.1
4736  * Copyright(c) 2006-2007, Ext JS, LLC.
4737  *
4738  * Originally Released Under LGPL - original licence link has changed is not relivant.
4739  *
4740  * Fork - LGPL
4741  * <script type="text/javascript">
4742  */
4743
4744 /**
4745  * @class Roo.JsonView
4746  * @extends Roo.View
4747  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
4748 <pre><code>
4749 var view = new Roo.JsonView({
4750     container: "my-element",
4751     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
4752     multiSelect: true, 
4753     jsonRoot: "data" 
4754 });
4755
4756 // listen for node click?
4757 view.on("click", function(vw, index, node, e){
4758     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4759 });
4760
4761 // direct load of JSON data
4762 view.load("foobar.php");
4763
4764 // Example from my blog list
4765 var tpl = new Roo.Template(
4766     '&lt;div class="entry"&gt;' +
4767     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
4768     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
4769     "&lt;/div&gt;&lt;hr /&gt;"
4770 );
4771
4772 var moreView = new Roo.JsonView({
4773     container :  "entry-list", 
4774     template : tpl,
4775     jsonRoot: "posts"
4776 });
4777 moreView.on("beforerender", this.sortEntries, this);
4778 moreView.load({
4779     url: "/blog/get-posts.php",
4780     params: "allposts=true",
4781     text: "Loading Blog Entries..."
4782 });
4783 </code></pre>
4784
4785 * Note: old code is supported with arguments : (container, template, config)
4786
4787
4788  * @constructor
4789  * Create a new JsonView
4790  * 
4791  * @param {Object} config The config object
4792  * 
4793  */
4794 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
4795     
4796     
4797     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
4798
4799     var um = this.el.getUpdateManager();
4800     um.setRenderer(this);
4801     um.on("update", this.onLoad, this);
4802     um.on("failure", this.onLoadException, this);
4803
4804     /**
4805      * @event beforerender
4806      * Fires before rendering of the downloaded JSON data.
4807      * @param {Roo.JsonView} this
4808      * @param {Object} data The JSON data loaded
4809      */
4810     /**
4811      * @event load
4812      * Fires when data is loaded.
4813      * @param {Roo.JsonView} this
4814      * @param {Object} data The JSON data loaded
4815      * @param {Object} response The raw Connect response object
4816      */
4817     /**
4818      * @event loadexception
4819      * Fires when loading fails.
4820      * @param {Roo.JsonView} this
4821      * @param {Object} response The raw Connect response object
4822      */
4823     this.addEvents({
4824         'beforerender' : true,
4825         'load' : true,
4826         'loadexception' : true
4827     });
4828 };
4829 Roo.extend(Roo.JsonView, Roo.View, {
4830     /**
4831      * @type {String} The root property in the loaded JSON object that contains the data
4832      */
4833     jsonRoot : "",
4834
4835     /**
4836      * Refreshes the view.
4837      */
4838     refresh : function(){
4839         this.clearSelections();
4840         this.el.update("");
4841         var html = [];
4842         var o = this.jsonData;
4843         if(o && o.length > 0){
4844             for(var i = 0, len = o.length; i < len; i++){
4845                 var data = this.prepareData(o[i], i, o);
4846                 html[html.length] = this.tpl.apply(data);
4847             }
4848         }else{
4849             html.push(this.emptyText);
4850         }
4851         this.el.update(html.join(""));
4852         this.nodes = this.el.dom.childNodes;
4853         this.updateIndexes(0);
4854     },
4855
4856     /**
4857      * 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.
4858      * @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:
4859      <pre><code>
4860      view.load({
4861          url: "your-url.php",
4862          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
4863          callback: yourFunction,
4864          scope: yourObject, //(optional scope)
4865          discardUrl: false,
4866          nocache: false,
4867          text: "Loading...",
4868          timeout: 30,
4869          scripts: false
4870      });
4871      </code></pre>
4872      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
4873      * 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.
4874      * @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}
4875      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
4876      * @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.
4877      */
4878     load : function(){
4879         var um = this.el.getUpdateManager();
4880         um.update.apply(um, arguments);
4881     },
4882
4883     // note - render is a standard framework call...
4884     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
4885     render : function(el, response){
4886         
4887         this.clearSelections();
4888         this.el.update("");
4889         var o;
4890         try{
4891             if (response != '') {
4892                 o = Roo.util.JSON.decode(response.responseText);
4893                 if(this.jsonRoot){
4894                     
4895                     o = o[this.jsonRoot];
4896                 }
4897             }
4898         } catch(e){
4899         }
4900         /**
4901          * The current JSON data or null
4902          */
4903         this.jsonData = o;
4904         this.beforeRender();
4905         this.refresh();
4906     },
4907
4908 /**
4909  * Get the number of records in the current JSON dataset
4910  * @return {Number}
4911  */
4912     getCount : function(){
4913         return this.jsonData ? this.jsonData.length : 0;
4914     },
4915
4916 /**
4917  * Returns the JSON object for the specified node(s)
4918  * @param {HTMLElement/Array} node The node or an array of nodes
4919  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
4920  * you get the JSON object for the node
4921  */
4922     getNodeData : function(node){
4923         if(node instanceof Array){
4924             var data = [];
4925             for(var i = 0, len = node.length; i < len; i++){
4926                 data.push(this.getNodeData(node[i]));
4927             }
4928             return data;
4929         }
4930         return this.jsonData[this.indexOf(node)] || null;
4931     },
4932
4933     beforeRender : function(){
4934         this.snapshot = this.jsonData;
4935         if(this.sortInfo){
4936             this.sort.apply(this, this.sortInfo);
4937         }
4938         this.fireEvent("beforerender", this, this.jsonData);
4939     },
4940
4941     onLoad : function(el, o){
4942         this.fireEvent("load", this, this.jsonData, o);
4943     },
4944
4945     onLoadException : function(el, o){
4946         this.fireEvent("loadexception", this, o);
4947     },
4948
4949 /**
4950  * Filter the data by a specific property.
4951  * @param {String} property A property on your JSON objects
4952  * @param {String/RegExp} value Either string that the property values
4953  * should start with, or a RegExp to test against the property
4954  */
4955     filter : function(property, value){
4956         if(this.jsonData){
4957             var data = [];
4958             var ss = this.snapshot;
4959             if(typeof value == "string"){
4960                 var vlen = value.length;
4961                 if(vlen == 0){
4962                     this.clearFilter();
4963                     return;
4964                 }
4965                 value = value.toLowerCase();
4966                 for(var i = 0, len = ss.length; i < len; i++){
4967                     var o = ss[i];
4968                     if(o[property].substr(0, vlen).toLowerCase() == value){
4969                         data.push(o);
4970                     }
4971                 }
4972             } else if(value.exec){ // regex?
4973                 for(var i = 0, len = ss.length; i < len; i++){
4974                     var o = ss[i];
4975                     if(value.test(o[property])){
4976                         data.push(o);
4977                     }
4978                 }
4979             } else{
4980                 return;
4981             }
4982             this.jsonData = data;
4983             this.refresh();
4984         }
4985     },
4986
4987 /**
4988  * Filter by a function. The passed function will be called with each
4989  * object in the current dataset. If the function returns true the value is kept,
4990  * otherwise it is filtered.
4991  * @param {Function} fn
4992  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
4993  */
4994     filterBy : function(fn, scope){
4995         if(this.jsonData){
4996             var data = [];
4997             var ss = this.snapshot;
4998             for(var i = 0, len = ss.length; i < len; i++){
4999                 var o = ss[i];
5000                 if(fn.call(scope || this, o)){
5001                     data.push(o);
5002                 }
5003             }
5004             this.jsonData = data;
5005             this.refresh();
5006         }
5007     },
5008
5009 /**
5010  * Clears the current filter.
5011  */
5012     clearFilter : function(){
5013         if(this.snapshot && this.jsonData != this.snapshot){
5014             this.jsonData = this.snapshot;
5015             this.refresh();
5016         }
5017     },
5018
5019
5020 /**
5021  * Sorts the data for this view and refreshes it.
5022  * @param {String} property A property on your JSON objects to sort on
5023  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
5024  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
5025  */
5026     sort : function(property, dir, sortType){
5027         this.sortInfo = Array.prototype.slice.call(arguments, 0);
5028         if(this.jsonData){
5029             var p = property;
5030             var dsc = dir && dir.toLowerCase() == "desc";
5031             var f = function(o1, o2){
5032                 var v1 = sortType ? sortType(o1[p]) : o1[p];
5033                 var v2 = sortType ? sortType(o2[p]) : o2[p];
5034                 ;
5035                 if(v1 < v2){
5036                     return dsc ? +1 : -1;
5037                 } else if(v1 > v2){
5038                     return dsc ? -1 : +1;
5039                 } else{
5040                     return 0;
5041                 }
5042             };
5043             this.jsonData.sort(f);
5044             this.refresh();
5045             if(this.jsonData != this.snapshot){
5046                 this.snapshot.sort(f);
5047             }
5048         }
5049     }
5050 });/*
5051  * Based on:
5052  * Ext JS Library 1.1.1
5053  * Copyright(c) 2006-2007, Ext JS, LLC.
5054  *
5055  * Originally Released Under LGPL - original licence link has changed is not relivant.
5056  *
5057  * Fork - LGPL
5058  * <script type="text/javascript">
5059  */
5060  
5061
5062 /**
5063  * @class Roo.ColorPalette
5064  * @extends Roo.Component
5065  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
5066  * Here's an example of typical usage:
5067  * <pre><code>
5068 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
5069 cp.render('my-div');
5070
5071 cp.on('select', function(palette, selColor){
5072     // do something with selColor
5073 });
5074 </code></pre>
5075  * @constructor
5076  * Create a new ColorPalette
5077  * @param {Object} config The config object
5078  */
5079 Roo.ColorPalette = function(config){
5080     Roo.ColorPalette.superclass.constructor.call(this, config);
5081     this.addEvents({
5082         /**
5083              * @event select
5084              * Fires when a color is selected
5085              * @param {ColorPalette} this
5086              * @param {String} color The 6-digit color hex code (without the # symbol)
5087              */
5088         select: true
5089     });
5090
5091     if(this.handler){
5092         this.on("select", this.handler, this.scope, true);
5093     }
5094 };
5095 Roo.extend(Roo.ColorPalette, Roo.Component, {
5096     /**
5097      * @cfg {String} itemCls
5098      * The CSS class to apply to the containing element (defaults to "x-color-palette")
5099      */
5100     itemCls : "x-color-palette",
5101     /**
5102      * @cfg {String} value
5103      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
5104      * the hex codes are case-sensitive.
5105      */
5106     value : null,
5107     clickEvent:'click',
5108     // private
5109     ctype: "Roo.ColorPalette",
5110
5111     /**
5112      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
5113      */
5114     allowReselect : false,
5115
5116     /**
5117      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
5118      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
5119      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
5120      * of colors with the width setting until the box is symmetrical.</p>
5121      * <p>You can override individual colors if needed:</p>
5122      * <pre><code>
5123 var cp = new Roo.ColorPalette();
5124 cp.colors[0] = "FF0000";  // change the first box to red
5125 </code></pre>
5126
5127 Or you can provide a custom array of your own for complete control:
5128 <pre><code>
5129 var cp = new Roo.ColorPalette();
5130 cp.colors = ["000000", "993300", "333300"];
5131 </code></pre>
5132      * @type Array
5133      */
5134     colors : [
5135         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
5136         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
5137         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
5138         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
5139         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
5140     ],
5141
5142     // private
5143     onRender : function(container, position){
5144         var t = new Roo.MasterTemplate(
5145             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
5146         );
5147         var c = this.colors;
5148         for(var i = 0, len = c.length; i < len; i++){
5149             t.add([c[i]]);
5150         }
5151         var el = document.createElement("div");
5152         el.className = this.itemCls;
5153         t.overwrite(el);
5154         container.dom.insertBefore(el, position);
5155         this.el = Roo.get(el);
5156         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
5157         if(this.clickEvent != 'click'){
5158             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
5159         }
5160     },
5161
5162     // private
5163     afterRender : function(){
5164         Roo.ColorPalette.superclass.afterRender.call(this);
5165         if(this.value){
5166             var s = this.value;
5167             this.value = null;
5168             this.select(s);
5169         }
5170     },
5171
5172     // private
5173     handleClick : function(e, t){
5174         e.preventDefault();
5175         if(!this.disabled){
5176             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
5177             this.select(c.toUpperCase());
5178         }
5179     },
5180
5181     /**
5182      * Selects the specified color in the palette (fires the select event)
5183      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
5184      */
5185     select : function(color){
5186         color = color.replace("#", "");
5187         if(color != this.value || this.allowReselect){
5188             var el = this.el;
5189             if(this.value){
5190                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
5191             }
5192             el.child("a.color-"+color).addClass("x-color-palette-sel");
5193             this.value = color;
5194             this.fireEvent("select", this, color);
5195         }
5196     }
5197 });/*
5198  * Based on:
5199  * Ext JS Library 1.1.1
5200  * Copyright(c) 2006-2007, Ext JS, LLC.
5201  *
5202  * Originally Released Under LGPL - original licence link has changed is not relivant.
5203  *
5204  * Fork - LGPL
5205  * <script type="text/javascript">
5206  */
5207  
5208 /**
5209  * @class Roo.DatePicker
5210  * @extends Roo.Component
5211  * Simple date picker class.
5212  * @constructor
5213  * Create a new DatePicker
5214  * @param {Object} config The config object
5215  */
5216 Roo.DatePicker = function(config){
5217     Roo.DatePicker.superclass.constructor.call(this, config);
5218
5219     this.value = config && config.value ?
5220                  config.value.clearTime() : new Date().clearTime();
5221
5222     this.addEvents({
5223         /**
5224              * @event select
5225              * Fires when a date is selected
5226              * @param {DatePicker} this
5227              * @param {Date} date The selected date
5228              */
5229         'select': true,
5230         /**
5231              * @event monthchange
5232              * Fires when the displayed month changes 
5233              * @param {DatePicker} this
5234              * @param {Date} date The selected month
5235              */
5236         'monthchange': true
5237     });
5238
5239     if(this.handler){
5240         this.on("select", this.handler,  this.scope || this);
5241     }
5242     // build the disabledDatesRE
5243     if(!this.disabledDatesRE && this.disabledDates){
5244         var dd = this.disabledDates;
5245         var re = "(?:";
5246         for(var i = 0; i < dd.length; i++){
5247             re += dd[i];
5248             if(i != dd.length-1) {
5249                 re += "|";
5250             }
5251         }
5252         this.disabledDatesRE = new RegExp(re + ")");
5253     }
5254 };
5255
5256 Roo.extend(Roo.DatePicker, Roo.Component, {
5257     /**
5258      * @cfg {String} todayText
5259      * The text to display on the button that selects the current date (defaults to "Today")
5260      */
5261     todayText : "Today",
5262     /**
5263      * @cfg {String} okText
5264      * The text to display on the ok button
5265      */
5266     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
5267     /**
5268      * @cfg {String} cancelText
5269      * The text to display on the cancel button
5270      */
5271     cancelText : "Cancel",
5272     /**
5273      * @cfg {String} todayTip
5274      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
5275      */
5276     todayTip : "{0} (Spacebar)",
5277     /**
5278      * @cfg {Date} minDate
5279      * Minimum allowable date (JavaScript date object, defaults to null)
5280      */
5281     minDate : null,
5282     /**
5283      * @cfg {Date} maxDate
5284      * Maximum allowable date (JavaScript date object, defaults to null)
5285      */
5286     maxDate : null,
5287     /**
5288      * @cfg {String} minText
5289      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
5290      */
5291     minText : "This date is before the minimum date",
5292     /**
5293      * @cfg {String} maxText
5294      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
5295      */
5296     maxText : "This date is after the maximum date",
5297     /**
5298      * @cfg {String} format
5299      * The default date format string which can be overriden for localization support.  The format must be
5300      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
5301      */
5302     format : "m/d/y",
5303     /**
5304      * @cfg {Array} disabledDays
5305      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
5306      */
5307     disabledDays : null,
5308     /**
5309      * @cfg {String} disabledDaysText
5310      * The tooltip to display when the date falls on a disabled day (defaults to "")
5311      */
5312     disabledDaysText : "",
5313     /**
5314      * @cfg {RegExp} disabledDatesRE
5315      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
5316      */
5317     disabledDatesRE : null,
5318     /**
5319      * @cfg {String} disabledDatesText
5320      * The tooltip text to display when the date falls on a disabled date (defaults to "")
5321      */
5322     disabledDatesText : "",
5323     /**
5324      * @cfg {Boolean} constrainToViewport
5325      * True to constrain the date picker to the viewport (defaults to true)
5326      */
5327     constrainToViewport : true,
5328     /**
5329      * @cfg {Array} monthNames
5330      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
5331      */
5332     monthNames : Date.monthNames,
5333     /**
5334      * @cfg {Array} dayNames
5335      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
5336      */
5337     dayNames : Date.dayNames,
5338     /**
5339      * @cfg {String} nextText
5340      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
5341      */
5342     nextText: 'Next Month (Control+Right)',
5343     /**
5344      * @cfg {String} prevText
5345      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
5346      */
5347     prevText: 'Previous Month (Control+Left)',
5348     /**
5349      * @cfg {String} monthYearText
5350      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
5351      */
5352     monthYearText: 'Choose a month (Control+Up/Down to move years)',
5353     /**
5354      * @cfg {Number} startDay
5355      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
5356      */
5357     startDay : 0,
5358     /**
5359      * @cfg {Bool} showClear
5360      * Show a clear button (usefull for date form elements that can be blank.)
5361      */
5362     
5363     showClear: false,
5364     
5365     /**
5366      * Sets the value of the date field
5367      * @param {Date} value The date to set
5368      */
5369     setValue : function(value){
5370         var old = this.value;
5371         
5372         if (typeof(value) == 'string') {
5373          
5374             value = Date.parseDate(value, this.format);
5375         }
5376         if (!value) {
5377             value = new Date();
5378         }
5379         
5380         this.value = value.clearTime(true);
5381         if(this.el){
5382             this.update(this.value);
5383         }
5384     },
5385
5386     /**
5387      * Gets the current selected value of the date field
5388      * @return {Date} The selected date
5389      */
5390     getValue : function(){
5391         return this.value;
5392     },
5393
5394     // private
5395     focus : function(){
5396         if(this.el){
5397             this.update(this.activeDate);
5398         }
5399     },
5400
5401     // privateval
5402     onRender : function(container, position){
5403         
5404         var m = [
5405              '<table cellspacing="0">',
5406                 '<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>',
5407                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
5408         var dn = this.dayNames;
5409         for(var i = 0; i < 7; i++){
5410             var d = this.startDay+i;
5411             if(d > 6){
5412                 d = d-7;
5413             }
5414             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
5415         }
5416         m[m.length] = "</tr></thead><tbody><tr>";
5417         for(var i = 0; i < 42; i++) {
5418             if(i % 7 == 0 && i != 0){
5419                 m[m.length] = "</tr><tr>";
5420             }
5421             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
5422         }
5423         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
5424             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
5425
5426         var el = document.createElement("div");
5427         el.className = "x-date-picker";
5428         el.innerHTML = m.join("");
5429
5430         container.dom.insertBefore(el, position);
5431
5432         this.el = Roo.get(el);
5433         this.eventEl = Roo.get(el.firstChild);
5434
5435         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
5436             handler: this.showPrevMonth,
5437             scope: this,
5438             preventDefault:true,
5439             stopDefault:true
5440         });
5441
5442         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
5443             handler: this.showNextMonth,
5444             scope: this,
5445             preventDefault:true,
5446             stopDefault:true
5447         });
5448
5449         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
5450
5451         this.monthPicker = this.el.down('div.x-date-mp');
5452         this.monthPicker.enableDisplayMode('block');
5453         
5454         var kn = new Roo.KeyNav(this.eventEl, {
5455             "left" : function(e){
5456                 e.ctrlKey ?
5457                     this.showPrevMonth() :
5458                     this.update(this.activeDate.add("d", -1));
5459             },
5460
5461             "right" : function(e){
5462                 e.ctrlKey ?
5463                     this.showNextMonth() :
5464                     this.update(this.activeDate.add("d", 1));
5465             },
5466
5467             "up" : function(e){
5468                 e.ctrlKey ?
5469                     this.showNextYear() :
5470                     this.update(this.activeDate.add("d", -7));
5471             },
5472
5473             "down" : function(e){
5474                 e.ctrlKey ?
5475                     this.showPrevYear() :
5476                     this.update(this.activeDate.add("d", 7));
5477             },
5478
5479             "pageUp" : function(e){
5480                 this.showNextMonth();
5481             },
5482
5483             "pageDown" : function(e){
5484                 this.showPrevMonth();
5485             },
5486
5487             "enter" : function(e){
5488                 e.stopPropagation();
5489                 return true;
5490             },
5491
5492             scope : this
5493         });
5494
5495         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
5496
5497         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
5498
5499         this.el.unselectable();
5500         
5501         this.cells = this.el.select("table.x-date-inner tbody td");
5502         this.textNodes = this.el.query("table.x-date-inner tbody span");
5503
5504         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
5505             text: "&#160;",
5506             tooltip: this.monthYearText
5507         });
5508
5509         this.mbtn.on('click', this.showMonthPicker, this);
5510         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
5511
5512
5513         var today = (new Date()).dateFormat(this.format);
5514         
5515         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
5516         if (this.showClear) {
5517             baseTb.add( new Roo.Toolbar.Fill());
5518         }
5519         baseTb.add({
5520             text: String.format(this.todayText, today),
5521             tooltip: String.format(this.todayTip, today),
5522             handler: this.selectToday,
5523             scope: this
5524         });
5525         
5526         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
5527             
5528         //});
5529         if (this.showClear) {
5530             
5531             baseTb.add( new Roo.Toolbar.Fill());
5532             baseTb.add({
5533                 text: '&#160;',
5534                 cls: 'x-btn-icon x-btn-clear',
5535                 handler: function() {
5536                     //this.value = '';
5537                     this.fireEvent("select", this, '');
5538                 },
5539                 scope: this
5540             });
5541         }
5542         
5543         
5544         if(Roo.isIE){
5545             this.el.repaint();
5546         }
5547         this.update(this.value);
5548     },
5549
5550     createMonthPicker : function(){
5551         if(!this.monthPicker.dom.firstChild){
5552             var buf = ['<table border="0" cellspacing="0">'];
5553             for(var i = 0; i < 6; i++){
5554                 buf.push(
5555                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
5556                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
5557                     i == 0 ?
5558                     '<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>' :
5559                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
5560                 );
5561             }
5562             buf.push(
5563                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
5564                     this.okText,
5565                     '</button><button type="button" class="x-date-mp-cancel">',
5566                     this.cancelText,
5567                     '</button></td></tr>',
5568                 '</table>'
5569             );
5570             this.monthPicker.update(buf.join(''));
5571             this.monthPicker.on('click', this.onMonthClick, this);
5572             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
5573
5574             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
5575             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
5576
5577             this.mpMonths.each(function(m, a, i){
5578                 i += 1;
5579                 if((i%2) == 0){
5580                     m.dom.xmonth = 5 + Math.round(i * .5);
5581                 }else{
5582                     m.dom.xmonth = Math.round((i-1) * .5);
5583                 }
5584             });
5585         }
5586     },
5587
5588     showMonthPicker : function(){
5589         this.createMonthPicker();
5590         var size = this.el.getSize();
5591         this.monthPicker.setSize(size);
5592         this.monthPicker.child('table').setSize(size);
5593
5594         this.mpSelMonth = (this.activeDate || this.value).getMonth();
5595         this.updateMPMonth(this.mpSelMonth);
5596         this.mpSelYear = (this.activeDate || this.value).getFullYear();
5597         this.updateMPYear(this.mpSelYear);
5598
5599         this.monthPicker.slideIn('t', {duration:.2});
5600     },
5601
5602     updateMPYear : function(y){
5603         this.mpyear = y;
5604         var ys = this.mpYears.elements;
5605         for(var i = 1; i <= 10; i++){
5606             var td = ys[i-1], y2;
5607             if((i%2) == 0){
5608                 y2 = y + Math.round(i * .5);
5609                 td.firstChild.innerHTML = y2;
5610                 td.xyear = y2;
5611             }else{
5612                 y2 = y - (5-Math.round(i * .5));
5613                 td.firstChild.innerHTML = y2;
5614                 td.xyear = y2;
5615             }
5616             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
5617         }
5618     },
5619
5620     updateMPMonth : function(sm){
5621         this.mpMonths.each(function(m, a, i){
5622             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
5623         });
5624     },
5625
5626     selectMPMonth: function(m){
5627         
5628     },
5629
5630     onMonthClick : function(e, t){
5631         e.stopEvent();
5632         var el = new Roo.Element(t), pn;
5633         if(el.is('button.x-date-mp-cancel')){
5634             this.hideMonthPicker();
5635         }
5636         else if(el.is('button.x-date-mp-ok')){
5637             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5638             this.hideMonthPicker();
5639         }
5640         else if(pn = el.up('td.x-date-mp-month', 2)){
5641             this.mpMonths.removeClass('x-date-mp-sel');
5642             pn.addClass('x-date-mp-sel');
5643             this.mpSelMonth = pn.dom.xmonth;
5644         }
5645         else if(pn = el.up('td.x-date-mp-year', 2)){
5646             this.mpYears.removeClass('x-date-mp-sel');
5647             pn.addClass('x-date-mp-sel');
5648             this.mpSelYear = pn.dom.xyear;
5649         }
5650         else if(el.is('a.x-date-mp-prev')){
5651             this.updateMPYear(this.mpyear-10);
5652         }
5653         else if(el.is('a.x-date-mp-next')){
5654             this.updateMPYear(this.mpyear+10);
5655         }
5656     },
5657
5658     onMonthDblClick : function(e, t){
5659         e.stopEvent();
5660         var el = new Roo.Element(t), pn;
5661         if(pn = el.up('td.x-date-mp-month', 2)){
5662             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
5663             this.hideMonthPicker();
5664         }
5665         else if(pn = el.up('td.x-date-mp-year', 2)){
5666             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5667             this.hideMonthPicker();
5668         }
5669     },
5670
5671     hideMonthPicker : function(disableAnim){
5672         if(this.monthPicker){
5673             if(disableAnim === true){
5674                 this.monthPicker.hide();
5675             }else{
5676                 this.monthPicker.slideOut('t', {duration:.2});
5677             }
5678         }
5679     },
5680
5681     // private
5682     showPrevMonth : function(e){
5683         this.update(this.activeDate.add("mo", -1));
5684     },
5685
5686     // private
5687     showNextMonth : function(e){
5688         this.update(this.activeDate.add("mo", 1));
5689     },
5690
5691     // private
5692     showPrevYear : function(){
5693         this.update(this.activeDate.add("y", -1));
5694     },
5695
5696     // private
5697     showNextYear : function(){
5698         this.update(this.activeDate.add("y", 1));
5699     },
5700
5701     // private
5702     handleMouseWheel : function(e){
5703         var delta = e.getWheelDelta();
5704         if(delta > 0){
5705             this.showPrevMonth();
5706             e.stopEvent();
5707         } else if(delta < 0){
5708             this.showNextMonth();
5709             e.stopEvent();
5710         }
5711     },
5712
5713     // private
5714     handleDateClick : function(e, t){
5715         e.stopEvent();
5716         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
5717             this.setValue(new Date(t.dateValue));
5718             this.fireEvent("select", this, this.value);
5719         }
5720     },
5721
5722     // private
5723     selectToday : function(){
5724         this.setValue(new Date().clearTime());
5725         this.fireEvent("select", this, this.value);
5726     },
5727
5728     // private
5729     update : function(date)
5730     {
5731         var vd = this.activeDate;
5732         this.activeDate = date;
5733         if(vd && this.el){
5734             var t = date.getTime();
5735             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
5736                 this.cells.removeClass("x-date-selected");
5737                 this.cells.each(function(c){
5738                    if(c.dom.firstChild.dateValue == t){
5739                        c.addClass("x-date-selected");
5740                        setTimeout(function(){
5741                             try{c.dom.firstChild.focus();}catch(e){}
5742                        }, 50);
5743                        return false;
5744                    }
5745                 });
5746                 return;
5747             }
5748         }
5749         
5750         var days = date.getDaysInMonth();
5751         var firstOfMonth = date.getFirstDateOfMonth();
5752         var startingPos = firstOfMonth.getDay()-this.startDay;
5753
5754         if(startingPos <= this.startDay){
5755             startingPos += 7;
5756         }
5757
5758         var pm = date.add("mo", -1);
5759         var prevStart = pm.getDaysInMonth()-startingPos;
5760
5761         var cells = this.cells.elements;
5762         var textEls = this.textNodes;
5763         days += startingPos;
5764
5765         // convert everything to numbers so it's fast
5766         var day = 86400000;
5767         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
5768         var today = new Date().clearTime().getTime();
5769         var sel = date.clearTime().getTime();
5770         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
5771         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
5772         var ddMatch = this.disabledDatesRE;
5773         var ddText = this.disabledDatesText;
5774         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
5775         var ddaysText = this.disabledDaysText;
5776         var format = this.format;
5777
5778         var setCellClass = function(cal, cell){
5779             cell.title = "";
5780             var t = d.getTime();
5781             cell.firstChild.dateValue = t;
5782             if(t == today){
5783                 cell.className += " x-date-today";
5784                 cell.title = cal.todayText;
5785             }
5786             if(t == sel){
5787                 cell.className += " x-date-selected";
5788                 setTimeout(function(){
5789                     try{cell.firstChild.focus();}catch(e){}
5790                 }, 50);
5791             }
5792             // disabling
5793             if(t < min) {
5794                 cell.className = " x-date-disabled";
5795                 cell.title = cal.minText;
5796                 return;
5797             }
5798             if(t > max) {
5799                 cell.className = " x-date-disabled";
5800                 cell.title = cal.maxText;
5801                 return;
5802             }
5803             if(ddays){
5804                 if(ddays.indexOf(d.getDay()) != -1){
5805                     cell.title = ddaysText;
5806                     cell.className = " x-date-disabled";
5807                 }
5808             }
5809             if(ddMatch && format){
5810                 var fvalue = d.dateFormat(format);
5811                 if(ddMatch.test(fvalue)){
5812                     cell.title = ddText.replace("%0", fvalue);
5813                     cell.className = " x-date-disabled";
5814                 }
5815             }
5816         };
5817
5818         var i = 0;
5819         for(; i < startingPos; i++) {
5820             textEls[i].innerHTML = (++prevStart);
5821             d.setDate(d.getDate()+1);
5822             cells[i].className = "x-date-prevday";
5823             setCellClass(this, cells[i]);
5824         }
5825         for(; i < days; i++){
5826             intDay = i - startingPos + 1;
5827             textEls[i].innerHTML = (intDay);
5828             d.setDate(d.getDate()+1);
5829             cells[i].className = "x-date-active";
5830             setCellClass(this, cells[i]);
5831         }
5832         var extraDays = 0;
5833         for(; i < 42; i++) {
5834              textEls[i].innerHTML = (++extraDays);
5835              d.setDate(d.getDate()+1);
5836              cells[i].className = "x-date-nextday";
5837              setCellClass(this, cells[i]);
5838         }
5839
5840         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
5841         this.fireEvent('monthchange', this, date);
5842         
5843         if(!this.internalRender){
5844             var main = this.el.dom.firstChild;
5845             var w = main.offsetWidth;
5846             this.el.setWidth(w + this.el.getBorderWidth("lr"));
5847             Roo.fly(main).setWidth(w);
5848             this.internalRender = true;
5849             // opera does not respect the auto grow header center column
5850             // then, after it gets a width opera refuses to recalculate
5851             // without a second pass
5852             if(Roo.isOpera && !this.secondPass){
5853                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
5854                 this.secondPass = true;
5855                 this.update.defer(10, this, [date]);
5856             }
5857         }
5858         
5859         
5860     }
5861 });        /*
5862  * Based on:
5863  * Ext JS Library 1.1.1
5864  * Copyright(c) 2006-2007, Ext JS, LLC.
5865  *
5866  * Originally Released Under LGPL - original licence link has changed is not relivant.
5867  *
5868  * Fork - LGPL
5869  * <script type="text/javascript">
5870  */
5871 /**
5872  * @class Roo.TabPanel
5873  * @extends Roo.util.Observable
5874  * A lightweight tab container.
5875  * <br><br>
5876  * Usage:
5877  * <pre><code>
5878 // basic tabs 1, built from existing content
5879 var tabs = new Roo.TabPanel("tabs1");
5880 tabs.addTab("script", "View Script");
5881 tabs.addTab("markup", "View Markup");
5882 tabs.activate("script");
5883
5884 // more advanced tabs, built from javascript
5885 var jtabs = new Roo.TabPanel("jtabs");
5886 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
5887
5888 // set up the UpdateManager
5889 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
5890 var updater = tab2.getUpdateManager();
5891 updater.setDefaultUrl("ajax1.htm");
5892 tab2.on('activate', updater.refresh, updater, true);
5893
5894 // Use setUrl for Ajax loading
5895 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
5896 tab3.setUrl("ajax2.htm", null, true);
5897
5898 // Disabled tab
5899 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
5900 tab4.disable();
5901
5902 jtabs.activate("jtabs-1");
5903  * </code></pre>
5904  * @constructor
5905  * Create a new TabPanel.
5906  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
5907  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
5908  */
5909 Roo.TabPanel = function(container, config){
5910     /**
5911     * The container element for this TabPanel.
5912     * @type Roo.Element
5913     */
5914     this.el = Roo.get(container, true);
5915     if(config){
5916         if(typeof config == "boolean"){
5917             this.tabPosition = config ? "bottom" : "top";
5918         }else{
5919             Roo.apply(this, config);
5920         }
5921     }
5922     if(this.tabPosition == "bottom"){
5923         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5924         this.el.addClass("x-tabs-bottom");
5925     }
5926     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
5927     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
5928     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
5929     if(Roo.isIE){
5930         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
5931     }
5932     if(this.tabPosition != "bottom"){
5933         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
5934          * @type Roo.Element
5935          */
5936         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5937         this.el.addClass("x-tabs-top");
5938     }
5939     this.items = [];
5940
5941     this.bodyEl.setStyle("position", "relative");
5942
5943     this.active = null;
5944     this.activateDelegate = this.activate.createDelegate(this);
5945
5946     this.addEvents({
5947         /**
5948          * @event tabchange
5949          * Fires when the active tab changes
5950          * @param {Roo.TabPanel} this
5951          * @param {Roo.TabPanelItem} activePanel The new active tab
5952          */
5953         "tabchange": true,
5954         /**
5955          * @event beforetabchange
5956          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
5957          * @param {Roo.TabPanel} this
5958          * @param {Object} e Set cancel to true on this object to cancel the tab change
5959          * @param {Roo.TabPanelItem} tab The tab being changed to
5960          */
5961         "beforetabchange" : true
5962     });
5963
5964     Roo.EventManager.onWindowResize(this.onResize, this);
5965     this.cpad = this.el.getPadding("lr");
5966     this.hiddenCount = 0;
5967
5968
5969     // toolbar on the tabbar support...
5970     if (this.toolbar) {
5971         var tcfg = this.toolbar;
5972         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
5973         this.toolbar = new Roo.Toolbar(tcfg);
5974         if (Roo.isSafari) {
5975             var tbl = tcfg.container.child('table', true);
5976             tbl.setAttribute('width', '100%');
5977         }
5978         
5979     }
5980    
5981
5982
5983     Roo.TabPanel.superclass.constructor.call(this);
5984 };
5985
5986 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
5987     /*
5988      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
5989      */
5990     tabPosition : "top",
5991     /*
5992      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
5993      */
5994     currentTabWidth : 0,
5995     /*
5996      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
5997      */
5998     minTabWidth : 40,
5999     /*
6000      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
6001      */
6002     maxTabWidth : 250,
6003     /*
6004      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
6005      */
6006     preferredTabWidth : 175,
6007     /*
6008      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
6009      */
6010     resizeTabs : false,
6011     /*
6012      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
6013      */
6014     monitorResize : true,
6015     /*
6016      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
6017      */
6018     toolbar : false,
6019
6020     /**
6021      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
6022      * @param {String} id The id of the div to use <b>or create</b>
6023      * @param {String} text The text for the tab
6024      * @param {String} content (optional) Content to put in the TabPanelItem body
6025      * @param {Boolean} closable (optional) True to create a close icon on the tab
6026      * @return {Roo.TabPanelItem} The created TabPanelItem
6027      */
6028     addTab : function(id, text, content, closable){
6029         var item = new Roo.TabPanelItem(this, id, text, closable);
6030         this.addTabItem(item);
6031         if(content){
6032             item.setContent(content);
6033         }
6034         return item;
6035     },
6036
6037     /**
6038      * Returns the {@link Roo.TabPanelItem} with the specified id/index
6039      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
6040      * @return {Roo.TabPanelItem}
6041      */
6042     getTab : function(id){
6043         return this.items[id];
6044     },
6045
6046     /**
6047      * Hides the {@link Roo.TabPanelItem} with the specified id/index
6048      * @param {String/Number} id The id or index of the TabPanelItem to hide.
6049      */
6050     hideTab : function(id){
6051         var t = this.items[id];
6052         if(!t.isHidden()){
6053            t.setHidden(true);
6054            this.hiddenCount++;
6055            this.autoSizeTabs();
6056         }
6057     },
6058
6059     /**
6060      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
6061      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
6062      */
6063     unhideTab : function(id){
6064         var t = this.items[id];
6065         if(t.isHidden()){
6066            t.setHidden(false);
6067            this.hiddenCount--;
6068            this.autoSizeTabs();
6069         }
6070     },
6071
6072     /**
6073      * Adds an existing {@link Roo.TabPanelItem}.
6074      * @param {Roo.TabPanelItem} item The TabPanelItem to add
6075      */
6076     addTabItem : function(item){
6077         this.items[item.id] = item;
6078         this.items.push(item);
6079         if(this.resizeTabs){
6080            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
6081            this.autoSizeTabs();
6082         }else{
6083             item.autoSize();
6084         }
6085     },
6086
6087     /**
6088      * Removes a {@link Roo.TabPanelItem}.
6089      * @param {String/Number} id The id or index of the TabPanelItem to remove.
6090      */
6091     removeTab : function(id){
6092         var items = this.items;
6093         var tab = items[id];
6094         if(!tab) { return; }
6095         var index = items.indexOf(tab);
6096         if(this.active == tab && items.length > 1){
6097             var newTab = this.getNextAvailable(index);
6098             if(newTab) {
6099                 newTab.activate();
6100             }
6101         }
6102         this.stripEl.dom.removeChild(tab.pnode.dom);
6103         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
6104             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
6105         }
6106         items.splice(index, 1);
6107         delete this.items[tab.id];
6108         tab.fireEvent("close", tab);
6109         tab.purgeListeners();
6110         this.autoSizeTabs();
6111     },
6112
6113     getNextAvailable : function(start){
6114         var items = this.items;
6115         var index = start;
6116         // look for a next tab that will slide over to
6117         // replace the one being removed
6118         while(index < items.length){
6119             var item = items[++index];
6120             if(item && !item.isHidden()){
6121                 return item;
6122             }
6123         }
6124         // if one isn't found select the previous tab (on the left)
6125         index = start;
6126         while(index >= 0){
6127             var item = items[--index];
6128             if(item && !item.isHidden()){
6129                 return item;
6130             }
6131         }
6132         return null;
6133     },
6134
6135     /**
6136      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
6137      * @param {String/Number} id The id or index of the TabPanelItem to disable.
6138      */
6139     disableTab : function(id){
6140         var tab = this.items[id];
6141         if(tab && this.active != tab){
6142             tab.disable();
6143         }
6144     },
6145
6146     /**
6147      * Enables a {@link Roo.TabPanelItem} that is disabled.
6148      * @param {String/Number} id The id or index of the TabPanelItem to enable.
6149      */
6150     enableTab : function(id){
6151         var tab = this.items[id];
6152         tab.enable();
6153     },
6154
6155     /**
6156      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
6157      * @param {String/Number} id The id or index of the TabPanelItem to activate.
6158      * @return {Roo.TabPanelItem} The TabPanelItem.
6159      */
6160     activate : function(id){
6161         var tab = this.items[id];
6162         if(!tab){
6163             return null;
6164         }
6165         if(tab == this.active || tab.disabled){
6166             return tab;
6167         }
6168         var e = {};
6169         this.fireEvent("beforetabchange", this, e, tab);
6170         if(e.cancel !== true && !tab.disabled){
6171             if(this.active){
6172                 this.active.hide();
6173             }
6174             this.active = this.items[id];
6175             this.active.show();
6176             this.fireEvent("tabchange", this, this.active);
6177         }
6178         return tab;
6179     },
6180
6181     /**
6182      * Gets the active {@link Roo.TabPanelItem}.
6183      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
6184      */
6185     getActiveTab : function(){
6186         return this.active;
6187     },
6188
6189     /**
6190      * Updates the tab body element to fit the height of the container element
6191      * for overflow scrolling
6192      * @param {Number} targetHeight (optional) Override the starting height from the elements height
6193      */
6194     syncHeight : function(targetHeight){
6195         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
6196         var bm = this.bodyEl.getMargins();
6197         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
6198         this.bodyEl.setHeight(newHeight);
6199         return newHeight;
6200     },
6201
6202     onResize : function(){
6203         if(this.monitorResize){
6204             this.autoSizeTabs();
6205         }
6206     },
6207
6208     /**
6209      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
6210      */
6211     beginUpdate : function(){
6212         this.updating = true;
6213     },
6214
6215     /**
6216      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
6217      */
6218     endUpdate : function(){
6219         this.updating = false;
6220         this.autoSizeTabs();
6221     },
6222
6223     /**
6224      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
6225      */
6226     autoSizeTabs : function(){
6227         var count = this.items.length;
6228         var vcount = count - this.hiddenCount;
6229         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
6230             return;
6231         }
6232         var w = Math.max(this.el.getWidth() - this.cpad, 10);
6233         var availWidth = Math.floor(w / vcount);
6234         var b = this.stripBody;
6235         if(b.getWidth() > w){
6236             var tabs = this.items;
6237             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
6238             if(availWidth < this.minTabWidth){
6239                 /*if(!this.sleft){    // incomplete scrolling code
6240                     this.createScrollButtons();
6241                 }
6242                 this.showScroll();
6243                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
6244             }
6245         }else{
6246             if(this.currentTabWidth < this.preferredTabWidth){
6247                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
6248             }
6249         }
6250     },
6251
6252     /**
6253      * Returns the number of tabs in this TabPanel.
6254      * @return {Number}
6255      */
6256      getCount : function(){
6257          return this.items.length;
6258      },
6259
6260     /**
6261      * Resizes all the tabs to the passed width
6262      * @param {Number} The new width
6263      */
6264     setTabWidth : function(width){
6265         this.currentTabWidth = width;
6266         for(var i = 0, len = this.items.length; i < len; i++) {
6267                 if(!this.items[i].isHidden()) {
6268                 this.items[i].setWidth(width);
6269             }
6270         }
6271     },
6272
6273     /**
6274      * Destroys this TabPanel
6275      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
6276      */
6277     destroy : function(removeEl){
6278         Roo.EventManager.removeResizeListener(this.onResize, this);
6279         for(var i = 0, len = this.items.length; i < len; i++){
6280             this.items[i].purgeListeners();
6281         }
6282         if(removeEl === true){
6283             this.el.update("");
6284             this.el.remove();
6285         }
6286     }
6287 });
6288
6289 /**
6290  * @class Roo.TabPanelItem
6291  * @extends Roo.util.Observable
6292  * Represents an individual item (tab plus body) in a TabPanel.
6293  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
6294  * @param {String} id The id of this TabPanelItem
6295  * @param {String} text The text for the tab of this TabPanelItem
6296  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
6297  */
6298 Roo.TabPanelItem = function(tabPanel, id, text, closable){
6299     /**
6300      * The {@link Roo.TabPanel} this TabPanelItem belongs to
6301      * @type Roo.TabPanel
6302      */
6303     this.tabPanel = tabPanel;
6304     /**
6305      * The id for this TabPanelItem
6306      * @type String
6307      */
6308     this.id = id;
6309     /** @private */
6310     this.disabled = false;
6311     /** @private */
6312     this.text = text;
6313     /** @private */
6314     this.loaded = false;
6315     this.closable = closable;
6316
6317     /**
6318      * The body element for this TabPanelItem.
6319      * @type Roo.Element
6320      */
6321     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
6322     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
6323     this.bodyEl.setStyle("display", "block");
6324     this.bodyEl.setStyle("zoom", "1");
6325     this.hideAction();
6326
6327     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
6328     /** @private */
6329     this.el = Roo.get(els.el, true);
6330     this.inner = Roo.get(els.inner, true);
6331     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
6332     this.pnode = Roo.get(els.el.parentNode, true);
6333     this.el.on("mousedown", this.onTabMouseDown, this);
6334     this.el.on("click", this.onTabClick, this);
6335     /** @private */
6336     if(closable){
6337         var c = Roo.get(els.close, true);
6338         c.dom.title = this.closeText;
6339         c.addClassOnOver("close-over");
6340         c.on("click", this.closeClick, this);
6341      }
6342
6343     this.addEvents({
6344          /**
6345          * @event activate
6346          * Fires when this tab becomes the active tab.
6347          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6348          * @param {Roo.TabPanelItem} this
6349          */
6350         "activate": true,
6351         /**
6352          * @event beforeclose
6353          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
6354          * @param {Roo.TabPanelItem} this
6355          * @param {Object} e Set cancel to true on this object to cancel the close.
6356          */
6357         "beforeclose": true,
6358         /**
6359          * @event close
6360          * Fires when this tab is closed.
6361          * @param {Roo.TabPanelItem} this
6362          */
6363          "close": true,
6364         /**
6365          * @event deactivate
6366          * Fires when this tab is no longer the active tab.
6367          * @param {Roo.TabPanel} tabPanel The parent TabPanel
6368          * @param {Roo.TabPanelItem} this
6369          */
6370          "deactivate" : true
6371     });
6372     this.hidden = false;
6373
6374     Roo.TabPanelItem.superclass.constructor.call(this);
6375 };
6376
6377 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
6378     purgeListeners : function(){
6379        Roo.util.Observable.prototype.purgeListeners.call(this);
6380        this.el.removeAllListeners();
6381     },
6382     /**
6383      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
6384      */
6385     show : function(){
6386         this.pnode.addClass("on");
6387         this.showAction();
6388         if(Roo.isOpera){
6389             this.tabPanel.stripWrap.repaint();
6390         }
6391         this.fireEvent("activate", this.tabPanel, this);
6392     },
6393
6394     /**
6395      * Returns true if this tab is the active tab.
6396      * @return {Boolean}
6397      */
6398     isActive : function(){
6399         return this.tabPanel.getActiveTab() == this;
6400     },
6401
6402     /**
6403      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
6404      */
6405     hide : function(){
6406         this.pnode.removeClass("on");
6407         this.hideAction();
6408         this.fireEvent("deactivate", this.tabPanel, this);
6409     },
6410
6411     hideAction : function(){
6412         this.bodyEl.hide();
6413         this.bodyEl.setStyle("position", "absolute");
6414         this.bodyEl.setLeft("-20000px");
6415         this.bodyEl.setTop("-20000px");
6416     },
6417
6418     showAction : function(){
6419         this.bodyEl.setStyle("position", "relative");
6420         this.bodyEl.setTop("");
6421         this.bodyEl.setLeft("");
6422         this.bodyEl.show();
6423     },
6424
6425     /**
6426      * Set the tooltip for the tab.
6427      * @param {String} tooltip The tab's tooltip
6428      */
6429     setTooltip : function(text){
6430         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
6431             this.textEl.dom.qtip = text;
6432             this.textEl.dom.removeAttribute('title');
6433         }else{
6434             this.textEl.dom.title = text;
6435         }
6436     },
6437
6438     onTabClick : function(e){
6439         e.preventDefault();
6440         this.tabPanel.activate(this.id);
6441     },
6442
6443     onTabMouseDown : function(e){
6444         e.preventDefault();
6445         this.tabPanel.activate(this.id);
6446     },
6447
6448     getWidth : function(){
6449         return this.inner.getWidth();
6450     },
6451
6452     setWidth : function(width){
6453         var iwidth = width - this.pnode.getPadding("lr");
6454         this.inner.setWidth(iwidth);
6455         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
6456         this.pnode.setWidth(width);
6457     },
6458
6459     /**
6460      * Show or hide the tab
6461      * @param {Boolean} hidden True to hide or false to show.
6462      */
6463     setHidden : function(hidden){
6464         this.hidden = hidden;
6465         this.pnode.setStyle("display", hidden ? "none" : "");
6466     },
6467
6468     /**
6469      * Returns true if this tab is "hidden"
6470      * @return {Boolean}
6471      */
6472     isHidden : function(){
6473         return this.hidden;
6474     },
6475
6476     /**
6477      * Returns the text for this tab
6478      * @return {String}
6479      */
6480     getText : function(){
6481         return this.text;
6482     },
6483
6484     autoSize : function(){
6485         //this.el.beginMeasure();
6486         this.textEl.setWidth(1);
6487         /*
6488          *  #2804 [new] Tabs in Roojs
6489          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
6490          */
6491         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
6492         //this.el.endMeasure();
6493     },
6494
6495     /**
6496      * Sets the text for the tab (Note: this also sets the tooltip text)
6497      * @param {String} text The tab's text and tooltip
6498      */
6499     setText : function(text){
6500         this.text = text;
6501         this.textEl.update(text);
6502         this.setTooltip(text);
6503         if(!this.tabPanel.resizeTabs){
6504             this.autoSize();
6505         }
6506     },
6507     /**
6508      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
6509      */
6510     activate : function(){
6511         this.tabPanel.activate(this.id);
6512     },
6513
6514     /**
6515      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
6516      */
6517     disable : function(){
6518         if(this.tabPanel.active != this){
6519             this.disabled = true;
6520             this.pnode.addClass("disabled");
6521         }
6522     },
6523
6524     /**
6525      * Enables this TabPanelItem if it was previously disabled.
6526      */
6527     enable : function(){
6528         this.disabled = false;
6529         this.pnode.removeClass("disabled");
6530     },
6531
6532     /**
6533      * Sets the content for this TabPanelItem.
6534      * @param {String} content The content
6535      * @param {Boolean} loadScripts true to look for and load scripts
6536      */
6537     setContent : function(content, loadScripts){
6538         this.bodyEl.update(content, loadScripts);
6539     },
6540
6541     /**
6542      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
6543      * @return {Roo.UpdateManager} The UpdateManager
6544      */
6545     getUpdateManager : function(){
6546         return this.bodyEl.getUpdateManager();
6547     },
6548
6549     /**
6550      * Set a URL to be used to load the content for this TabPanelItem.
6551      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
6552      * @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)
6553      * @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)
6554      * @return {Roo.UpdateManager} The UpdateManager
6555      */
6556     setUrl : function(url, params, loadOnce){
6557         if(this.refreshDelegate){
6558             this.un('activate', this.refreshDelegate);
6559         }
6560         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
6561         this.on("activate", this.refreshDelegate);
6562         return this.bodyEl.getUpdateManager();
6563     },
6564
6565     /** @private */
6566     _handleRefresh : function(url, params, loadOnce){
6567         if(!loadOnce || !this.loaded){
6568             var updater = this.bodyEl.getUpdateManager();
6569             updater.update(url, params, this._setLoaded.createDelegate(this));
6570         }
6571     },
6572
6573     /**
6574      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
6575      *   Will fail silently if the setUrl method has not been called.
6576      *   This does not activate the panel, just updates its content.
6577      */
6578     refresh : function(){
6579         if(this.refreshDelegate){
6580            this.loaded = false;
6581            this.refreshDelegate();
6582         }
6583     },
6584
6585     /** @private */
6586     _setLoaded : function(){
6587         this.loaded = true;
6588     },
6589
6590     /** @private */
6591     closeClick : function(e){
6592         var o = {};
6593         e.stopEvent();
6594         this.fireEvent("beforeclose", this, o);
6595         if(o.cancel !== true){
6596             this.tabPanel.removeTab(this.id);
6597         }
6598     },
6599     /**
6600      * The text displayed in the tooltip for the close icon.
6601      * @type String
6602      */
6603     closeText : "Close this tab"
6604 });
6605
6606 /** @private */
6607 Roo.TabPanel.prototype.createStrip = function(container){
6608     var strip = document.createElement("div");
6609     strip.className = "x-tabs-wrap";
6610     container.appendChild(strip);
6611     return strip;
6612 };
6613 /** @private */
6614 Roo.TabPanel.prototype.createStripList = function(strip){
6615     // div wrapper for retard IE
6616     // returns the "tr" element.
6617     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
6618         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
6619         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
6620     return strip.firstChild.firstChild.firstChild.firstChild;
6621 };
6622 /** @private */
6623 Roo.TabPanel.prototype.createBody = function(container){
6624     var body = document.createElement("div");
6625     Roo.id(body, "tab-body");
6626     Roo.fly(body).addClass("x-tabs-body");
6627     container.appendChild(body);
6628     return body;
6629 };
6630 /** @private */
6631 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
6632     var body = Roo.getDom(id);
6633     if(!body){
6634         body = document.createElement("div");
6635         body.id = id;
6636     }
6637     Roo.fly(body).addClass("x-tabs-item-body");
6638     bodyEl.insertBefore(body, bodyEl.firstChild);
6639     return body;
6640 };
6641 /** @private */
6642 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
6643     var td = document.createElement("td");
6644     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
6645     //stripEl.appendChild(td);
6646     if(closable){
6647         td.className = "x-tabs-closable";
6648         if(!this.closeTpl){
6649             this.closeTpl = new Roo.Template(
6650                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6651                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
6652                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
6653             );
6654         }
6655         var el = this.closeTpl.overwrite(td, {"text": text});
6656         var close = el.getElementsByTagName("div")[0];
6657         var inner = el.getElementsByTagName("em")[0];
6658         return {"el": el, "close": close, "inner": inner};
6659     } else {
6660         if(!this.tabTpl){
6661             this.tabTpl = new Roo.Template(
6662                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6663                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
6664             );
6665         }
6666         var el = this.tabTpl.overwrite(td, {"text": text});
6667         var inner = el.getElementsByTagName("em")[0];
6668         return {"el": el, "inner": inner};
6669     }
6670 };/*
6671  * Based on:
6672  * Ext JS Library 1.1.1
6673  * Copyright(c) 2006-2007, Ext JS, LLC.
6674  *
6675  * Originally Released Under LGPL - original licence link has changed is not relivant.
6676  *
6677  * Fork - LGPL
6678  * <script type="text/javascript">
6679  */
6680
6681 /**
6682  * @class Roo.Button
6683  * @extends Roo.util.Observable
6684  * Simple Button class
6685  * @cfg {String} text The button text
6686  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
6687  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
6688  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
6689  * @cfg {Object} scope The scope of the handler
6690  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
6691  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
6692  * @cfg {Boolean} hidden True to start hidden (defaults to false)
6693  * @cfg {Boolean} disabled True to start disabled (defaults to false)
6694  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
6695  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
6696    applies if enableToggle = true)
6697  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
6698  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
6699   an {@link Roo.util.ClickRepeater} config object (defaults to false).
6700  * @constructor
6701  * Create a new button
6702  * @param {Object} config The config object
6703  */
6704 Roo.Button = function(renderTo, config)
6705 {
6706     if (!config) {
6707         config = renderTo;
6708         renderTo = config.renderTo || false;
6709     }
6710     
6711     Roo.apply(this, config);
6712     this.addEvents({
6713         /**
6714              * @event click
6715              * Fires when this button is clicked
6716              * @param {Button} this
6717              * @param {EventObject} e The click event
6718              */
6719             "click" : true,
6720         /**
6721              * @event toggle
6722              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
6723              * @param {Button} this
6724              * @param {Boolean} pressed
6725              */
6726             "toggle" : true,
6727         /**
6728              * @event mouseover
6729              * Fires when the mouse hovers over the button
6730              * @param {Button} this
6731              * @param {Event} e The event object
6732              */
6733         'mouseover' : true,
6734         /**
6735              * @event mouseout
6736              * Fires when the mouse exits the button
6737              * @param {Button} this
6738              * @param {Event} e The event object
6739              */
6740         'mouseout': true,
6741          /**
6742              * @event render
6743              * Fires when the button is rendered
6744              * @param {Button} this
6745              */
6746         'render': true
6747     });
6748     if(this.menu){
6749         this.menu = Roo.menu.MenuMgr.get(this.menu);
6750     }
6751     // register listeners first!!  - so render can be captured..
6752     Roo.util.Observable.call(this);
6753     if(renderTo){
6754         this.render(renderTo);
6755     }
6756     
6757   
6758 };
6759
6760 Roo.extend(Roo.Button, Roo.util.Observable, {
6761     /**
6762      * 
6763      */
6764     
6765     /**
6766      * Read-only. True if this button is hidden
6767      * @type Boolean
6768      */
6769     hidden : false,
6770     /**
6771      * Read-only. True if this button is disabled
6772      * @type Boolean
6773      */
6774     disabled : false,
6775     /**
6776      * Read-only. True if this button is pressed (only if enableToggle = true)
6777      * @type Boolean
6778      */
6779     pressed : false,
6780
6781     /**
6782      * @cfg {Number} tabIndex 
6783      * The DOM tabIndex for this button (defaults to undefined)
6784      */
6785     tabIndex : undefined,
6786
6787     /**
6788      * @cfg {Boolean} enableToggle
6789      * True to enable pressed/not pressed toggling (defaults to false)
6790      */
6791     enableToggle: false,
6792     /**
6793      * @cfg {Mixed} menu
6794      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
6795      */
6796     menu : undefined,
6797     /**
6798      * @cfg {String} menuAlign
6799      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
6800      */
6801     menuAlign : "tl-bl?",
6802
6803     /**
6804      * @cfg {String} iconCls
6805      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
6806      */
6807     iconCls : undefined,
6808     /**
6809      * @cfg {String} type
6810      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
6811      */
6812     type : 'button',
6813
6814     // private
6815     menuClassTarget: 'tr',
6816
6817     /**
6818      * @cfg {String} clickEvent
6819      * The type of event to map to the button's event handler (defaults to 'click')
6820      */
6821     clickEvent : 'click',
6822
6823     /**
6824      * @cfg {Boolean} handleMouseEvents
6825      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
6826      */
6827     handleMouseEvents : true,
6828
6829     /**
6830      * @cfg {String} tooltipType
6831      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
6832      */
6833     tooltipType : 'qtip',
6834
6835     /**
6836      * @cfg {String} cls
6837      * A CSS class to apply to the button's main element.
6838      */
6839     
6840     /**
6841      * @cfg {Roo.Template} template (Optional)
6842      * An {@link Roo.Template} with which to create the Button's main element. This Template must
6843      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
6844      * require code modifications if required elements (e.g. a button) aren't present.
6845      */
6846
6847     // private
6848     render : function(renderTo){
6849         var btn;
6850         if(this.hideParent){
6851             this.parentEl = Roo.get(renderTo);
6852         }
6853         if(!this.dhconfig){
6854             if(!this.template){
6855                 if(!Roo.Button.buttonTemplate){
6856                     // hideous table template
6857                     Roo.Button.buttonTemplate = new Roo.Template(
6858                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
6859                         '<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>',
6860                         "</tr></tbody></table>");
6861                 }
6862                 this.template = Roo.Button.buttonTemplate;
6863             }
6864             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
6865             var btnEl = btn.child("button:first");
6866             btnEl.on('focus', this.onFocus, this);
6867             btnEl.on('blur', this.onBlur, this);
6868             if(this.cls){
6869                 btn.addClass(this.cls);
6870             }
6871             if(this.icon){
6872                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
6873             }
6874             if(this.iconCls){
6875                 btnEl.addClass(this.iconCls);
6876                 if(!this.cls){
6877                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6878                 }
6879             }
6880             if(this.tabIndex !== undefined){
6881                 btnEl.dom.tabIndex = this.tabIndex;
6882             }
6883             if(this.tooltip){
6884                 if(typeof this.tooltip == 'object'){
6885                     Roo.QuickTips.tips(Roo.apply({
6886                           target: btnEl.id
6887                     }, this.tooltip));
6888                 } else {
6889                     btnEl.dom[this.tooltipType] = this.tooltip;
6890                 }
6891             }
6892         }else{
6893             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
6894         }
6895         this.el = btn;
6896         if(this.id){
6897             this.el.dom.id = this.el.id = this.id;
6898         }
6899         if(this.menu){
6900             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
6901             this.menu.on("show", this.onMenuShow, this);
6902             this.menu.on("hide", this.onMenuHide, this);
6903         }
6904         btn.addClass("x-btn");
6905         if(Roo.isIE && !Roo.isIE7){
6906             this.autoWidth.defer(1, this);
6907         }else{
6908             this.autoWidth();
6909         }
6910         if(this.handleMouseEvents){
6911             btn.on("mouseover", this.onMouseOver, this);
6912             btn.on("mouseout", this.onMouseOut, this);
6913             btn.on("mousedown", this.onMouseDown, this);
6914         }
6915         btn.on(this.clickEvent, this.onClick, this);
6916         //btn.on("mouseup", this.onMouseUp, this);
6917         if(this.hidden){
6918             this.hide();
6919         }
6920         if(this.disabled){
6921             this.disable();
6922         }
6923         Roo.ButtonToggleMgr.register(this);
6924         if(this.pressed){
6925             this.el.addClass("x-btn-pressed");
6926         }
6927         if(this.repeat){
6928             var repeater = new Roo.util.ClickRepeater(btn,
6929                 typeof this.repeat == "object" ? this.repeat : {}
6930             );
6931             repeater.on("click", this.onClick,  this);
6932         }
6933         
6934         this.fireEvent('render', this);
6935         
6936     },
6937     /**
6938      * Returns the button's underlying element
6939      * @return {Roo.Element} The element
6940      */
6941     getEl : function(){
6942         return this.el;  
6943     },
6944     
6945     /**
6946      * Destroys this Button and removes any listeners.
6947      */
6948     destroy : function(){
6949         Roo.ButtonToggleMgr.unregister(this);
6950         this.el.removeAllListeners();
6951         this.purgeListeners();
6952         this.el.remove();
6953     },
6954
6955     // private
6956     autoWidth : function(){
6957         if(this.el){
6958             this.el.setWidth("auto");
6959             if(Roo.isIE7 && Roo.isStrict){
6960                 var ib = this.el.child('button');
6961                 if(ib && ib.getWidth() > 20){
6962                     ib.clip();
6963                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6964                 }
6965             }
6966             if(this.minWidth){
6967                 if(this.hidden){
6968                     this.el.beginMeasure();
6969                 }
6970                 if(this.el.getWidth() < this.minWidth){
6971                     this.el.setWidth(this.minWidth);
6972                 }
6973                 if(this.hidden){
6974                     this.el.endMeasure();
6975                 }
6976             }
6977         }
6978     },
6979
6980     /**
6981      * Assigns this button's click handler
6982      * @param {Function} handler The function to call when the button is clicked
6983      * @param {Object} scope (optional) Scope for the function passed in
6984      */
6985     setHandler : function(handler, scope){
6986         this.handler = handler;
6987         this.scope = scope;  
6988     },
6989     
6990     /**
6991      * Sets this button's text
6992      * @param {String} text The button text
6993      */
6994     setText : function(text){
6995         this.text = text;
6996         if(this.el){
6997             this.el.child("td.x-btn-center button.x-btn-text").update(text);
6998         }
6999         this.autoWidth();
7000     },
7001     
7002     /**
7003      * Gets the text for this button
7004      * @return {String} The button text
7005      */
7006     getText : function(){
7007         return this.text;  
7008     },
7009     
7010     /**
7011      * Show this button
7012      */
7013     show: function(){
7014         this.hidden = false;
7015         if(this.el){
7016             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
7017         }
7018     },
7019     
7020     /**
7021      * Hide this button
7022      */
7023     hide: function(){
7024         this.hidden = true;
7025         if(this.el){
7026             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
7027         }
7028     },
7029     
7030     /**
7031      * Convenience function for boolean show/hide
7032      * @param {Boolean} visible True to show, false to hide
7033      */
7034     setVisible: function(visible){
7035         if(visible) {
7036             this.show();
7037         }else{
7038             this.hide();
7039         }
7040     },
7041     
7042     /**
7043      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
7044      * @param {Boolean} state (optional) Force a particular state
7045      */
7046     toggle : function(state){
7047         state = state === undefined ? !this.pressed : state;
7048         if(state != this.pressed){
7049             if(state){
7050                 this.el.addClass("x-btn-pressed");
7051                 this.pressed = true;
7052                 this.fireEvent("toggle", this, true);
7053             }else{
7054                 this.el.removeClass("x-btn-pressed");
7055                 this.pressed = false;
7056                 this.fireEvent("toggle", this, false);
7057             }
7058             if(this.toggleHandler){
7059                 this.toggleHandler.call(this.scope || this, this, state);
7060             }
7061         }
7062     },
7063     
7064     /**
7065      * Focus the button
7066      */
7067     focus : function(){
7068         this.el.child('button:first').focus();
7069     },
7070     
7071     /**
7072      * Disable this button
7073      */
7074     disable : function(){
7075         if(this.el){
7076             this.el.addClass("x-btn-disabled");
7077         }
7078         this.disabled = true;
7079     },
7080     
7081     /**
7082      * Enable this button
7083      */
7084     enable : function(){
7085         if(this.el){
7086             this.el.removeClass("x-btn-disabled");
7087         }
7088         this.disabled = false;
7089     },
7090
7091     /**
7092      * Convenience function for boolean enable/disable
7093      * @param {Boolean} enabled True to enable, false to disable
7094      */
7095     setDisabled : function(v){
7096         this[v !== true ? "enable" : "disable"]();
7097     },
7098
7099     // private
7100     onClick : function(e)
7101     {
7102         if(e){
7103             e.preventDefault();
7104         }
7105         if(e.button != 0){
7106             return;
7107         }
7108         if(!this.disabled){
7109             if(this.enableToggle){
7110                 this.toggle();
7111             }
7112             if(this.menu && !this.menu.isVisible()){
7113                 this.menu.show(this.el, this.menuAlign);
7114             }
7115             this.fireEvent("click", this, e);
7116             if(this.handler){
7117                 this.el.removeClass("x-btn-over");
7118                 this.handler.call(this.scope || this, this, e);
7119             }
7120         }
7121     },
7122     // private
7123     onMouseOver : function(e){
7124         if(!this.disabled){
7125             this.el.addClass("x-btn-over");
7126             this.fireEvent('mouseover', this, e);
7127         }
7128     },
7129     // private
7130     onMouseOut : function(e){
7131         if(!e.within(this.el,  true)){
7132             this.el.removeClass("x-btn-over");
7133             this.fireEvent('mouseout', this, e);
7134         }
7135     },
7136     // private
7137     onFocus : function(e){
7138         if(!this.disabled){
7139             this.el.addClass("x-btn-focus");
7140         }
7141     },
7142     // private
7143     onBlur : function(e){
7144         this.el.removeClass("x-btn-focus");
7145     },
7146     // private
7147     onMouseDown : function(e){
7148         if(!this.disabled && e.button == 0){
7149             this.el.addClass("x-btn-click");
7150             Roo.get(document).on('mouseup', this.onMouseUp, this);
7151         }
7152     },
7153     // private
7154     onMouseUp : function(e){
7155         if(e.button == 0){
7156             this.el.removeClass("x-btn-click");
7157             Roo.get(document).un('mouseup', this.onMouseUp, this);
7158         }
7159     },
7160     // private
7161     onMenuShow : function(e){
7162         this.el.addClass("x-btn-menu-active");
7163     },
7164     // private
7165     onMenuHide : function(e){
7166         this.el.removeClass("x-btn-menu-active");
7167     }   
7168 });
7169
7170 // Private utility class used by Button
7171 Roo.ButtonToggleMgr = function(){
7172    var groups = {};
7173    
7174    function toggleGroup(btn, state){
7175        if(state){
7176            var g = groups[btn.toggleGroup];
7177            for(var i = 0, l = g.length; i < l; i++){
7178                if(g[i] != btn){
7179                    g[i].toggle(false);
7180                }
7181            }
7182        }
7183    }
7184    
7185    return {
7186        register : function(btn){
7187            if(!btn.toggleGroup){
7188                return;
7189            }
7190            var g = groups[btn.toggleGroup];
7191            if(!g){
7192                g = groups[btn.toggleGroup] = [];
7193            }
7194            g.push(btn);
7195            btn.on("toggle", toggleGroup);
7196        },
7197        
7198        unregister : function(btn){
7199            if(!btn.toggleGroup){
7200                return;
7201            }
7202            var g = groups[btn.toggleGroup];
7203            if(g){
7204                g.remove(btn);
7205                btn.un("toggle", toggleGroup);
7206            }
7207        }
7208    };
7209 }();/*
7210  * Based on:
7211  * Ext JS Library 1.1.1
7212  * Copyright(c) 2006-2007, Ext JS, LLC.
7213  *
7214  * Originally Released Under LGPL - original licence link has changed is not relivant.
7215  *
7216  * Fork - LGPL
7217  * <script type="text/javascript">
7218  */
7219  
7220 /**
7221  * @class Roo.SplitButton
7222  * @extends Roo.Button
7223  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
7224  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
7225  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
7226  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
7227  * @cfg {String} arrowTooltip The title attribute of the arrow
7228  * @constructor
7229  * Create a new menu button
7230  * @param {String/HTMLElement/Element} renderTo The element to append the button to
7231  * @param {Object} config The config object
7232  */
7233 Roo.SplitButton = function(renderTo, config){
7234     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
7235     /**
7236      * @event arrowclick
7237      * Fires when this button's arrow is clicked
7238      * @param {SplitButton} this
7239      * @param {EventObject} e The click event
7240      */
7241     this.addEvents({"arrowclick":true});
7242 };
7243
7244 Roo.extend(Roo.SplitButton, Roo.Button, {
7245     render : function(renderTo){
7246         // this is one sweet looking template!
7247         var tpl = new Roo.Template(
7248             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
7249             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
7250             '<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>',
7251             "</tbody></table></td><td>",
7252             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
7253             '<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>',
7254             "</tbody></table></td></tr></table>"
7255         );
7256         var btn = tpl.append(renderTo, [this.text, this.type], true);
7257         var btnEl = btn.child("button");
7258         if(this.cls){
7259             btn.addClass(this.cls);
7260         }
7261         if(this.icon){
7262             btnEl.setStyle('background-image', 'url(' +this.icon +')');
7263         }
7264         if(this.iconCls){
7265             btnEl.addClass(this.iconCls);
7266             if(!this.cls){
7267                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
7268             }
7269         }
7270         this.el = btn;
7271         if(this.handleMouseEvents){
7272             btn.on("mouseover", this.onMouseOver, this);
7273             btn.on("mouseout", this.onMouseOut, this);
7274             btn.on("mousedown", this.onMouseDown, this);
7275             btn.on("mouseup", this.onMouseUp, this);
7276         }
7277         btn.on(this.clickEvent, this.onClick, this);
7278         if(this.tooltip){
7279             if(typeof this.tooltip == 'object'){
7280                 Roo.QuickTips.tips(Roo.apply({
7281                       target: btnEl.id
7282                 }, this.tooltip));
7283             } else {
7284                 btnEl.dom[this.tooltipType] = this.tooltip;
7285             }
7286         }
7287         if(this.arrowTooltip){
7288             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
7289         }
7290         if(this.hidden){
7291             this.hide();
7292         }
7293         if(this.disabled){
7294             this.disable();
7295         }
7296         if(this.pressed){
7297             this.el.addClass("x-btn-pressed");
7298         }
7299         if(Roo.isIE && !Roo.isIE7){
7300             this.autoWidth.defer(1, this);
7301         }else{
7302             this.autoWidth();
7303         }
7304         if(this.menu){
7305             this.menu.on("show", this.onMenuShow, this);
7306             this.menu.on("hide", this.onMenuHide, this);
7307         }
7308         this.fireEvent('render', this);
7309     },
7310
7311     // private
7312     autoWidth : function(){
7313         if(this.el){
7314             var tbl = this.el.child("table:first");
7315             var tbl2 = this.el.child("table:last");
7316             this.el.setWidth("auto");
7317             tbl.setWidth("auto");
7318             if(Roo.isIE7 && Roo.isStrict){
7319                 var ib = this.el.child('button:first');
7320                 if(ib && ib.getWidth() > 20){
7321                     ib.clip();
7322                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
7323                 }
7324             }
7325             if(this.minWidth){
7326                 if(this.hidden){
7327                     this.el.beginMeasure();
7328                 }
7329                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
7330                     tbl.setWidth(this.minWidth-tbl2.getWidth());
7331                 }
7332                 if(this.hidden){
7333                     this.el.endMeasure();
7334                 }
7335             }
7336             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
7337         } 
7338     },
7339     /**
7340      * Sets this button's click handler
7341      * @param {Function} handler The function to call when the button is clicked
7342      * @param {Object} scope (optional) Scope for the function passed above
7343      */
7344     setHandler : function(handler, scope){
7345         this.handler = handler;
7346         this.scope = scope;  
7347     },
7348     
7349     /**
7350      * Sets this button's arrow click handler
7351      * @param {Function} handler The function to call when the arrow is clicked
7352      * @param {Object} scope (optional) Scope for the function passed above
7353      */
7354     setArrowHandler : function(handler, scope){
7355         this.arrowHandler = handler;
7356         this.scope = scope;  
7357     },
7358     
7359     /**
7360      * Focus the button
7361      */
7362     focus : function(){
7363         if(this.el){
7364             this.el.child("button:first").focus();
7365         }
7366     },
7367
7368     // private
7369     onClick : function(e){
7370         e.preventDefault();
7371         if(!this.disabled){
7372             if(e.getTarget(".x-btn-menu-arrow-wrap")){
7373                 if(this.menu && !this.menu.isVisible()){
7374                     this.menu.show(this.el, this.menuAlign);
7375                 }
7376                 this.fireEvent("arrowclick", this, e);
7377                 if(this.arrowHandler){
7378                     this.arrowHandler.call(this.scope || this, this, e);
7379                 }
7380             }else{
7381                 this.fireEvent("click", this, e);
7382                 if(this.handler){
7383                     this.handler.call(this.scope || this, this, e);
7384                 }
7385             }
7386         }
7387     },
7388     // private
7389     onMouseDown : function(e){
7390         if(!this.disabled){
7391             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
7392         }
7393     },
7394     // private
7395     onMouseUp : function(e){
7396         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
7397     }   
7398 });
7399
7400
7401 // backwards compat
7402 Roo.MenuButton = Roo.SplitButton;/*
7403  * Based on:
7404  * Ext JS Library 1.1.1
7405  * Copyright(c) 2006-2007, Ext JS, LLC.
7406  *
7407  * Originally Released Under LGPL - original licence link has changed is not relivant.
7408  *
7409  * Fork - LGPL
7410  * <script type="text/javascript">
7411  */
7412
7413 /**
7414  * @class Roo.Toolbar
7415  * Basic Toolbar class.
7416  * @constructor
7417  * Creates a new Toolbar
7418  * @param {Object} container The config object
7419  */ 
7420 Roo.Toolbar = function(container, buttons, config)
7421 {
7422     /// old consturctor format still supported..
7423     if(container instanceof Array){ // omit the container for later rendering
7424         buttons = container;
7425         config = buttons;
7426         container = null;
7427     }
7428     if (typeof(container) == 'object' && container.xtype) {
7429         config = container;
7430         container = config.container;
7431         buttons = config.buttons || []; // not really - use items!!
7432     }
7433     var xitems = [];
7434     if (config && config.items) {
7435         xitems = config.items;
7436         delete config.items;
7437     }
7438     Roo.apply(this, config);
7439     this.buttons = buttons;
7440     
7441     if(container){
7442         this.render(container);
7443     }
7444     this.xitems = xitems;
7445     Roo.each(xitems, function(b) {
7446         this.add(b);
7447     }, this);
7448     
7449 };
7450
7451 Roo.Toolbar.prototype = {
7452     /**
7453      * @cfg {Array} items
7454      * array of button configs or elements to add (will be converted to a MixedCollection)
7455      */
7456     
7457     /**
7458      * @cfg {String/HTMLElement/Element} container
7459      * The id or element that will contain the toolbar
7460      */
7461     // private
7462     render : function(ct){
7463         this.el = Roo.get(ct);
7464         if(this.cls){
7465             this.el.addClass(this.cls);
7466         }
7467         // using a table allows for vertical alignment
7468         // 100% width is needed by Safari...
7469         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
7470         this.tr = this.el.child("tr", true);
7471         var autoId = 0;
7472         this.items = new Roo.util.MixedCollection(false, function(o){
7473             return o.id || ("item" + (++autoId));
7474         });
7475         if(this.buttons){
7476             this.add.apply(this, this.buttons);
7477             delete this.buttons;
7478         }
7479     },
7480
7481     /**
7482      * Adds element(s) to the toolbar -- this function takes a variable number of 
7483      * arguments of mixed type and adds them to the toolbar.
7484      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
7485      * <ul>
7486      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
7487      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
7488      * <li>Field: Any form field (equivalent to {@link #addField})</li>
7489      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
7490      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
7491      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
7492      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
7493      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
7494      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
7495      * </ul>
7496      * @param {Mixed} arg2
7497      * @param {Mixed} etc.
7498      */
7499     add : function(){
7500         var a = arguments, l = a.length;
7501         for(var i = 0; i < l; i++){
7502             this._add(a[i]);
7503         }
7504     },
7505     // private..
7506     _add : function(el) {
7507         
7508         if (el.xtype) {
7509             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
7510         }
7511         
7512         if (el.applyTo){ // some kind of form field
7513             return this.addField(el);
7514         } 
7515         if (el.render){ // some kind of Toolbar.Item
7516             return this.addItem(el);
7517         }
7518         if (typeof el == "string"){ // string
7519             if(el == "separator" || el == "-"){
7520                 return this.addSeparator();
7521             }
7522             if (el == " "){
7523                 return this.addSpacer();
7524             }
7525             if(el == "->"){
7526                 return this.addFill();
7527             }
7528             return this.addText(el);
7529             
7530         }
7531         if(el.tagName){ // element
7532             return this.addElement(el);
7533         }
7534         if(typeof el == "object"){ // must be button config?
7535             return this.addButton(el);
7536         }
7537         // and now what?!?!
7538         return false;
7539         
7540     },
7541     
7542     /**
7543      * Add an Xtype element
7544      * @param {Object} xtype Xtype Object
7545      * @return {Object} created Object
7546      */
7547     addxtype : function(e){
7548         return this.add(e);  
7549     },
7550     
7551     /**
7552      * Returns the Element for this toolbar.
7553      * @return {Roo.Element}
7554      */
7555     getEl : function(){
7556         return this.el;  
7557     },
7558     
7559     /**
7560      * Adds a separator
7561      * @return {Roo.Toolbar.Item} The separator item
7562      */
7563     addSeparator : function(){
7564         return this.addItem(new Roo.Toolbar.Separator());
7565     },
7566
7567     /**
7568      * Adds a spacer element
7569      * @return {Roo.Toolbar.Spacer} The spacer item
7570      */
7571     addSpacer : function(){
7572         return this.addItem(new Roo.Toolbar.Spacer());
7573     },
7574
7575     /**
7576      * Adds a fill element that forces subsequent additions to the right side of the toolbar
7577      * @return {Roo.Toolbar.Fill} The fill item
7578      */
7579     addFill : function(){
7580         return this.addItem(new Roo.Toolbar.Fill());
7581     },
7582
7583     /**
7584      * Adds any standard HTML element to the toolbar
7585      * @param {String/HTMLElement/Element} el The element or id of the element to add
7586      * @return {Roo.Toolbar.Item} The element's item
7587      */
7588     addElement : function(el){
7589         return this.addItem(new Roo.Toolbar.Item(el));
7590     },
7591     /**
7592      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
7593      * @type Roo.util.MixedCollection  
7594      */
7595     items : false,
7596      
7597     /**
7598      * Adds any Toolbar.Item or subclass
7599      * @param {Roo.Toolbar.Item} item
7600      * @return {Roo.Toolbar.Item} The item
7601      */
7602     addItem : function(item){
7603         var td = this.nextBlock();
7604         item.render(td);
7605         this.items.add(item);
7606         return item;
7607     },
7608     
7609     /**
7610      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
7611      * @param {Object/Array} config A button config or array of configs
7612      * @return {Roo.Toolbar.Button/Array}
7613      */
7614     addButton : function(config){
7615         if(config instanceof Array){
7616             var buttons = [];
7617             for(var i = 0, len = config.length; i < len; i++) {
7618                 buttons.push(this.addButton(config[i]));
7619             }
7620             return buttons;
7621         }
7622         var b = config;
7623         if(!(config instanceof Roo.Toolbar.Button)){
7624             b = config.split ?
7625                 new Roo.Toolbar.SplitButton(config) :
7626                 new Roo.Toolbar.Button(config);
7627         }
7628         var td = this.nextBlock();
7629         b.render(td);
7630         this.items.add(b);
7631         return b;
7632     },
7633     
7634     /**
7635      * Adds text to the toolbar
7636      * @param {String} text The text to add
7637      * @return {Roo.Toolbar.Item} The element's item
7638      */
7639     addText : function(text){
7640         return this.addItem(new Roo.Toolbar.TextItem(text));
7641     },
7642     
7643     /**
7644      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
7645      * @param {Number} index The index where the item is to be inserted
7646      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
7647      * @return {Roo.Toolbar.Button/Item}
7648      */
7649     insertButton : function(index, item){
7650         if(item instanceof Array){
7651             var buttons = [];
7652             for(var i = 0, len = item.length; i < len; i++) {
7653                buttons.push(this.insertButton(index + i, item[i]));
7654             }
7655             return buttons;
7656         }
7657         if (!(item instanceof Roo.Toolbar.Button)){
7658            item = new Roo.Toolbar.Button(item);
7659         }
7660         var td = document.createElement("td");
7661         this.tr.insertBefore(td, this.tr.childNodes[index]);
7662         item.render(td);
7663         this.items.insert(index, item);
7664         return item;
7665     },
7666     
7667     /**
7668      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
7669      * @param {Object} config
7670      * @return {Roo.Toolbar.Item} The element's item
7671      */
7672     addDom : function(config, returnEl){
7673         var td = this.nextBlock();
7674         Roo.DomHelper.overwrite(td, config);
7675         var ti = new Roo.Toolbar.Item(td.firstChild);
7676         ti.render(td);
7677         this.items.add(ti);
7678         return ti;
7679     },
7680
7681     /**
7682      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
7683      * @type Roo.util.MixedCollection  
7684      */
7685     fields : false,
7686     
7687     /**
7688      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
7689      * Note: the field should not have been rendered yet. For a field that has already been
7690      * rendered, use {@link #addElement}.
7691      * @param {Roo.form.Field} field
7692      * @return {Roo.ToolbarItem}
7693      */
7694      
7695       
7696     addField : function(field) {
7697         if (!this.fields) {
7698             var autoId = 0;
7699             this.fields = new Roo.util.MixedCollection(false, function(o){
7700                 return o.id || ("item" + (++autoId));
7701             });
7702
7703         }
7704         
7705         var td = this.nextBlock();
7706         field.render(td);
7707         var ti = new Roo.Toolbar.Item(td.firstChild);
7708         ti.render(td);
7709         this.items.add(ti);
7710         this.fields.add(field);
7711         return ti;
7712     },
7713     /**
7714      * Hide the toolbar
7715      * @method hide
7716      */
7717      
7718       
7719     hide : function()
7720     {
7721         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
7722         this.el.child('div').hide();
7723     },
7724     /**
7725      * Show the toolbar
7726      * @method show
7727      */
7728     show : function()
7729     {
7730         this.el.child('div').show();
7731     },
7732       
7733     // private
7734     nextBlock : function(){
7735         var td = document.createElement("td");
7736         this.tr.appendChild(td);
7737         return td;
7738     },
7739
7740     // private
7741     destroy : function(){
7742         if(this.items){ // rendered?
7743             Roo.destroy.apply(Roo, this.items.items);
7744         }
7745         if(this.fields){ // rendered?
7746             Roo.destroy.apply(Roo, this.fields.items);
7747         }
7748         Roo.Element.uncache(this.el, this.tr);
7749     }
7750 };
7751
7752 /**
7753  * @class Roo.Toolbar.Item
7754  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
7755  * @constructor
7756  * Creates a new Item
7757  * @param {HTMLElement} el 
7758  */
7759 Roo.Toolbar.Item = function(el){
7760     var cfg = {};
7761     if (typeof (el.xtype) != 'undefined') {
7762         cfg = el;
7763         el = cfg.el;
7764     }
7765     
7766     this.el = Roo.getDom(el);
7767     this.id = Roo.id(this.el);
7768     this.hidden = false;
7769     
7770     this.addEvents({
7771          /**
7772              * @event render
7773              * Fires when the button is rendered
7774              * @param {Button} this
7775              */
7776         'render': true
7777     });
7778     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
7779 };
7780 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
7781 //Roo.Toolbar.Item.prototype = {
7782     
7783     /**
7784      * Get this item's HTML Element
7785      * @return {HTMLElement}
7786      */
7787     getEl : function(){
7788        return this.el;  
7789     },
7790
7791     // private
7792     render : function(td){
7793         
7794          this.td = td;
7795         td.appendChild(this.el);
7796         
7797         this.fireEvent('render', this);
7798     },
7799     
7800     /**
7801      * Removes and destroys this item.
7802      */
7803     destroy : function(){
7804         this.td.parentNode.removeChild(this.td);
7805     },
7806     
7807     /**
7808      * Shows this item.
7809      */
7810     show: function(){
7811         this.hidden = false;
7812         this.td.style.display = "";
7813     },
7814     
7815     /**
7816      * Hides this item.
7817      */
7818     hide: function(){
7819         this.hidden = true;
7820         this.td.style.display = "none";
7821     },
7822     
7823     /**
7824      * Convenience function for boolean show/hide.
7825      * @param {Boolean} visible true to show/false to hide
7826      */
7827     setVisible: function(visible){
7828         if(visible) {
7829             this.show();
7830         }else{
7831             this.hide();
7832         }
7833     },
7834     
7835     /**
7836      * Try to focus this item.
7837      */
7838     focus : function(){
7839         Roo.fly(this.el).focus();
7840     },
7841     
7842     /**
7843      * Disables this item.
7844      */
7845     disable : function(){
7846         Roo.fly(this.td).addClass("x-item-disabled");
7847         this.disabled = true;
7848         this.el.disabled = true;
7849     },
7850     
7851     /**
7852      * Enables this item.
7853      */
7854     enable : function(){
7855         Roo.fly(this.td).removeClass("x-item-disabled");
7856         this.disabled = false;
7857         this.el.disabled = false;
7858     }
7859 });
7860
7861
7862 /**
7863  * @class Roo.Toolbar.Separator
7864  * @extends Roo.Toolbar.Item
7865  * A simple toolbar separator class
7866  * @constructor
7867  * Creates a new Separator
7868  */
7869 Roo.Toolbar.Separator = function(cfg){
7870     
7871     var s = document.createElement("span");
7872     s.className = "ytb-sep";
7873     if (cfg) {
7874         cfg.el = s;
7875     }
7876     
7877     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
7878 };
7879 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
7880     enable:Roo.emptyFn,
7881     disable:Roo.emptyFn,
7882     focus:Roo.emptyFn
7883 });
7884
7885 /**
7886  * @class Roo.Toolbar.Spacer
7887  * @extends Roo.Toolbar.Item
7888  * A simple element that adds extra horizontal space to a toolbar.
7889  * @constructor
7890  * Creates a new Spacer
7891  */
7892 Roo.Toolbar.Spacer = function(cfg){
7893     var s = document.createElement("div");
7894     s.className = "ytb-spacer";
7895     if (cfg) {
7896         cfg.el = s;
7897     }
7898     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
7899 };
7900 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
7901     enable:Roo.emptyFn,
7902     disable:Roo.emptyFn,
7903     focus:Roo.emptyFn
7904 });
7905
7906 /**
7907  * @class Roo.Toolbar.Fill
7908  * @extends Roo.Toolbar.Spacer
7909  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
7910  * @constructor
7911  * Creates a new Spacer
7912  */
7913 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
7914     // private
7915     render : function(td){
7916         td.style.width = '100%';
7917         Roo.Toolbar.Fill.superclass.render.call(this, td);
7918     }
7919 });
7920
7921 /**
7922  * @class Roo.Toolbar.TextItem
7923  * @extends Roo.Toolbar.Item
7924  * A simple class that renders text directly into a toolbar.
7925  * @constructor
7926  * Creates a new TextItem
7927  * @param {String} text
7928  */
7929 Roo.Toolbar.TextItem = function(cfg){
7930     var  text = cfg || "";
7931     if (typeof(cfg) == 'object') {
7932         text = cfg.text || "";
7933     }  else {
7934         cfg = null;
7935     }
7936     var s = document.createElement("span");
7937     s.className = "ytb-text";
7938     s.innerHTML = text;
7939     if (cfg) {
7940         cfg.el  = s;
7941     }
7942     
7943     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
7944 };
7945 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
7946     
7947      
7948     enable:Roo.emptyFn,
7949     disable:Roo.emptyFn,
7950     focus:Roo.emptyFn
7951 });
7952
7953 /**
7954  * @class Roo.Toolbar.Button
7955  * @extends Roo.Button
7956  * A button that renders into a toolbar.
7957  * @constructor
7958  * Creates a new Button
7959  * @param {Object} config A standard {@link Roo.Button} config object
7960  */
7961 Roo.Toolbar.Button = function(config){
7962     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
7963 };
7964 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
7965     render : function(td){
7966         this.td = td;
7967         Roo.Toolbar.Button.superclass.render.call(this, td);
7968     },
7969     
7970     /**
7971      * Removes and destroys this button
7972      */
7973     destroy : function(){
7974         Roo.Toolbar.Button.superclass.destroy.call(this);
7975         this.td.parentNode.removeChild(this.td);
7976     },
7977     
7978     /**
7979      * Shows this button
7980      */
7981     show: function(){
7982         this.hidden = false;
7983         this.td.style.display = "";
7984     },
7985     
7986     /**
7987      * Hides this button
7988      */
7989     hide: function(){
7990         this.hidden = true;
7991         this.td.style.display = "none";
7992     },
7993
7994     /**
7995      * Disables this item
7996      */
7997     disable : function(){
7998         Roo.fly(this.td).addClass("x-item-disabled");
7999         this.disabled = true;
8000     },
8001
8002     /**
8003      * Enables this item
8004      */
8005     enable : function(){
8006         Roo.fly(this.td).removeClass("x-item-disabled");
8007         this.disabled = false;
8008     }
8009 });
8010 // backwards compat
8011 Roo.ToolbarButton = Roo.Toolbar.Button;
8012
8013 /**
8014  * @class Roo.Toolbar.SplitButton
8015  * @extends Roo.SplitButton
8016  * A menu button that renders into a toolbar.
8017  * @constructor
8018  * Creates a new SplitButton
8019  * @param {Object} config A standard {@link Roo.SplitButton} config object
8020  */
8021 Roo.Toolbar.SplitButton = function(config){
8022     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
8023 };
8024 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
8025     render : function(td){
8026         this.td = td;
8027         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
8028     },
8029     
8030     /**
8031      * Removes and destroys this button
8032      */
8033     destroy : function(){
8034         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
8035         this.td.parentNode.removeChild(this.td);
8036     },
8037     
8038     /**
8039      * Shows this button
8040      */
8041     show: function(){
8042         this.hidden = false;
8043         this.td.style.display = "";
8044     },
8045     
8046     /**
8047      * Hides this button
8048      */
8049     hide: function(){
8050         this.hidden = true;
8051         this.td.style.display = "none";
8052     }
8053 });
8054
8055 // backwards compat
8056 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
8057  * Based on:
8058  * Ext JS Library 1.1.1
8059  * Copyright(c) 2006-2007, Ext JS, LLC.
8060  *
8061  * Originally Released Under LGPL - original licence link has changed is not relivant.
8062  *
8063  * Fork - LGPL
8064  * <script type="text/javascript">
8065  */
8066  
8067 /**
8068  * @class Roo.PagingToolbar
8069  * @extends Roo.Toolbar
8070  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
8071  * @constructor
8072  * Create a new PagingToolbar
8073  * @param {Object} config The config object
8074  */
8075 Roo.PagingToolbar = function(el, ds, config)
8076 {
8077     // old args format still supported... - xtype is prefered..
8078     if (typeof(el) == 'object' && el.xtype) {
8079         // created from xtype...
8080         config = el;
8081         ds = el.dataSource;
8082         el = config.container;
8083     }
8084     var items = [];
8085     if (config.items) {
8086         items = config.items;
8087         config.items = [];
8088     }
8089     
8090     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
8091     this.ds = ds;
8092     this.cursor = 0;
8093     this.renderButtons(this.el);
8094     this.bind(ds);
8095     
8096     // supprot items array.
8097    
8098     Roo.each(items, function(e) {
8099         this.add(Roo.factory(e));
8100     },this);
8101     
8102 };
8103
8104 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
8105     /**
8106      * @cfg {Roo.data.Store} dataSource
8107      * The underlying data store providing the paged data
8108      */
8109     /**
8110      * @cfg {String/HTMLElement/Element} container
8111      * container The id or element that will contain the toolbar
8112      */
8113     /**
8114      * @cfg {Boolean} displayInfo
8115      * True to display the displayMsg (defaults to false)
8116      */
8117     /**
8118      * @cfg {Number} pageSize
8119      * The number of records to display per page (defaults to 20)
8120      */
8121     pageSize: 20,
8122     /**
8123      * @cfg {String} displayMsg
8124      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
8125      */
8126     displayMsg : 'Displaying {0} - {1} of {2}',
8127     /**
8128      * @cfg {String} emptyMsg
8129      * The message to display when no records are found (defaults to "No data to display")
8130      */
8131     emptyMsg : 'No data to display',
8132     /**
8133      * Customizable piece of the default paging text (defaults to "Page")
8134      * @type String
8135      */
8136     beforePageText : "Page",
8137     /**
8138      * Customizable piece of the default paging text (defaults to "of %0")
8139      * @type String
8140      */
8141     afterPageText : "of {0}",
8142     /**
8143      * Customizable piece of the default paging text (defaults to "First Page")
8144      * @type String
8145      */
8146     firstText : "First Page",
8147     /**
8148      * Customizable piece of the default paging text (defaults to "Previous Page")
8149      * @type String
8150      */
8151     prevText : "Previous Page",
8152     /**
8153      * Customizable piece of the default paging text (defaults to "Next Page")
8154      * @type String
8155      */
8156     nextText : "Next Page",
8157     /**
8158      * Customizable piece of the default paging text (defaults to "Last Page")
8159      * @type String
8160      */
8161     lastText : "Last Page",
8162     /**
8163      * Customizable piece of the default paging text (defaults to "Refresh")
8164      * @type String
8165      */
8166     refreshText : "Refresh",
8167
8168     // private
8169     renderButtons : function(el){
8170         Roo.PagingToolbar.superclass.render.call(this, el);
8171         this.first = this.addButton({
8172             tooltip: this.firstText,
8173             cls: "x-btn-icon x-grid-page-first",
8174             disabled: true,
8175             handler: this.onClick.createDelegate(this, ["first"])
8176         });
8177         this.prev = this.addButton({
8178             tooltip: this.prevText,
8179             cls: "x-btn-icon x-grid-page-prev",
8180             disabled: true,
8181             handler: this.onClick.createDelegate(this, ["prev"])
8182         });
8183         //this.addSeparator();
8184         this.add(this.beforePageText);
8185         this.field = Roo.get(this.addDom({
8186            tag: "input",
8187            type: "text",
8188            size: "3",
8189            value: "1",
8190            cls: "x-grid-page-number"
8191         }).el);
8192         this.field.on("keydown", this.onPagingKeydown, this);
8193         this.field.on("focus", function(){this.dom.select();});
8194         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
8195         this.field.setHeight(18);
8196         //this.addSeparator();
8197         this.next = this.addButton({
8198             tooltip: this.nextText,
8199             cls: "x-btn-icon x-grid-page-next",
8200             disabled: true,
8201             handler: this.onClick.createDelegate(this, ["next"])
8202         });
8203         this.last = this.addButton({
8204             tooltip: this.lastText,
8205             cls: "x-btn-icon x-grid-page-last",
8206             disabled: true,
8207             handler: this.onClick.createDelegate(this, ["last"])
8208         });
8209         //this.addSeparator();
8210         this.loading = this.addButton({
8211             tooltip: this.refreshText,
8212             cls: "x-btn-icon x-grid-loading",
8213             handler: this.onClick.createDelegate(this, ["refresh"])
8214         });
8215
8216         if(this.displayInfo){
8217             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
8218         }
8219     },
8220
8221     // private
8222     updateInfo : function(){
8223         if(this.displayEl){
8224             var count = this.ds.getCount();
8225             var msg = count == 0 ?
8226                 this.emptyMsg :
8227                 String.format(
8228                     this.displayMsg,
8229                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
8230                 );
8231             this.displayEl.update(msg);
8232         }
8233     },
8234
8235     // private
8236     onLoad : function(ds, r, o){
8237        this.cursor = o.params ? o.params.start : 0;
8238        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
8239
8240        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
8241        this.field.dom.value = ap;
8242        this.first.setDisabled(ap == 1);
8243        this.prev.setDisabled(ap == 1);
8244        this.next.setDisabled(ap == ps);
8245        this.last.setDisabled(ap == ps);
8246        this.loading.enable();
8247        this.updateInfo();
8248     },
8249
8250     // private
8251     getPageData : function(){
8252         var total = this.ds.getTotalCount();
8253         return {
8254             total : total,
8255             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
8256             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
8257         };
8258     },
8259
8260     // private
8261     onLoadError : function(){
8262         this.loading.enable();
8263     },
8264
8265     // private
8266     onPagingKeydown : function(e){
8267         var k = e.getKey();
8268         var d = this.getPageData();
8269         if(k == e.RETURN){
8270             var v = this.field.dom.value, pageNum;
8271             if(!v || isNaN(pageNum = parseInt(v, 10))){
8272                 this.field.dom.value = d.activePage;
8273                 return;
8274             }
8275             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
8276             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8277             e.stopEvent();
8278         }
8279         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))
8280         {
8281           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
8282           this.field.dom.value = pageNum;
8283           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
8284           e.stopEvent();
8285         }
8286         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
8287         {
8288           var v = this.field.dom.value, pageNum; 
8289           var increment = (e.shiftKey) ? 10 : 1;
8290           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
8291             increment *= -1;
8292           }
8293           if(!v || isNaN(pageNum = parseInt(v, 10))) {
8294             this.field.dom.value = d.activePage;
8295             return;
8296           }
8297           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
8298           {
8299             this.field.dom.value = parseInt(v, 10) + increment;
8300             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
8301             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
8302           }
8303           e.stopEvent();
8304         }
8305     },
8306
8307     // private
8308     beforeLoad : function(){
8309         if(this.loading){
8310             this.loading.disable();
8311         }
8312     },
8313
8314     // private
8315     onClick : function(which){
8316         var ds = this.ds;
8317         switch(which){
8318             case "first":
8319                 ds.load({params:{start: 0, limit: this.pageSize}});
8320             break;
8321             case "prev":
8322                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
8323             break;
8324             case "next":
8325                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
8326             break;
8327             case "last":
8328                 var total = ds.getTotalCount();
8329                 var extra = total % this.pageSize;
8330                 var lastStart = extra ? (total - extra) : total-this.pageSize;
8331                 ds.load({params:{start: lastStart, limit: this.pageSize}});
8332             break;
8333             case "refresh":
8334                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
8335             break;
8336         }
8337     },
8338
8339     /**
8340      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
8341      * @param {Roo.data.Store} store The data store to unbind
8342      */
8343     unbind : function(ds){
8344         ds.un("beforeload", this.beforeLoad, this);
8345         ds.un("load", this.onLoad, this);
8346         ds.un("loadexception", this.onLoadError, this);
8347         ds.un("remove", this.updateInfo, this);
8348         ds.un("add", this.updateInfo, this);
8349         this.ds = undefined;
8350     },
8351
8352     /**
8353      * Binds the paging toolbar to the specified {@link Roo.data.Store}
8354      * @param {Roo.data.Store} store The data store to bind
8355      */
8356     bind : function(ds){
8357         ds.on("beforeload", this.beforeLoad, this);
8358         ds.on("load", this.onLoad, this);
8359         ds.on("loadexception", this.onLoadError, this);
8360         ds.on("remove", this.updateInfo, this);
8361         ds.on("add", this.updateInfo, this);
8362         this.ds = ds;
8363     }
8364 });/*
8365  * Based on:
8366  * Ext JS Library 1.1.1
8367  * Copyright(c) 2006-2007, Ext JS, LLC.
8368  *
8369  * Originally Released Under LGPL - original licence link has changed is not relivant.
8370  *
8371  * Fork - LGPL
8372  * <script type="text/javascript">
8373  */
8374
8375 /**
8376  * @class Roo.Resizable
8377  * @extends Roo.util.Observable
8378  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
8379  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
8380  * 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
8381  * the element will be wrapped for you automatically.</p>
8382  * <p>Here is the list of valid resize handles:</p>
8383  * <pre>
8384 Value   Description
8385 ------  -------------------
8386  'n'     north
8387  's'     south
8388  'e'     east
8389  'w'     west
8390  'nw'    northwest
8391  'sw'    southwest
8392  'se'    southeast
8393  'ne'    northeast
8394  'hd'    horizontal drag
8395  'all'   all
8396 </pre>
8397  * <p>Here's an example showing the creation of a typical Resizable:</p>
8398  * <pre><code>
8399 var resizer = new Roo.Resizable("element-id", {
8400     handles: 'all',
8401     minWidth: 200,
8402     minHeight: 100,
8403     maxWidth: 500,
8404     maxHeight: 400,
8405     pinned: true
8406 });
8407 resizer.on("resize", myHandler);
8408 </code></pre>
8409  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
8410  * resizer.east.setDisplayed(false);</p>
8411  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
8412  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
8413  * resize operation's new size (defaults to [0, 0])
8414  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
8415  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
8416  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
8417  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
8418  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
8419  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
8420  * @cfg {Number} width The width of the element in pixels (defaults to null)
8421  * @cfg {Number} height The height of the element in pixels (defaults to null)
8422  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
8423  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
8424  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
8425  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
8426  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
8427  * in favor of the handles config option (defaults to false)
8428  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
8429  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
8430  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
8431  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
8432  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
8433  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
8434  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
8435  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
8436  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
8437  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
8438  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
8439  * @constructor
8440  * Create a new resizable component
8441  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
8442  * @param {Object} config configuration options
8443   */
8444 Roo.Resizable = function(el, config)
8445 {
8446     this.el = Roo.get(el);
8447
8448     if(config && config.wrap){
8449         config.resizeChild = this.el;
8450         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
8451         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
8452         this.el.setStyle("overflow", "hidden");
8453         this.el.setPositioning(config.resizeChild.getPositioning());
8454         config.resizeChild.clearPositioning();
8455         if(!config.width || !config.height){
8456             var csize = config.resizeChild.getSize();
8457             this.el.setSize(csize.width, csize.height);
8458         }
8459         if(config.pinned && !config.adjustments){
8460             config.adjustments = "auto";
8461         }
8462     }
8463
8464     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
8465     this.proxy.unselectable();
8466     this.proxy.enableDisplayMode('block');
8467
8468     Roo.apply(this, config);
8469
8470     if(this.pinned){
8471         this.disableTrackOver = true;
8472         this.el.addClass("x-resizable-pinned");
8473     }
8474     // if the element isn't positioned, make it relative
8475     var position = this.el.getStyle("position");
8476     if(position != "absolute" && position != "fixed"){
8477         this.el.setStyle("position", "relative");
8478     }
8479     if(!this.handles){ // no handles passed, must be legacy style
8480         this.handles = 's,e,se';
8481         if(this.multiDirectional){
8482             this.handles += ',n,w';
8483         }
8484     }
8485     if(this.handles == "all"){
8486         this.handles = "n s e w ne nw se sw";
8487     }
8488     var hs = this.handles.split(/\s*?[,;]\s*?| /);
8489     var ps = Roo.Resizable.positions;
8490     for(var i = 0, len = hs.length; i < len; i++){
8491         if(hs[i] && ps[hs[i]]){
8492             var pos = ps[hs[i]];
8493             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
8494         }
8495     }
8496     // legacy
8497     this.corner = this.southeast;
8498     
8499     // updateBox = the box can move..
8500     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
8501         this.updateBox = true;
8502     }
8503
8504     this.activeHandle = null;
8505
8506     if(this.resizeChild){
8507         if(typeof this.resizeChild == "boolean"){
8508             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
8509         }else{
8510             this.resizeChild = Roo.get(this.resizeChild, true);
8511         }
8512     }
8513     
8514     if(this.adjustments == "auto"){
8515         var rc = this.resizeChild;
8516         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
8517         if(rc && (hw || hn)){
8518             rc.position("relative");
8519             rc.setLeft(hw ? hw.el.getWidth() : 0);
8520             rc.setTop(hn ? hn.el.getHeight() : 0);
8521         }
8522         this.adjustments = [
8523             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
8524             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
8525         ];
8526     }
8527
8528     if(this.draggable){
8529         this.dd = this.dynamic ?
8530             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
8531         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
8532     }
8533
8534     // public events
8535     this.addEvents({
8536         /**
8537          * @event beforeresize
8538          * Fired before resize is allowed. Set enabled to false to cancel resize.
8539          * @param {Roo.Resizable} this
8540          * @param {Roo.EventObject} e The mousedown event
8541          */
8542         "beforeresize" : true,
8543         /**
8544          * @event resizing
8545          * Fired a resizing.
8546          * @param {Roo.Resizable} this
8547          * @param {Number} x The new x position
8548          * @param {Number} y The new y position
8549          * @param {Number} w The new w width
8550          * @param {Number} h The new h hight
8551          * @param {Roo.EventObject} e The mouseup event
8552          */
8553         "resizing" : true,
8554         /**
8555          * @event resize
8556          * Fired after a resize.
8557          * @param {Roo.Resizable} this
8558          * @param {Number} width The new width
8559          * @param {Number} height The new height
8560          * @param {Roo.EventObject} e The mouseup event
8561          */
8562         "resize" : true
8563     });
8564
8565     if(this.width !== null && this.height !== null){
8566         this.resizeTo(this.width, this.height);
8567     }else{
8568         this.updateChildSize();
8569     }
8570     if(Roo.isIE){
8571         this.el.dom.style.zoom = 1;
8572     }
8573     Roo.Resizable.superclass.constructor.call(this);
8574 };
8575
8576 Roo.extend(Roo.Resizable, Roo.util.Observable, {
8577         resizeChild : false,
8578         adjustments : [0, 0],
8579         minWidth : 5,
8580         minHeight : 5,
8581         maxWidth : 10000,
8582         maxHeight : 10000,
8583         enabled : true,
8584         animate : false,
8585         duration : .35,
8586         dynamic : false,
8587         handles : false,
8588         multiDirectional : false,
8589         disableTrackOver : false,
8590         easing : 'easeOutStrong',
8591         widthIncrement : 0,
8592         heightIncrement : 0,
8593         pinned : false,
8594         width : null,
8595         height : null,
8596         preserveRatio : false,
8597         transparent: false,
8598         minX: 0,
8599         minY: 0,
8600         draggable: false,
8601
8602         /**
8603          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
8604          */
8605         constrainTo: undefined,
8606         /**
8607          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
8608          */
8609         resizeRegion: undefined,
8610
8611
8612     /**
8613      * Perform a manual resize
8614      * @param {Number} width
8615      * @param {Number} height
8616      */
8617     resizeTo : function(width, height){
8618         this.el.setSize(width, height);
8619         this.updateChildSize();
8620         this.fireEvent("resize", this, width, height, null);
8621     },
8622
8623     // private
8624     startSizing : function(e, handle){
8625         this.fireEvent("beforeresize", this, e);
8626         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
8627
8628             if(!this.overlay){
8629                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
8630                 this.overlay.unselectable();
8631                 this.overlay.enableDisplayMode("block");
8632                 this.overlay.on("mousemove", this.onMouseMove, this);
8633                 this.overlay.on("mouseup", this.onMouseUp, this);
8634             }
8635             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
8636
8637             this.resizing = true;
8638             this.startBox = this.el.getBox();
8639             this.startPoint = e.getXY();
8640             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
8641                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
8642
8643             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8644             this.overlay.show();
8645
8646             if(this.constrainTo) {
8647                 var ct = Roo.get(this.constrainTo);
8648                 this.resizeRegion = ct.getRegion().adjust(
8649                     ct.getFrameWidth('t'),
8650                     ct.getFrameWidth('l'),
8651                     -ct.getFrameWidth('b'),
8652                     -ct.getFrameWidth('r')
8653                 );
8654             }
8655
8656             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
8657             this.proxy.show();
8658             this.proxy.setBox(this.startBox);
8659             if(!this.dynamic){
8660                 this.proxy.setStyle('visibility', 'visible');
8661             }
8662         }
8663     },
8664
8665     // private
8666     onMouseDown : function(handle, e){
8667         if(this.enabled){
8668             e.stopEvent();
8669             this.activeHandle = handle;
8670             this.startSizing(e, handle);
8671         }
8672     },
8673
8674     // private
8675     onMouseUp : function(e){
8676         var size = this.resizeElement();
8677         this.resizing = false;
8678         this.handleOut();
8679         this.overlay.hide();
8680         this.proxy.hide();
8681         this.fireEvent("resize", this, size.width, size.height, e);
8682     },
8683
8684     // private
8685     updateChildSize : function(){
8686         
8687         if(this.resizeChild){
8688             var el = this.el;
8689             var child = this.resizeChild;
8690             var adj = this.adjustments;
8691             if(el.dom.offsetWidth){
8692                 var b = el.getSize(true);
8693                 child.setSize(b.width+adj[0], b.height+adj[1]);
8694             }
8695             // Second call here for IE
8696             // The first call enables instant resizing and
8697             // the second call corrects scroll bars if they
8698             // exist
8699             if(Roo.isIE){
8700                 setTimeout(function(){
8701                     if(el.dom.offsetWidth){
8702                         var b = el.getSize(true);
8703                         child.setSize(b.width+adj[0], b.height+adj[1]);
8704                     }
8705                 }, 10);
8706             }
8707         }
8708     },
8709
8710     // private
8711     snap : function(value, inc, min){
8712         if(!inc || !value) {
8713             return value;
8714         }
8715         var newValue = value;
8716         var m = value % inc;
8717         if(m > 0){
8718             if(m > (inc/2)){
8719                 newValue = value + (inc-m);
8720             }else{
8721                 newValue = value - m;
8722             }
8723         }
8724         return Math.max(min, newValue);
8725     },
8726
8727     // private
8728     resizeElement : function(){
8729         var box = this.proxy.getBox();
8730         if(this.updateBox){
8731             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
8732         }else{
8733             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
8734         }
8735         this.updateChildSize();
8736         if(!this.dynamic){
8737             this.proxy.hide();
8738         }
8739         return box;
8740     },
8741
8742     // private
8743     constrain : function(v, diff, m, mx){
8744         if(v - diff < m){
8745             diff = v - m;
8746         }else if(v - diff > mx){
8747             diff = mx - v;
8748         }
8749         return diff;
8750     },
8751
8752     // private
8753     onMouseMove : function(e){
8754         
8755         if(this.enabled){
8756             try{// try catch so if something goes wrong the user doesn't get hung
8757
8758             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
8759                 return;
8760             }
8761
8762             //var curXY = this.startPoint;
8763             var curSize = this.curSize || this.startBox;
8764             var x = this.startBox.x, y = this.startBox.y;
8765             var ox = x, oy = y;
8766             var w = curSize.width, h = curSize.height;
8767             var ow = w, oh = h;
8768             var mw = this.minWidth, mh = this.minHeight;
8769             var mxw = this.maxWidth, mxh = this.maxHeight;
8770             var wi = this.widthIncrement;
8771             var hi = this.heightIncrement;
8772
8773             var eventXY = e.getXY();
8774             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
8775             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
8776
8777             var pos = this.activeHandle.position;
8778
8779             switch(pos){
8780                 case "east":
8781                     w += diffX;
8782                     w = Math.min(Math.max(mw, w), mxw);
8783                     break;
8784              
8785                 case "south":
8786                     h += diffY;
8787                     h = Math.min(Math.max(mh, h), mxh);
8788                     break;
8789                 case "southeast":
8790                     w += diffX;
8791                     h += diffY;
8792                     w = Math.min(Math.max(mw, w), mxw);
8793                     h = Math.min(Math.max(mh, h), mxh);
8794                     break;
8795                 case "north":
8796                     diffY = this.constrain(h, diffY, mh, mxh);
8797                     y += diffY;
8798                     h -= diffY;
8799                     break;
8800                 case "hdrag":
8801                     
8802                     if (wi) {
8803                         var adiffX = Math.abs(diffX);
8804                         var sub = (adiffX % wi); // how much 
8805                         if (sub > (wi/2)) { // far enough to snap
8806                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
8807                         } else {
8808                             // remove difference.. 
8809                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
8810                         }
8811                     }
8812                     x += diffX;
8813                     x = Math.max(this.minX, x);
8814                     break;
8815                 case "west":
8816                     diffX = this.constrain(w, diffX, mw, mxw);
8817                     x += diffX;
8818                     w -= diffX;
8819                     break;
8820                 case "northeast":
8821                     w += diffX;
8822                     w = Math.min(Math.max(mw, w), mxw);
8823                     diffY = this.constrain(h, diffY, mh, mxh);
8824                     y += diffY;
8825                     h -= diffY;
8826                     break;
8827                 case "northwest":
8828                     diffX = this.constrain(w, diffX, mw, mxw);
8829                     diffY = this.constrain(h, diffY, mh, mxh);
8830                     y += diffY;
8831                     h -= diffY;
8832                     x += diffX;
8833                     w -= diffX;
8834                     break;
8835                case "southwest":
8836                     diffX = this.constrain(w, diffX, mw, mxw);
8837                     h += diffY;
8838                     h = Math.min(Math.max(mh, h), mxh);
8839                     x += diffX;
8840                     w -= diffX;
8841                     break;
8842             }
8843
8844             var sw = this.snap(w, wi, mw);
8845             var sh = this.snap(h, hi, mh);
8846             if(sw != w || sh != h){
8847                 switch(pos){
8848                     case "northeast":
8849                         y -= sh - h;
8850                     break;
8851                     case "north":
8852                         y -= sh - h;
8853                         break;
8854                     case "southwest":
8855                         x -= sw - w;
8856                     break;
8857                     case "west":
8858                         x -= sw - w;
8859                         break;
8860                     case "northwest":
8861                         x -= sw - w;
8862                         y -= sh - h;
8863                     break;
8864                 }
8865                 w = sw;
8866                 h = sh;
8867             }
8868
8869             if(this.preserveRatio){
8870                 switch(pos){
8871                     case "southeast":
8872                     case "east":
8873                         h = oh * (w/ow);
8874                         h = Math.min(Math.max(mh, h), mxh);
8875                         w = ow * (h/oh);
8876                        break;
8877                     case "south":
8878                         w = ow * (h/oh);
8879                         w = Math.min(Math.max(mw, w), mxw);
8880                         h = oh * (w/ow);
8881                         break;
8882                     case "northeast":
8883                         w = ow * (h/oh);
8884                         w = Math.min(Math.max(mw, w), mxw);
8885                         h = oh * (w/ow);
8886                     break;
8887                     case "north":
8888                         var tw = w;
8889                         w = ow * (h/oh);
8890                         w = Math.min(Math.max(mw, w), mxw);
8891                         h = oh * (w/ow);
8892                         x += (tw - w) / 2;
8893                         break;
8894                     case "southwest":
8895                         h = oh * (w/ow);
8896                         h = Math.min(Math.max(mh, h), mxh);
8897                         var tw = w;
8898                         w = ow * (h/oh);
8899                         x += tw - w;
8900                         break;
8901                     case "west":
8902                         var th = h;
8903                         h = oh * (w/ow);
8904                         h = Math.min(Math.max(mh, h), mxh);
8905                         y += (th - h) / 2;
8906                         var tw = w;
8907                         w = ow * (h/oh);
8908                         x += tw - w;
8909                        break;
8910                     case "northwest":
8911                         var tw = w;
8912                         var th = h;
8913                         h = oh * (w/ow);
8914                         h = Math.min(Math.max(mh, h), mxh);
8915                         w = ow * (h/oh);
8916                         y += th - h;
8917                         x += tw - w;
8918                        break;
8919
8920                 }
8921             }
8922             if (pos == 'hdrag') {
8923                 w = ow;
8924             }
8925             this.proxy.setBounds(x, y, w, h);
8926             if(this.dynamic){
8927                 this.resizeElement();
8928             }
8929             }catch(e){}
8930         }
8931         this.fireEvent("resizing", this, x, y, w, h, e);
8932     },
8933
8934     // private
8935     handleOver : function(){
8936         if(this.enabled){
8937             this.el.addClass("x-resizable-over");
8938         }
8939     },
8940
8941     // private
8942     handleOut : function(){
8943         if(!this.resizing){
8944             this.el.removeClass("x-resizable-over");
8945         }
8946     },
8947
8948     /**
8949      * Returns the element this component is bound to.
8950      * @return {Roo.Element}
8951      */
8952     getEl : function(){
8953         return this.el;
8954     },
8955
8956     /**
8957      * Returns the resizeChild element (or null).
8958      * @return {Roo.Element}
8959      */
8960     getResizeChild : function(){
8961         return this.resizeChild;
8962     },
8963     groupHandler : function()
8964     {
8965         
8966     },
8967     /**
8968      * Destroys this resizable. If the element was wrapped and
8969      * removeEl is not true then the element remains.
8970      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
8971      */
8972     destroy : function(removeEl){
8973         this.proxy.remove();
8974         if(this.overlay){
8975             this.overlay.removeAllListeners();
8976             this.overlay.remove();
8977         }
8978         var ps = Roo.Resizable.positions;
8979         for(var k in ps){
8980             if(typeof ps[k] != "function" && this[ps[k]]){
8981                 var h = this[ps[k]];
8982                 h.el.removeAllListeners();
8983                 h.el.remove();
8984             }
8985         }
8986         if(removeEl){
8987             this.el.update("");
8988             this.el.remove();
8989         }
8990     }
8991 });
8992
8993 // private
8994 // hash to map config positions to true positions
8995 Roo.Resizable.positions = {
8996     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
8997     hd: "hdrag"
8998 };
8999
9000 // private
9001 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
9002     if(!this.tpl){
9003         // only initialize the template if resizable is used
9004         var tpl = Roo.DomHelper.createTemplate(
9005             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
9006         );
9007         tpl.compile();
9008         Roo.Resizable.Handle.prototype.tpl = tpl;
9009     }
9010     this.position = pos;
9011     this.rz = rz;
9012     // show north drag fro topdra
9013     var handlepos = pos == 'hdrag' ? 'north' : pos;
9014     
9015     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
9016     if (pos == 'hdrag') {
9017         this.el.setStyle('cursor', 'pointer');
9018     }
9019     this.el.unselectable();
9020     if(transparent){
9021         this.el.setOpacity(0);
9022     }
9023     this.el.on("mousedown", this.onMouseDown, this);
9024     if(!disableTrackOver){
9025         this.el.on("mouseover", this.onMouseOver, this);
9026         this.el.on("mouseout", this.onMouseOut, this);
9027     }
9028 };
9029
9030 // private
9031 Roo.Resizable.Handle.prototype = {
9032     afterResize : function(rz){
9033         Roo.log('after?');
9034         // do nothing
9035     },
9036     // private
9037     onMouseDown : function(e){
9038         this.rz.onMouseDown(this, e);
9039     },
9040     // private
9041     onMouseOver : function(e){
9042         this.rz.handleOver(this, e);
9043     },
9044     // private
9045     onMouseOut : function(e){
9046         this.rz.handleOut(this, e);
9047     }
9048 };/*
9049  * Based on:
9050  * Ext JS Library 1.1.1
9051  * Copyright(c) 2006-2007, Ext JS, LLC.
9052  *
9053  * Originally Released Under LGPL - original licence link has changed is not relivant.
9054  *
9055  * Fork - LGPL
9056  * <script type="text/javascript">
9057  */
9058
9059 /**
9060  * @class Roo.Editor
9061  * @extends Roo.Component
9062  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
9063  * @constructor
9064  * Create a new Editor
9065  * @param {Roo.form.Field} field The Field object (or descendant)
9066  * @param {Object} config The config object
9067  */
9068 Roo.Editor = function(field, config){
9069     Roo.Editor.superclass.constructor.call(this, config);
9070     this.field = field;
9071     this.addEvents({
9072         /**
9073              * @event beforestartedit
9074              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
9075              * false from the handler of this event.
9076              * @param {Editor} this
9077              * @param {Roo.Element} boundEl The underlying element bound to this editor
9078              * @param {Mixed} value The field value being set
9079              */
9080         "beforestartedit" : true,
9081         /**
9082              * @event startedit
9083              * Fires when this editor is displayed
9084              * @param {Roo.Element} boundEl The underlying element bound to this editor
9085              * @param {Mixed} value The starting field value
9086              */
9087         "startedit" : true,
9088         /**
9089              * @event beforecomplete
9090              * Fires after a change has been made to the field, but before the change is reflected in the underlying
9091              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
9092              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
9093              * event will not fire since no edit actually occurred.
9094              * @param {Editor} this
9095              * @param {Mixed} value The current field value
9096              * @param {Mixed} startValue The original field value
9097              */
9098         "beforecomplete" : true,
9099         /**
9100              * @event complete
9101              * Fires after editing is complete and any changed value has been written to the underlying field.
9102              * @param {Editor} this
9103              * @param {Mixed} value The current field value
9104              * @param {Mixed} startValue The original field value
9105              */
9106         "complete" : true,
9107         /**
9108          * @event specialkey
9109          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9110          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9111          * @param {Roo.form.Field} this
9112          * @param {Roo.EventObject} e The event object
9113          */
9114         "specialkey" : true
9115     });
9116 };
9117
9118 Roo.extend(Roo.Editor, Roo.Component, {
9119     /**
9120      * @cfg {Boolean/String} autosize
9121      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
9122      * or "height" to adopt the height only (defaults to false)
9123      */
9124     /**
9125      * @cfg {Boolean} revertInvalid
9126      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
9127      * validation fails (defaults to true)
9128      */
9129     /**
9130      * @cfg {Boolean} ignoreNoChange
9131      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
9132      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
9133      * will never be ignored.
9134      */
9135     /**
9136      * @cfg {Boolean} hideEl
9137      * False to keep the bound element visible while the editor is displayed (defaults to true)
9138      */
9139     /**
9140      * @cfg {Mixed} value
9141      * The data value of the underlying field (defaults to "")
9142      */
9143     value : "",
9144     /**
9145      * @cfg {String} alignment
9146      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
9147      */
9148     alignment: "c-c?",
9149     /**
9150      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
9151      * for bottom-right shadow (defaults to "frame")
9152      */
9153     shadow : "frame",
9154     /**
9155      * @cfg {Boolean} constrain True to constrain the editor to the viewport
9156      */
9157     constrain : false,
9158     /**
9159      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
9160      */
9161     completeOnEnter : false,
9162     /**
9163      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
9164      */
9165     cancelOnEsc : false,
9166     /**
9167      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
9168      */
9169     updateEl : false,
9170
9171     // private
9172     onRender : function(ct, position){
9173         this.el = new Roo.Layer({
9174             shadow: this.shadow,
9175             cls: "x-editor",
9176             parentEl : ct,
9177             shim : this.shim,
9178             shadowOffset:4,
9179             id: this.id,
9180             constrain: this.constrain
9181         });
9182         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
9183         if(this.field.msgTarget != 'title'){
9184             this.field.msgTarget = 'qtip';
9185         }
9186         this.field.render(this.el);
9187         if(Roo.isGecko){
9188             this.field.el.dom.setAttribute('autocomplete', 'off');
9189         }
9190         this.field.on("specialkey", this.onSpecialKey, this);
9191         if(this.swallowKeys){
9192             this.field.el.swallowEvent(['keydown','keypress']);
9193         }
9194         this.field.show();
9195         this.field.on("blur", this.onBlur, this);
9196         if(this.field.grow){
9197             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
9198         }
9199     },
9200
9201     onSpecialKey : function(field, e)
9202     {
9203         //Roo.log('editor onSpecialKey');
9204         if(this.completeOnEnter && e.getKey() == e.ENTER){
9205             e.stopEvent();
9206             this.completeEdit();
9207             return;
9208         }
9209         // do not fire special key otherwise it might hide close the editor...
9210         if(e.getKey() == e.ENTER){    
9211             return;
9212         }
9213         if(this.cancelOnEsc && e.getKey() == e.ESC){
9214             this.cancelEdit();
9215             return;
9216         } 
9217         this.fireEvent('specialkey', field, e);
9218     
9219     },
9220
9221     /**
9222      * Starts the editing process and shows the editor.
9223      * @param {String/HTMLElement/Element} el The element to edit
9224      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
9225       * to the innerHTML of el.
9226      */
9227     startEdit : function(el, value){
9228         if(this.editing){
9229             this.completeEdit();
9230         }
9231         this.boundEl = Roo.get(el);
9232         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
9233         if(!this.rendered){
9234             this.render(this.parentEl || document.body);
9235         }
9236         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
9237             return;
9238         }
9239         this.startValue = v;
9240         this.field.setValue(v);
9241         if(this.autoSize){
9242             var sz = this.boundEl.getSize();
9243             switch(this.autoSize){
9244                 case "width":
9245                 this.setSize(sz.width,  "");
9246                 break;
9247                 case "height":
9248                 this.setSize("",  sz.height);
9249                 break;
9250                 default:
9251                 this.setSize(sz.width,  sz.height);
9252             }
9253         }
9254         this.el.alignTo(this.boundEl, this.alignment);
9255         this.editing = true;
9256         if(Roo.QuickTips){
9257             Roo.QuickTips.disable();
9258         }
9259         this.show();
9260     },
9261
9262     /**
9263      * Sets the height and width of this editor.
9264      * @param {Number} width The new width
9265      * @param {Number} height The new height
9266      */
9267     setSize : function(w, h){
9268         this.field.setSize(w, h);
9269         if(this.el){
9270             this.el.sync();
9271         }
9272     },
9273
9274     /**
9275      * Realigns the editor to the bound field based on the current alignment config value.
9276      */
9277     realign : function(){
9278         this.el.alignTo(this.boundEl, this.alignment);
9279     },
9280
9281     /**
9282      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
9283      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
9284      */
9285     completeEdit : function(remainVisible){
9286         if(!this.editing){
9287             return;
9288         }
9289         var v = this.getValue();
9290         if(this.revertInvalid !== false && !this.field.isValid()){
9291             v = this.startValue;
9292             this.cancelEdit(true);
9293         }
9294         if(String(v) === String(this.startValue) && this.ignoreNoChange){
9295             this.editing = false;
9296             this.hide();
9297             return;
9298         }
9299         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
9300             this.editing = false;
9301             if(this.updateEl && this.boundEl){
9302                 this.boundEl.update(v);
9303             }
9304             if(remainVisible !== true){
9305                 this.hide();
9306             }
9307             this.fireEvent("complete", this, v, this.startValue);
9308         }
9309     },
9310
9311     // private
9312     onShow : function(){
9313         this.el.show();
9314         if(this.hideEl !== false){
9315             this.boundEl.hide();
9316         }
9317         this.field.show();
9318         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
9319             this.fixIEFocus = true;
9320             this.deferredFocus.defer(50, this);
9321         }else{
9322             this.field.focus();
9323         }
9324         this.fireEvent("startedit", this.boundEl, this.startValue);
9325     },
9326
9327     deferredFocus : function(){
9328         if(this.editing){
9329             this.field.focus();
9330         }
9331     },
9332
9333     /**
9334      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
9335      * reverted to the original starting value.
9336      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
9337      * cancel (defaults to false)
9338      */
9339     cancelEdit : function(remainVisible){
9340         if(this.editing){
9341             this.setValue(this.startValue);
9342             if(remainVisible !== true){
9343                 this.hide();
9344             }
9345         }
9346     },
9347
9348     // private
9349     onBlur : function(){
9350         if(this.allowBlur !== true && this.editing){
9351             this.completeEdit();
9352         }
9353     },
9354
9355     // private
9356     onHide : function(){
9357         if(this.editing){
9358             this.completeEdit();
9359             return;
9360         }
9361         this.field.blur();
9362         if(this.field.collapse){
9363             this.field.collapse();
9364         }
9365         this.el.hide();
9366         if(this.hideEl !== false){
9367             this.boundEl.show();
9368         }
9369         if(Roo.QuickTips){
9370             Roo.QuickTips.enable();
9371         }
9372     },
9373
9374     /**
9375      * Sets the data value of the editor
9376      * @param {Mixed} value Any valid value supported by the underlying field
9377      */
9378     setValue : function(v){
9379         this.field.setValue(v);
9380     },
9381
9382     /**
9383      * Gets the data value of the editor
9384      * @return {Mixed} The data value
9385      */
9386     getValue : function(){
9387         return this.field.getValue();
9388     }
9389 });/*
9390  * Based on:
9391  * Ext JS Library 1.1.1
9392  * Copyright(c) 2006-2007, Ext JS, LLC.
9393  *
9394  * Originally Released Under LGPL - original licence link has changed is not relivant.
9395  *
9396  * Fork - LGPL
9397  * <script type="text/javascript">
9398  */
9399  
9400 /**
9401  * @class Roo.BasicDialog
9402  * @extends Roo.util.Observable
9403  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
9404  * <pre><code>
9405 var dlg = new Roo.BasicDialog("my-dlg", {
9406     height: 200,
9407     width: 300,
9408     minHeight: 100,
9409     minWidth: 150,
9410     modal: true,
9411     proxyDrag: true,
9412     shadow: true
9413 });
9414 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
9415 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
9416 dlg.addButton('Cancel', dlg.hide, dlg);
9417 dlg.show();
9418 </code></pre>
9419   <b>A Dialog should always be a direct child of the body element.</b>
9420  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
9421  * @cfg {String} title Default text to display in the title bar (defaults to null)
9422  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9423  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9424  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
9425  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
9426  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
9427  * (defaults to null with no animation)
9428  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
9429  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
9430  * property for valid values (defaults to 'all')
9431  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
9432  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
9433  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
9434  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
9435  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
9436  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
9437  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
9438  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
9439  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
9440  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
9441  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
9442  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
9443  * draggable = true (defaults to false)
9444  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
9445  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
9446  * shadow (defaults to false)
9447  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
9448  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
9449  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
9450  * @cfg {Array} buttons Array of buttons
9451  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
9452  * @constructor
9453  * Create a new BasicDialog.
9454  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
9455  * @param {Object} config Configuration options
9456  */
9457 Roo.BasicDialog = function(el, config){
9458     this.el = Roo.get(el);
9459     var dh = Roo.DomHelper;
9460     if(!this.el && config && config.autoCreate){
9461         if(typeof config.autoCreate == "object"){
9462             if(!config.autoCreate.id){
9463                 config.autoCreate.id = el;
9464             }
9465             this.el = dh.append(document.body,
9466                         config.autoCreate, true);
9467         }else{
9468             this.el = dh.append(document.body,
9469                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
9470         }
9471     }
9472     el = this.el;
9473     el.setDisplayed(true);
9474     el.hide = this.hideAction;
9475     this.id = el.id;
9476     el.addClass("x-dlg");
9477
9478     Roo.apply(this, config);
9479
9480     this.proxy = el.createProxy("x-dlg-proxy");
9481     this.proxy.hide = this.hideAction;
9482     this.proxy.setOpacity(.5);
9483     this.proxy.hide();
9484
9485     if(config.width){
9486         el.setWidth(config.width);
9487     }
9488     if(config.height){
9489         el.setHeight(config.height);
9490     }
9491     this.size = el.getSize();
9492     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
9493         this.xy = [config.x,config.y];
9494     }else{
9495         this.xy = el.getCenterXY(true);
9496     }
9497     /** The header element @type Roo.Element */
9498     this.header = el.child("> .x-dlg-hd");
9499     /** The body element @type Roo.Element */
9500     this.body = el.child("> .x-dlg-bd");
9501     /** The footer element @type Roo.Element */
9502     this.footer = el.child("> .x-dlg-ft");
9503
9504     if(!this.header){
9505         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
9506     }
9507     if(!this.body){
9508         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
9509     }
9510
9511     this.header.unselectable();
9512     if(this.title){
9513         this.header.update(this.title);
9514     }
9515     // this element allows the dialog to be focused for keyboard event
9516     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
9517     this.focusEl.swallowEvent("click", true);
9518
9519     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
9520
9521     // wrap the body and footer for special rendering
9522     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
9523     if(this.footer){
9524         this.bwrap.dom.appendChild(this.footer.dom);
9525     }
9526
9527     this.bg = this.el.createChild({
9528         tag: "div", cls:"x-dlg-bg",
9529         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
9530     });
9531     this.centerBg = this.bg.child("div.x-dlg-bg-center");
9532
9533
9534     if(this.autoScroll !== false && !this.autoTabs){
9535         this.body.setStyle("overflow", "auto");
9536     }
9537
9538     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
9539
9540     if(this.closable !== false){
9541         this.el.addClass("x-dlg-closable");
9542         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
9543         this.close.on("click", this.closeClick, this);
9544         this.close.addClassOnOver("x-dlg-close-over");
9545     }
9546     if(this.collapsible !== false){
9547         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
9548         this.collapseBtn.on("click", this.collapseClick, this);
9549         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
9550         this.header.on("dblclick", this.collapseClick, this);
9551     }
9552     if(this.resizable !== false){
9553         this.el.addClass("x-dlg-resizable");
9554         this.resizer = new Roo.Resizable(el, {
9555             minWidth: this.minWidth || 80,
9556             minHeight:this.minHeight || 80,
9557             handles: this.resizeHandles || "all",
9558             pinned: true
9559         });
9560         this.resizer.on("beforeresize", this.beforeResize, this);
9561         this.resizer.on("resize", this.onResize, this);
9562     }
9563     if(this.draggable !== false){
9564         el.addClass("x-dlg-draggable");
9565         if (!this.proxyDrag) {
9566             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
9567         }
9568         else {
9569             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
9570         }
9571         dd.setHandleElId(this.header.id);
9572         dd.endDrag = this.endMove.createDelegate(this);
9573         dd.startDrag = this.startMove.createDelegate(this);
9574         dd.onDrag = this.onDrag.createDelegate(this);
9575         dd.scroll = false;
9576         this.dd = dd;
9577     }
9578     if(this.modal){
9579         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
9580         this.mask.enableDisplayMode("block");
9581         this.mask.hide();
9582         this.el.addClass("x-dlg-modal");
9583     }
9584     if(this.shadow){
9585         this.shadow = new Roo.Shadow({
9586             mode : typeof this.shadow == "string" ? this.shadow : "sides",
9587             offset : this.shadowOffset
9588         });
9589     }else{
9590         this.shadowOffset = 0;
9591     }
9592     if(Roo.useShims && this.shim !== false){
9593         this.shim = this.el.createShim();
9594         this.shim.hide = this.hideAction;
9595         this.shim.hide();
9596     }else{
9597         this.shim = false;
9598     }
9599     if(this.autoTabs){
9600         this.initTabs();
9601     }
9602     if (this.buttons) { 
9603         var bts= this.buttons;
9604         this.buttons = [];
9605         Roo.each(bts, function(b) {
9606             this.addButton(b);
9607         }, this);
9608     }
9609     
9610     
9611     this.addEvents({
9612         /**
9613          * @event keydown
9614          * Fires when a key is pressed
9615          * @param {Roo.BasicDialog} this
9616          * @param {Roo.EventObject} e
9617          */
9618         "keydown" : true,
9619         /**
9620          * @event move
9621          * Fires when this dialog is moved by the user.
9622          * @param {Roo.BasicDialog} this
9623          * @param {Number} x The new page X
9624          * @param {Number} y The new page Y
9625          */
9626         "move" : true,
9627         /**
9628          * @event resize
9629          * Fires when this dialog is resized by the user.
9630          * @param {Roo.BasicDialog} this
9631          * @param {Number} width The new width
9632          * @param {Number} height The new height
9633          */
9634         "resize" : true,
9635         /**
9636          * @event beforehide
9637          * Fires before this dialog is hidden.
9638          * @param {Roo.BasicDialog} this
9639          */
9640         "beforehide" : true,
9641         /**
9642          * @event hide
9643          * Fires when this dialog is hidden.
9644          * @param {Roo.BasicDialog} this
9645          */
9646         "hide" : true,
9647         /**
9648          * @event beforeshow
9649          * Fires before this dialog is shown.
9650          * @param {Roo.BasicDialog} this
9651          */
9652         "beforeshow" : true,
9653         /**
9654          * @event show
9655          * Fires when this dialog is shown.
9656          * @param {Roo.BasicDialog} this
9657          */
9658         "show" : true
9659     });
9660     el.on("keydown", this.onKeyDown, this);
9661     el.on("mousedown", this.toFront, this);
9662     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
9663     this.el.hide();
9664     Roo.DialogManager.register(this);
9665     Roo.BasicDialog.superclass.constructor.call(this);
9666 };
9667
9668 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
9669     shadowOffset: Roo.isIE ? 6 : 5,
9670     minHeight: 80,
9671     minWidth: 200,
9672     minButtonWidth: 75,
9673     defaultButton: null,
9674     buttonAlign: "right",
9675     tabTag: 'div',
9676     firstShow: true,
9677
9678     /**
9679      * Sets the dialog title text
9680      * @param {String} text The title text to display
9681      * @return {Roo.BasicDialog} this
9682      */
9683     setTitle : function(text){
9684         this.header.update(text);
9685         return this;
9686     },
9687
9688     // private
9689     closeClick : function(){
9690         this.hide();
9691     },
9692
9693     // private
9694     collapseClick : function(){
9695         this[this.collapsed ? "expand" : "collapse"]();
9696     },
9697
9698     /**
9699      * Collapses the dialog to its minimized state (only the title bar is visible).
9700      * Equivalent to the user clicking the collapse dialog button.
9701      */
9702     collapse : function(){
9703         if(!this.collapsed){
9704             this.collapsed = true;
9705             this.el.addClass("x-dlg-collapsed");
9706             this.restoreHeight = this.el.getHeight();
9707             this.resizeTo(this.el.getWidth(), this.header.getHeight());
9708         }
9709     },
9710
9711     /**
9712      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
9713      * clicking the expand dialog button.
9714      */
9715     expand : function(){
9716         if(this.collapsed){
9717             this.collapsed = false;
9718             this.el.removeClass("x-dlg-collapsed");
9719             this.resizeTo(this.el.getWidth(), this.restoreHeight);
9720         }
9721     },
9722
9723     /**
9724      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
9725      * @return {Roo.TabPanel} The tabs component
9726      */
9727     initTabs : function(){
9728         var tabs = this.getTabs();
9729         while(tabs.getTab(0)){
9730             tabs.removeTab(0);
9731         }
9732         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
9733             var dom = el.dom;
9734             tabs.addTab(Roo.id(dom), dom.title);
9735             dom.title = "";
9736         });
9737         tabs.activate(0);
9738         return tabs;
9739     },
9740
9741     // private
9742     beforeResize : function(){
9743         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
9744     },
9745
9746     // private
9747     onResize : function(){
9748         this.refreshSize();
9749         this.syncBodyHeight();
9750         this.adjustAssets();
9751         this.focus();
9752         this.fireEvent("resize", this, this.size.width, this.size.height);
9753     },
9754
9755     // private
9756     onKeyDown : function(e){
9757         if(this.isVisible()){
9758             this.fireEvent("keydown", this, e);
9759         }
9760     },
9761
9762     /**
9763      * Resizes the dialog.
9764      * @param {Number} width
9765      * @param {Number} height
9766      * @return {Roo.BasicDialog} this
9767      */
9768     resizeTo : function(width, height){
9769         this.el.setSize(width, height);
9770         this.size = {width: width, height: height};
9771         this.syncBodyHeight();
9772         if(this.fixedcenter){
9773             this.center();
9774         }
9775         if(this.isVisible()){
9776             this.constrainXY();
9777             this.adjustAssets();
9778         }
9779         this.fireEvent("resize", this, width, height);
9780         return this;
9781     },
9782
9783
9784     /**
9785      * Resizes the dialog to fit the specified content size.
9786      * @param {Number} width
9787      * @param {Number} height
9788      * @return {Roo.BasicDialog} this
9789      */
9790     setContentSize : function(w, h){
9791         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
9792         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
9793         //if(!this.el.isBorderBox()){
9794             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
9795             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
9796         //}
9797         if(this.tabs){
9798             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
9799             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
9800         }
9801         this.resizeTo(w, h);
9802         return this;
9803     },
9804
9805     /**
9806      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
9807      * executed in response to a particular key being pressed while the dialog is active.
9808      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
9809      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9810      * @param {Function} fn The function to call
9811      * @param {Object} scope (optional) The scope of the function
9812      * @return {Roo.BasicDialog} this
9813      */
9814     addKeyListener : function(key, fn, scope){
9815         var keyCode, shift, ctrl, alt;
9816         if(typeof key == "object" && !(key instanceof Array)){
9817             keyCode = key["key"];
9818             shift = key["shift"];
9819             ctrl = key["ctrl"];
9820             alt = key["alt"];
9821         }else{
9822             keyCode = key;
9823         }
9824         var handler = function(dlg, e){
9825             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
9826                 var k = e.getKey();
9827                 if(keyCode instanceof Array){
9828                     for(var i = 0, len = keyCode.length; i < len; i++){
9829                         if(keyCode[i] == k){
9830                           fn.call(scope || window, dlg, k, e);
9831                           return;
9832                         }
9833                     }
9834                 }else{
9835                     if(k == keyCode){
9836                         fn.call(scope || window, dlg, k, e);
9837                     }
9838                 }
9839             }
9840         };
9841         this.on("keydown", handler);
9842         return this;
9843     },
9844
9845     /**
9846      * Returns the TabPanel component (creates it if it doesn't exist).
9847      * Note: If you wish to simply check for the existence of tabs without creating them,
9848      * check for a null 'tabs' property.
9849      * @return {Roo.TabPanel} The tabs component
9850      */
9851     getTabs : function(){
9852         if(!this.tabs){
9853             this.el.addClass("x-dlg-auto-tabs");
9854             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
9855             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
9856         }
9857         return this.tabs;
9858     },
9859
9860     /**
9861      * Adds a button to the footer section of the dialog.
9862      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
9863      * object or a valid Roo.DomHelper element config
9864      * @param {Function} handler The function called when the button is clicked
9865      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
9866      * @return {Roo.Button} The new button
9867      */
9868     addButton : function(config, handler, scope){
9869         var dh = Roo.DomHelper;
9870         if(!this.footer){
9871             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
9872         }
9873         if(!this.btnContainer){
9874             var tb = this.footer.createChild({
9875
9876                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
9877                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
9878             }, null, true);
9879             this.btnContainer = tb.firstChild.firstChild.firstChild;
9880         }
9881         var bconfig = {
9882             handler: handler,
9883             scope: scope,
9884             minWidth: this.minButtonWidth,
9885             hideParent:true
9886         };
9887         if(typeof config == "string"){
9888             bconfig.text = config;
9889         }else{
9890             if(config.tag){
9891                 bconfig.dhconfig = config;
9892             }else{
9893                 Roo.apply(bconfig, config);
9894             }
9895         }
9896         var fc = false;
9897         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
9898             bconfig.position = Math.max(0, bconfig.position);
9899             fc = this.btnContainer.childNodes[bconfig.position];
9900         }
9901          
9902         var btn = new Roo.Button(
9903             fc ? 
9904                 this.btnContainer.insertBefore(document.createElement("td"),fc)
9905                 : this.btnContainer.appendChild(document.createElement("td")),
9906             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
9907             bconfig
9908         );
9909         this.syncBodyHeight();
9910         if(!this.buttons){
9911             /**
9912              * Array of all the buttons that have been added to this dialog via addButton
9913              * @type Array
9914              */
9915             this.buttons = [];
9916         }
9917         this.buttons.push(btn);
9918         return btn;
9919     },
9920
9921     /**
9922      * Sets the default button to be focused when the dialog is displayed.
9923      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
9924      * @return {Roo.BasicDialog} this
9925      */
9926     setDefaultButton : function(btn){
9927         this.defaultButton = btn;
9928         return this;
9929     },
9930
9931     // private
9932     getHeaderFooterHeight : function(safe){
9933         var height = 0;
9934         if(this.header){
9935            height += this.header.getHeight();
9936         }
9937         if(this.footer){
9938            var fm = this.footer.getMargins();
9939             height += (this.footer.getHeight()+fm.top+fm.bottom);
9940         }
9941         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
9942         height += this.centerBg.getPadding("tb");
9943         return height;
9944     },
9945
9946     // private
9947     syncBodyHeight : function()
9948     {
9949         var bd = this.body, // the text
9950             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
9951             bw = this.bwrap;
9952         var height = this.size.height - this.getHeaderFooterHeight(false);
9953         bd.setHeight(height-bd.getMargins("tb"));
9954         var hh = this.header.getHeight();
9955         var h = this.size.height-hh;
9956         cb.setHeight(h);
9957         
9958         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
9959         bw.setHeight(h-cb.getPadding("tb"));
9960         
9961         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
9962         bd.setWidth(bw.getWidth(true));
9963         if(this.tabs){
9964             this.tabs.syncHeight();
9965             if(Roo.isIE){
9966                 this.tabs.el.repaint();
9967             }
9968         }
9969     },
9970
9971     /**
9972      * Restores the previous state of the dialog if Roo.state is configured.
9973      * @return {Roo.BasicDialog} this
9974      */
9975     restoreState : function(){
9976         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
9977         if(box && box.width){
9978             this.xy = [box.x, box.y];
9979             this.resizeTo(box.width, box.height);
9980         }
9981         return this;
9982     },
9983
9984     // private
9985     beforeShow : function(){
9986         this.expand();
9987         if(this.fixedcenter){
9988             this.xy = this.el.getCenterXY(true);
9989         }
9990         if(this.modal){
9991             Roo.get(document.body).addClass("x-body-masked");
9992             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9993             this.mask.show();
9994         }
9995         this.constrainXY();
9996     },
9997
9998     // private
9999     animShow : function(){
10000         var b = Roo.get(this.animateTarget).getBox();
10001         this.proxy.setSize(b.width, b.height);
10002         this.proxy.setLocation(b.x, b.y);
10003         this.proxy.show();
10004         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
10005                     true, .35, this.showEl.createDelegate(this));
10006     },
10007
10008     /**
10009      * Shows the dialog.
10010      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
10011      * @return {Roo.BasicDialog} this
10012      */
10013     show : function(animateTarget){
10014         if (this.fireEvent("beforeshow", this) === false){
10015             return;
10016         }
10017         if(this.syncHeightBeforeShow){
10018             this.syncBodyHeight();
10019         }else if(this.firstShow){
10020             this.firstShow = false;
10021             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
10022         }
10023         this.animateTarget = animateTarget || this.animateTarget;
10024         if(!this.el.isVisible()){
10025             this.beforeShow();
10026             if(this.animateTarget && Roo.get(this.animateTarget)){
10027                 this.animShow();
10028             }else{
10029                 this.showEl();
10030             }
10031         }
10032         return this;
10033     },
10034
10035     // private
10036     showEl : function(){
10037         this.proxy.hide();
10038         this.el.setXY(this.xy);
10039         this.el.show();
10040         this.adjustAssets(true);
10041         this.toFront();
10042         this.focus();
10043         // IE peekaboo bug - fix found by Dave Fenwick
10044         if(Roo.isIE){
10045             this.el.repaint();
10046         }
10047         this.fireEvent("show", this);
10048     },
10049
10050     /**
10051      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
10052      * dialog itself will receive focus.
10053      */
10054     focus : function(){
10055         if(this.defaultButton){
10056             this.defaultButton.focus();
10057         }else{
10058             this.focusEl.focus();
10059         }
10060     },
10061
10062     // private
10063     constrainXY : function(){
10064         if(this.constraintoviewport !== false){
10065             if(!this.viewSize){
10066                 if(this.container){
10067                     var s = this.container.getSize();
10068                     this.viewSize = [s.width, s.height];
10069                 }else{
10070                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
10071                 }
10072             }
10073             var s = Roo.get(this.container||document).getScroll();
10074
10075             var x = this.xy[0], y = this.xy[1];
10076             var w = this.size.width, h = this.size.height;
10077             var vw = this.viewSize[0], vh = this.viewSize[1];
10078             // only move it if it needs it
10079             var moved = false;
10080             // first validate right/bottom
10081             if(x + w > vw+s.left){
10082                 x = vw - w;
10083                 moved = true;
10084             }
10085             if(y + h > vh+s.top){
10086                 y = vh - h;
10087                 moved = true;
10088             }
10089             // then make sure top/left isn't negative
10090             if(x < s.left){
10091                 x = s.left;
10092                 moved = true;
10093             }
10094             if(y < s.top){
10095                 y = s.top;
10096                 moved = true;
10097             }
10098             if(moved){
10099                 // cache xy
10100                 this.xy = [x, y];
10101                 if(this.isVisible()){
10102                     this.el.setLocation(x, y);
10103                     this.adjustAssets();
10104                 }
10105             }
10106         }
10107     },
10108
10109     // private
10110     onDrag : function(){
10111         if(!this.proxyDrag){
10112             this.xy = this.el.getXY();
10113             this.adjustAssets();
10114         }
10115     },
10116
10117     // private
10118     adjustAssets : function(doShow){
10119         var x = this.xy[0], y = this.xy[1];
10120         var w = this.size.width, h = this.size.height;
10121         if(doShow === true){
10122             if(this.shadow){
10123                 this.shadow.show(this.el);
10124             }
10125             if(this.shim){
10126                 this.shim.show();
10127             }
10128         }
10129         if(this.shadow && this.shadow.isVisible()){
10130             this.shadow.show(this.el);
10131         }
10132         if(this.shim && this.shim.isVisible()){
10133             this.shim.setBounds(x, y, w, h);
10134         }
10135     },
10136
10137     // private
10138     adjustViewport : function(w, h){
10139         if(!w || !h){
10140             w = Roo.lib.Dom.getViewWidth();
10141             h = Roo.lib.Dom.getViewHeight();
10142         }
10143         // cache the size
10144         this.viewSize = [w, h];
10145         if(this.modal && this.mask.isVisible()){
10146             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
10147             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
10148         }
10149         if(this.isVisible()){
10150             this.constrainXY();
10151         }
10152     },
10153
10154     /**
10155      * Destroys this dialog and all its supporting elements (including any tabs, shim,
10156      * shadow, proxy, mask, etc.)  Also removes all event listeners.
10157      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
10158      */
10159     destroy : function(removeEl){
10160         if(this.isVisible()){
10161             this.animateTarget = null;
10162             this.hide();
10163         }
10164         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
10165         if(this.tabs){
10166             this.tabs.destroy(removeEl);
10167         }
10168         Roo.destroy(
10169              this.shim,
10170              this.proxy,
10171              this.resizer,
10172              this.close,
10173              this.mask
10174         );
10175         if(this.dd){
10176             this.dd.unreg();
10177         }
10178         if(this.buttons){
10179            for(var i = 0, len = this.buttons.length; i < len; i++){
10180                this.buttons[i].destroy();
10181            }
10182         }
10183         this.el.removeAllListeners();
10184         if(removeEl === true){
10185             this.el.update("");
10186             this.el.remove();
10187         }
10188         Roo.DialogManager.unregister(this);
10189     },
10190
10191     // private
10192     startMove : function(){
10193         if(this.proxyDrag){
10194             this.proxy.show();
10195         }
10196         if(this.constraintoviewport !== false){
10197             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
10198         }
10199     },
10200
10201     // private
10202     endMove : function(){
10203         if(!this.proxyDrag){
10204             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
10205         }else{
10206             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
10207             this.proxy.hide();
10208         }
10209         this.refreshSize();
10210         this.adjustAssets();
10211         this.focus();
10212         this.fireEvent("move", this, this.xy[0], this.xy[1]);
10213     },
10214
10215     /**
10216      * Brings this dialog to the front of any other visible dialogs
10217      * @return {Roo.BasicDialog} this
10218      */
10219     toFront : function(){
10220         Roo.DialogManager.bringToFront(this);
10221         return this;
10222     },
10223
10224     /**
10225      * Sends this dialog to the back (under) of any other visible dialogs
10226      * @return {Roo.BasicDialog} this
10227      */
10228     toBack : function(){
10229         Roo.DialogManager.sendToBack(this);
10230         return this;
10231     },
10232
10233     /**
10234      * Centers this dialog in the viewport
10235      * @return {Roo.BasicDialog} this
10236      */
10237     center : function(){
10238         var xy = this.el.getCenterXY(true);
10239         this.moveTo(xy[0], xy[1]);
10240         return this;
10241     },
10242
10243     /**
10244      * Moves the dialog's top-left corner to the specified point
10245      * @param {Number} x
10246      * @param {Number} y
10247      * @return {Roo.BasicDialog} this
10248      */
10249     moveTo : function(x, y){
10250         this.xy = [x,y];
10251         if(this.isVisible()){
10252             this.el.setXY(this.xy);
10253             this.adjustAssets();
10254         }
10255         return this;
10256     },
10257
10258     /**
10259      * Aligns the dialog to the specified element
10260      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10261      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
10262      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10263      * @return {Roo.BasicDialog} this
10264      */
10265     alignTo : function(element, position, offsets){
10266         this.xy = this.el.getAlignToXY(element, position, offsets);
10267         if(this.isVisible()){
10268             this.el.setXY(this.xy);
10269             this.adjustAssets();
10270         }
10271         return this;
10272     },
10273
10274     /**
10275      * Anchors an element to another element and realigns it when the window is resized.
10276      * @param {String/HTMLElement/Roo.Element} element The element to align to.
10277      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
10278      * @param {Array} offsets (optional) Offset the positioning by [x, y]
10279      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
10280      * is a number, it is used as the buffer delay (defaults to 50ms).
10281      * @return {Roo.BasicDialog} this
10282      */
10283     anchorTo : function(el, alignment, offsets, monitorScroll){
10284         var action = function(){
10285             this.alignTo(el, alignment, offsets);
10286         };
10287         Roo.EventManager.onWindowResize(action, this);
10288         var tm = typeof monitorScroll;
10289         if(tm != 'undefined'){
10290             Roo.EventManager.on(window, 'scroll', action, this,
10291                 {buffer: tm == 'number' ? monitorScroll : 50});
10292         }
10293         action.call(this);
10294         return this;
10295     },
10296
10297     /**
10298      * Returns true if the dialog is visible
10299      * @return {Boolean}
10300      */
10301     isVisible : function(){
10302         return this.el.isVisible();
10303     },
10304
10305     // private
10306     animHide : function(callback){
10307         var b = Roo.get(this.animateTarget).getBox();
10308         this.proxy.show();
10309         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
10310         this.el.hide();
10311         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
10312                     this.hideEl.createDelegate(this, [callback]));
10313     },
10314
10315     /**
10316      * Hides the dialog.
10317      * @param {Function} callback (optional) Function to call when the dialog is hidden
10318      * @return {Roo.BasicDialog} this
10319      */
10320     hide : function(callback){
10321         if (this.fireEvent("beforehide", this) === false){
10322             return;
10323         }
10324         if(this.shadow){
10325             this.shadow.hide();
10326         }
10327         if(this.shim) {
10328           this.shim.hide();
10329         }
10330         // sometimes animateTarget seems to get set.. causing problems...
10331         // this just double checks..
10332         if(this.animateTarget && Roo.get(this.animateTarget)) {
10333            this.animHide(callback);
10334         }else{
10335             this.el.hide();
10336             this.hideEl(callback);
10337         }
10338         return this;
10339     },
10340
10341     // private
10342     hideEl : function(callback){
10343         this.proxy.hide();
10344         if(this.modal){
10345             this.mask.hide();
10346             Roo.get(document.body).removeClass("x-body-masked");
10347         }
10348         this.fireEvent("hide", this);
10349         if(typeof callback == "function"){
10350             callback();
10351         }
10352     },
10353
10354     // private
10355     hideAction : function(){
10356         this.setLeft("-10000px");
10357         this.setTop("-10000px");
10358         this.setStyle("visibility", "hidden");
10359     },
10360
10361     // private
10362     refreshSize : function(){
10363         this.size = this.el.getSize();
10364         this.xy = this.el.getXY();
10365         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
10366     },
10367
10368     // private
10369     // z-index is managed by the DialogManager and may be overwritten at any time
10370     setZIndex : function(index){
10371         if(this.modal){
10372             this.mask.setStyle("z-index", index);
10373         }
10374         if(this.shim){
10375             this.shim.setStyle("z-index", ++index);
10376         }
10377         if(this.shadow){
10378             this.shadow.setZIndex(++index);
10379         }
10380         this.el.setStyle("z-index", ++index);
10381         if(this.proxy){
10382             this.proxy.setStyle("z-index", ++index);
10383         }
10384         if(this.resizer){
10385             this.resizer.proxy.setStyle("z-index", ++index);
10386         }
10387
10388         this.lastZIndex = index;
10389     },
10390
10391     /**
10392      * Returns the element for this dialog
10393      * @return {Roo.Element} The underlying dialog Element
10394      */
10395     getEl : function(){
10396         return this.el;
10397     }
10398 });
10399
10400 /**
10401  * @class Roo.DialogManager
10402  * Provides global access to BasicDialogs that have been created and
10403  * support for z-indexing (layering) multiple open dialogs.
10404  */
10405 Roo.DialogManager = function(){
10406     var list = {};
10407     var accessList = [];
10408     var front = null;
10409
10410     // private
10411     var sortDialogs = function(d1, d2){
10412         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
10413     };
10414
10415     // private
10416     var orderDialogs = function(){
10417         accessList.sort(sortDialogs);
10418         var seed = Roo.DialogManager.zseed;
10419         for(var i = 0, len = accessList.length; i < len; i++){
10420             var dlg = accessList[i];
10421             if(dlg){
10422                 dlg.setZIndex(seed + (i*10));
10423             }
10424         }
10425     };
10426
10427     return {
10428         /**
10429          * The starting z-index for BasicDialogs (defaults to 9000)
10430          * @type Number The z-index value
10431          */
10432         zseed : 9000,
10433
10434         // private
10435         register : function(dlg){
10436             list[dlg.id] = dlg;
10437             accessList.push(dlg);
10438         },
10439
10440         // private
10441         unregister : function(dlg){
10442             delete list[dlg.id];
10443             var i=0;
10444             var len=0;
10445             if(!accessList.indexOf){
10446                 for(  i = 0, len = accessList.length; i < len; i++){
10447                     if(accessList[i] == dlg){
10448                         accessList.splice(i, 1);
10449                         return;
10450                     }
10451                 }
10452             }else{
10453                  i = accessList.indexOf(dlg);
10454                 if(i != -1){
10455                     accessList.splice(i, 1);
10456                 }
10457             }
10458         },
10459
10460         /**
10461          * Gets a registered dialog by id
10462          * @param {String/Object} id The id of the dialog or a dialog
10463          * @return {Roo.BasicDialog} this
10464          */
10465         get : function(id){
10466             return typeof id == "object" ? id : list[id];
10467         },
10468
10469         /**
10470          * Brings the specified dialog to the front
10471          * @param {String/Object} dlg The id of the dialog or a dialog
10472          * @return {Roo.BasicDialog} this
10473          */
10474         bringToFront : function(dlg){
10475             dlg = this.get(dlg);
10476             if(dlg != front){
10477                 front = dlg;
10478                 dlg._lastAccess = new Date().getTime();
10479                 orderDialogs();
10480             }
10481             return dlg;
10482         },
10483
10484         /**
10485          * Sends the specified dialog to the back
10486          * @param {String/Object} dlg The id of the dialog or a dialog
10487          * @return {Roo.BasicDialog} this
10488          */
10489         sendToBack : function(dlg){
10490             dlg = this.get(dlg);
10491             dlg._lastAccess = -(new Date().getTime());
10492             orderDialogs();
10493             return dlg;
10494         },
10495
10496         /**
10497          * Hides all dialogs
10498          */
10499         hideAll : function(){
10500             for(var id in list){
10501                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
10502                     list[id].hide();
10503                 }
10504             }
10505         }
10506     };
10507 }();
10508
10509 /**
10510  * @class Roo.LayoutDialog
10511  * @extends Roo.BasicDialog
10512  * Dialog which provides adjustments for working with a layout in a Dialog.
10513  * Add your necessary layout config options to the dialog's config.<br>
10514  * Example usage (including a nested layout):
10515  * <pre><code>
10516 if(!dialog){
10517     dialog = new Roo.LayoutDialog("download-dlg", {
10518         modal: true,
10519         width:600,
10520         height:450,
10521         shadow:true,
10522         minWidth:500,
10523         minHeight:350,
10524         autoTabs:true,
10525         proxyDrag:true,
10526         // layout config merges with the dialog config
10527         center:{
10528             tabPosition: "top",
10529             alwaysShowTabs: true
10530         }
10531     });
10532     dialog.addKeyListener(27, dialog.hide, dialog);
10533     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
10534     dialog.addButton("Build It!", this.getDownload, this);
10535
10536     // we can even add nested layouts
10537     var innerLayout = new Roo.BorderLayout("dl-inner", {
10538         east: {
10539             initialSize: 200,
10540             autoScroll:true,
10541             split:true
10542         },
10543         center: {
10544             autoScroll:true
10545         }
10546     });
10547     innerLayout.beginUpdate();
10548     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
10549     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
10550     innerLayout.endUpdate(true);
10551
10552     var layout = dialog.getLayout();
10553     layout.beginUpdate();
10554     layout.add("center", new Roo.ContentPanel("standard-panel",
10555                         {title: "Download the Source", fitToFrame:true}));
10556     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
10557                {title: "Build your own roo.js"}));
10558     layout.getRegion("center").showPanel(sp);
10559     layout.endUpdate();
10560 }
10561 </code></pre>
10562     * @constructor
10563     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
10564     * @param {Object} config configuration options
10565   */
10566 Roo.LayoutDialog = function(el, cfg){
10567     
10568     var config=  cfg;
10569     if (typeof(cfg) == 'undefined') {
10570         config = Roo.apply({}, el);
10571         // not sure why we use documentElement here.. - it should always be body.
10572         // IE7 borks horribly if we use documentElement.
10573         // webkit also does not like documentElement - it creates a body element...
10574         el = Roo.get( document.body || document.documentElement ).createChild();
10575         //config.autoCreate = true;
10576     }
10577     
10578     
10579     config.autoTabs = false;
10580     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
10581     this.body.setStyle({overflow:"hidden", position:"relative"});
10582     this.layout = new Roo.BorderLayout(this.body.dom, config);
10583     this.layout.monitorWindowResize = false;
10584     this.el.addClass("x-dlg-auto-layout");
10585     // fix case when center region overwrites center function
10586     this.center = Roo.BasicDialog.prototype.center;
10587     this.on("show", this.layout.layout, this.layout, true);
10588     if (config.items) {
10589         var xitems = config.items;
10590         delete config.items;
10591         Roo.each(xitems, this.addxtype, this);
10592     }
10593     
10594     
10595 };
10596 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
10597     /**
10598      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
10599      * @deprecated
10600      */
10601     endUpdate : function(){
10602         this.layout.endUpdate();
10603     },
10604
10605     /**
10606      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
10607      *  @deprecated
10608      */
10609     beginUpdate : function(){
10610         this.layout.beginUpdate();
10611     },
10612
10613     /**
10614      * Get the BorderLayout for this dialog
10615      * @return {Roo.BorderLayout}
10616      */
10617     getLayout : function(){
10618         return this.layout;
10619     },
10620
10621     showEl : function(){
10622         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
10623         if(Roo.isIE7){
10624             this.layout.layout();
10625         }
10626     },
10627
10628     // private
10629     // Use the syncHeightBeforeShow config option to control this automatically
10630     syncBodyHeight : function(){
10631         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
10632         if(this.layout){this.layout.layout();}
10633     },
10634     
10635       /**
10636      * Add an xtype element (actually adds to the layout.)
10637      * @return {Object} xdata xtype object data.
10638      */
10639     
10640     addxtype : function(c) {
10641         return this.layout.addxtype(c);
10642     }
10643 });/*
10644  * Based on:
10645  * Ext JS Library 1.1.1
10646  * Copyright(c) 2006-2007, Ext JS, LLC.
10647  *
10648  * Originally Released Under LGPL - original licence link has changed is not relivant.
10649  *
10650  * Fork - LGPL
10651  * <script type="text/javascript">
10652  */
10653  
10654 /**
10655  * @class Roo.MessageBox
10656  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
10657  * Example usage:
10658  *<pre><code>
10659 // Basic alert:
10660 Roo.Msg.alert('Status', 'Changes saved successfully.');
10661
10662 // Prompt for user data:
10663 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
10664     if (btn == 'ok'){
10665         // process text value...
10666     }
10667 });
10668
10669 // Show a dialog using config options:
10670 Roo.Msg.show({
10671    title:'Save Changes?',
10672    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
10673    buttons: Roo.Msg.YESNOCANCEL,
10674    fn: processResult,
10675    animEl: 'elId'
10676 });
10677 </code></pre>
10678  * @singleton
10679  */
10680 Roo.MessageBox = function(){
10681     var dlg, opt, mask, waitTimer;
10682     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
10683     var buttons, activeTextEl, bwidth;
10684
10685     // private
10686     var handleButton = function(button){
10687         dlg.hide();
10688         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
10689     };
10690
10691     // private
10692     var handleHide = function(){
10693         if(opt && opt.cls){
10694             dlg.el.removeClass(opt.cls);
10695         }
10696         if(waitTimer){
10697             Roo.TaskMgr.stop(waitTimer);
10698             waitTimer = null;
10699         }
10700     };
10701
10702     // private
10703     var updateButtons = function(b){
10704         var width = 0;
10705         if(!b){
10706             buttons["ok"].hide();
10707             buttons["cancel"].hide();
10708             buttons["yes"].hide();
10709             buttons["no"].hide();
10710             dlg.footer.dom.style.display = 'none';
10711             return width;
10712         }
10713         dlg.footer.dom.style.display = '';
10714         for(var k in buttons){
10715             if(typeof buttons[k] != "function"){
10716                 if(b[k]){
10717                     buttons[k].show();
10718                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
10719                     width += buttons[k].el.getWidth()+15;
10720                 }else{
10721                     buttons[k].hide();
10722                 }
10723             }
10724         }
10725         return width;
10726     };
10727
10728     // private
10729     var handleEsc = function(d, k, e){
10730         if(opt && opt.closable !== false){
10731             dlg.hide();
10732         }
10733         if(e){
10734             e.stopEvent();
10735         }
10736     };
10737
10738     return {
10739         /**
10740          * Returns a reference to the underlying {@link Roo.BasicDialog} element
10741          * @return {Roo.BasicDialog} The BasicDialog element
10742          */
10743         getDialog : function(){
10744            if(!dlg){
10745                 dlg = new Roo.BasicDialog("x-msg-box", {
10746                     autoCreate : true,
10747                     shadow: true,
10748                     draggable: true,
10749                     resizable:false,
10750                     constraintoviewport:false,
10751                     fixedcenter:true,
10752                     collapsible : false,
10753                     shim:true,
10754                     modal: true,
10755                     width:400, height:100,
10756                     buttonAlign:"center",
10757                     closeClick : function(){
10758                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
10759                             handleButton("no");
10760                         }else{
10761                             handleButton("cancel");
10762                         }
10763                     }
10764                 });
10765                 dlg.on("hide", handleHide);
10766                 mask = dlg.mask;
10767                 dlg.addKeyListener(27, handleEsc);
10768                 buttons = {};
10769                 var bt = this.buttonText;
10770                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
10771                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
10772                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
10773                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
10774                 bodyEl = dlg.body.createChild({
10775
10776                     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>'
10777                 });
10778                 msgEl = bodyEl.dom.firstChild;
10779                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
10780                 textboxEl.enableDisplayMode();
10781                 textboxEl.addKeyListener([10,13], function(){
10782                     if(dlg.isVisible() && opt && opt.buttons){
10783                         if(opt.buttons.ok){
10784                             handleButton("ok");
10785                         }else if(opt.buttons.yes){
10786                             handleButton("yes");
10787                         }
10788                     }
10789                 });
10790                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
10791                 textareaEl.enableDisplayMode();
10792                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
10793                 progressEl.enableDisplayMode();
10794                 var pf = progressEl.dom.firstChild;
10795                 if (pf) {
10796                     pp = Roo.get(pf.firstChild);
10797                     pp.setHeight(pf.offsetHeight);
10798                 }
10799                 
10800             }
10801             return dlg;
10802         },
10803
10804         /**
10805          * Updates the message box body text
10806          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
10807          * the XHTML-compliant non-breaking space character '&amp;#160;')
10808          * @return {Roo.MessageBox} This message box
10809          */
10810         updateText : function(text){
10811             if(!dlg.isVisible() && !opt.width){
10812                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
10813             }
10814             msgEl.innerHTML = text || '&#160;';
10815       
10816             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
10817             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
10818             var w = Math.max(
10819                     Math.min(opt.width || cw , this.maxWidth), 
10820                     Math.max(opt.minWidth || this.minWidth, bwidth)
10821             );
10822             if(opt.prompt){
10823                 activeTextEl.setWidth(w);
10824             }
10825             if(dlg.isVisible()){
10826                 dlg.fixedcenter = false;
10827             }
10828             // to big, make it scroll. = But as usual stupid IE does not support
10829             // !important..
10830             
10831             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
10832                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
10833                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
10834             } else {
10835                 bodyEl.dom.style.height = '';
10836                 bodyEl.dom.style.overflowY = '';
10837             }
10838             if (cw > w) {
10839                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
10840             } else {
10841                 bodyEl.dom.style.overflowX = '';
10842             }
10843             
10844             dlg.setContentSize(w, bodyEl.getHeight());
10845             if(dlg.isVisible()){
10846                 dlg.fixedcenter = true;
10847             }
10848             return this;
10849         },
10850
10851         /**
10852          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
10853          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
10854          * @param {Number} value Any number between 0 and 1 (e.g., .5)
10855          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
10856          * @return {Roo.MessageBox} This message box
10857          */
10858         updateProgress : function(value, text){
10859             if(text){
10860                 this.updateText(text);
10861             }
10862             if (pp) { // weird bug on my firefox - for some reason this is not defined
10863                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
10864             }
10865             return this;
10866         },        
10867
10868         /**
10869          * Returns true if the message box is currently displayed
10870          * @return {Boolean} True if the message box is visible, else false
10871          */
10872         isVisible : function(){
10873             return dlg && dlg.isVisible();  
10874         },
10875
10876         /**
10877          * Hides the message box if it is displayed
10878          */
10879         hide : function(){
10880             if(this.isVisible()){
10881                 dlg.hide();
10882             }  
10883         },
10884
10885         /**
10886          * Displays a new message box, or reinitializes an existing message box, based on the config options
10887          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
10888          * The following config object properties are supported:
10889          * <pre>
10890 Property    Type             Description
10891 ----------  ---------------  ------------------------------------------------------------------------------------
10892 animEl            String/Element   An id or Element from which the message box should animate as it opens and
10893                                    closes (defaults to undefined)
10894 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
10895                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
10896 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
10897                                    progress and wait dialogs will ignore this property and always hide the
10898                                    close button as they can only be closed programmatically.
10899 cls               String           A custom CSS class to apply to the message box element
10900 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
10901                                    displayed (defaults to 75)
10902 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
10903                                    function will be btn (the name of the button that was clicked, if applicable,
10904                                    e.g. "ok"), and text (the value of the active text field, if applicable).
10905                                    Progress and wait dialogs will ignore this option since they do not respond to
10906                                    user actions and can only be closed programmatically, so any required function
10907                                    should be called by the same code after it closes the dialog.
10908 icon              String           A CSS class that provides a background image to be used as an icon for
10909                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
10910 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
10911 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
10912 modal             Boolean          False to allow user interaction with the page while the message box is
10913                                    displayed (defaults to true)
10914 msg               String           A string that will replace the existing message box body text (defaults
10915                                    to the XHTML-compliant non-breaking space character '&#160;')
10916 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
10917 progress          Boolean          True to display a progress bar (defaults to false)
10918 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
10919 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
10920 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
10921 title             String           The title text
10922 value             String           The string value to set into the active textbox element if displayed
10923 wait              Boolean          True to display a progress bar (defaults to false)
10924 width             Number           The width of the dialog in pixels
10925 </pre>
10926          *
10927          * Example usage:
10928          * <pre><code>
10929 Roo.Msg.show({
10930    title: 'Address',
10931    msg: 'Please enter your address:',
10932    width: 300,
10933    buttons: Roo.MessageBox.OKCANCEL,
10934    multiline: true,
10935    fn: saveAddress,
10936    animEl: 'addAddressBtn'
10937 });
10938 </code></pre>
10939          * @param {Object} config Configuration options
10940          * @return {Roo.MessageBox} This message box
10941          */
10942         show : function(options)
10943         {
10944             
10945             // this causes nightmares if you show one dialog after another
10946             // especially on callbacks..
10947              
10948             if(this.isVisible()){
10949                 
10950                 this.hide();
10951                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
10952                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
10953                 Roo.log("New Dialog Message:" +  options.msg )
10954                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
10955                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
10956                 
10957             }
10958             var d = this.getDialog();
10959             opt = options;
10960             d.setTitle(opt.title || "&#160;");
10961             d.close.setDisplayed(opt.closable !== false);
10962             activeTextEl = textboxEl;
10963             opt.prompt = opt.prompt || (opt.multiline ? true : false);
10964             if(opt.prompt){
10965                 if(opt.multiline){
10966                     textboxEl.hide();
10967                     textareaEl.show();
10968                     textareaEl.setHeight(typeof opt.multiline == "number" ?
10969                         opt.multiline : this.defaultTextHeight);
10970                     activeTextEl = textareaEl;
10971                 }else{
10972                     textboxEl.show();
10973                     textareaEl.hide();
10974                 }
10975             }else{
10976                 textboxEl.hide();
10977                 textareaEl.hide();
10978             }
10979             progressEl.setDisplayed(opt.progress === true);
10980             this.updateProgress(0);
10981             activeTextEl.dom.value = opt.value || "";
10982             if(opt.prompt){
10983                 dlg.setDefaultButton(activeTextEl);
10984             }else{
10985                 var bs = opt.buttons;
10986                 var db = null;
10987                 if(bs && bs.ok){
10988                     db = buttons["ok"];
10989                 }else if(bs && bs.yes){
10990                     db = buttons["yes"];
10991                 }
10992                 dlg.setDefaultButton(db);
10993             }
10994             bwidth = updateButtons(opt.buttons);
10995             this.updateText(opt.msg);
10996             if(opt.cls){
10997                 d.el.addClass(opt.cls);
10998             }
10999             d.proxyDrag = opt.proxyDrag === true;
11000             d.modal = opt.modal !== false;
11001             d.mask = opt.modal !== false ? mask : false;
11002             if(!d.isVisible()){
11003                 // force it to the end of the z-index stack so it gets a cursor in FF
11004                 document.body.appendChild(dlg.el.dom);
11005                 d.animateTarget = null;
11006                 d.show(options.animEl);
11007             }
11008             return this;
11009         },
11010
11011         /**
11012          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
11013          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
11014          * and closing the message box when the process is complete.
11015          * @param {String} title The title bar text
11016          * @param {String} msg The message box body text
11017          * @return {Roo.MessageBox} This message box
11018          */
11019         progress : function(title, msg){
11020             this.show({
11021                 title : title,
11022                 msg : msg,
11023                 buttons: false,
11024                 progress:true,
11025                 closable:false,
11026                 minWidth: this.minProgressWidth,
11027                 modal : true
11028             });
11029             return this;
11030         },
11031
11032         /**
11033          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
11034          * If a callback function is passed it will be called after the user clicks the button, and the
11035          * id of the button that was clicked will be passed as the only parameter to the callback
11036          * (could also be the top-right close button).
11037          * @param {String} title The title bar text
11038          * @param {String} msg The message box body text
11039          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11040          * @param {Object} scope (optional) The scope of the callback function
11041          * @return {Roo.MessageBox} This message box
11042          */
11043         alert : function(title, msg, fn, scope){
11044             this.show({
11045                 title : title,
11046                 msg : msg,
11047                 buttons: this.OK,
11048                 fn: fn,
11049                 scope : scope,
11050                 modal : true
11051             });
11052             return this;
11053         },
11054
11055         /**
11056          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
11057          * interaction while waiting for a long-running process to complete that does not have defined intervals.
11058          * You are responsible for closing the message box when the process is complete.
11059          * @param {String} msg The message box body text
11060          * @param {String} title (optional) The title bar text
11061          * @return {Roo.MessageBox} This message box
11062          */
11063         wait : function(msg, title){
11064             this.show({
11065                 title : title,
11066                 msg : msg,
11067                 buttons: false,
11068                 closable:false,
11069                 progress:true,
11070                 modal:true,
11071                 width:300,
11072                 wait:true
11073             });
11074             waitTimer = Roo.TaskMgr.start({
11075                 run: function(i){
11076                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
11077                 },
11078                 interval: 1000
11079             });
11080             return this;
11081         },
11082
11083         /**
11084          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
11085          * If a callback function is passed it will be called after the user clicks either button, and the id of the
11086          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
11087          * @param {String} title The title bar text
11088          * @param {String} msg The message box body text
11089          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11090          * @param {Object} scope (optional) The scope of the callback function
11091          * @return {Roo.MessageBox} This message box
11092          */
11093         confirm : function(title, msg, fn, scope){
11094             this.show({
11095                 title : title,
11096                 msg : msg,
11097                 buttons: this.YESNO,
11098                 fn: fn,
11099                 scope : scope,
11100                 modal : true
11101             });
11102             return this;
11103         },
11104
11105         /**
11106          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
11107          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
11108          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
11109          * (could also be the top-right close button) and the text that was entered will be passed as the two
11110          * parameters to the callback.
11111          * @param {String} title The title bar text
11112          * @param {String} msg The message box body text
11113          * @param {Function} fn (optional) The callback function invoked after the message box is closed
11114          * @param {Object} scope (optional) The scope of the callback function
11115          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
11116          * property, or the height in pixels to create the textbox (defaults to false / single-line)
11117          * @return {Roo.MessageBox} This message box
11118          */
11119         prompt : function(title, msg, fn, scope, multiline){
11120             this.show({
11121                 title : title,
11122                 msg : msg,
11123                 buttons: this.OKCANCEL,
11124                 fn: fn,
11125                 minWidth:250,
11126                 scope : scope,
11127                 prompt:true,
11128                 multiline: multiline,
11129                 modal : true
11130             });
11131             return this;
11132         },
11133
11134         /**
11135          * Button config that displays a single OK button
11136          * @type Object
11137          */
11138         OK : {ok:true},
11139         /**
11140          * Button config that displays Yes and No buttons
11141          * @type Object
11142          */
11143         YESNO : {yes:true, no:true},
11144         /**
11145          * Button config that displays OK and Cancel buttons
11146          * @type Object
11147          */
11148         OKCANCEL : {ok:true, cancel:true},
11149         /**
11150          * Button config that displays Yes, No and Cancel buttons
11151          * @type Object
11152          */
11153         YESNOCANCEL : {yes:true, no:true, cancel:true},
11154
11155         /**
11156          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
11157          * @type Number
11158          */
11159         defaultTextHeight : 75,
11160         /**
11161          * The maximum width in pixels of the message box (defaults to 600)
11162          * @type Number
11163          */
11164         maxWidth : 600,
11165         /**
11166          * The minimum width in pixels of the message box (defaults to 100)
11167          * @type Number
11168          */
11169         minWidth : 100,
11170         /**
11171          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
11172          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
11173          * @type Number
11174          */
11175         minProgressWidth : 250,
11176         /**
11177          * An object containing the default button text strings that can be overriden for localized language support.
11178          * Supported properties are: ok, cancel, yes and no.
11179          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
11180          * @type Object
11181          */
11182         buttonText : {
11183             ok : "OK",
11184             cancel : "Cancel",
11185             yes : "Yes",
11186             no : "No"
11187         }
11188     };
11189 }();
11190
11191 /**
11192  * Shorthand for {@link Roo.MessageBox}
11193  */
11194 Roo.Msg = Roo.MessageBox;/*
11195  * Based on:
11196  * Ext JS Library 1.1.1
11197  * Copyright(c) 2006-2007, Ext JS, LLC.
11198  *
11199  * Originally Released Under LGPL - original licence link has changed is not relivant.
11200  *
11201  * Fork - LGPL
11202  * <script type="text/javascript">
11203  */
11204 /**
11205  * @class Roo.QuickTips
11206  * Provides attractive and customizable tooltips for any element.
11207  * @singleton
11208  */
11209 Roo.QuickTips = function(){
11210     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
11211     var ce, bd, xy, dd;
11212     var visible = false, disabled = true, inited = false;
11213     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
11214     
11215     var onOver = function(e){
11216         if(disabled){
11217             return;
11218         }
11219         var t = e.getTarget();
11220         if(!t || t.nodeType !== 1 || t == document || t == document.body){
11221             return;
11222         }
11223         if(ce && t == ce.el){
11224             clearTimeout(hideProc);
11225             return;
11226         }
11227         if(t && tagEls[t.id]){
11228             tagEls[t.id].el = t;
11229             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
11230             return;
11231         }
11232         var ttp, et = Roo.fly(t);
11233         var ns = cfg.namespace;
11234         if(tm.interceptTitles && t.title){
11235             ttp = t.title;
11236             t.qtip = ttp;
11237             t.removeAttribute("title");
11238             e.preventDefault();
11239         }else{
11240             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
11241         }
11242         if(ttp){
11243             showProc = show.defer(tm.showDelay, tm, [{
11244                 el: t, 
11245                 text: ttp.replace(/\\n/g,'<br/>'),
11246                 width: et.getAttributeNS(ns, cfg.width),
11247                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
11248                 title: et.getAttributeNS(ns, cfg.title),
11249                     cls: et.getAttributeNS(ns, cfg.cls)
11250             }]);
11251         }
11252     };
11253     
11254     var onOut = function(e){
11255         clearTimeout(showProc);
11256         var t = e.getTarget();
11257         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
11258             hideProc = setTimeout(hide, tm.hideDelay);
11259         }
11260     };
11261     
11262     var onMove = function(e){
11263         if(disabled){
11264             return;
11265         }
11266         xy = e.getXY();
11267         xy[1] += 18;
11268         if(tm.trackMouse && ce){
11269             el.setXY(xy);
11270         }
11271     };
11272     
11273     var onDown = function(e){
11274         clearTimeout(showProc);
11275         clearTimeout(hideProc);
11276         if(!e.within(el)){
11277             if(tm.hideOnClick){
11278                 hide();
11279                 tm.disable();
11280                 tm.enable.defer(100, tm);
11281             }
11282         }
11283     };
11284     
11285     var getPad = function(){
11286         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
11287     };
11288
11289     var show = function(o){
11290         if(disabled){
11291             return;
11292         }
11293         clearTimeout(dismissProc);
11294         ce = o;
11295         if(removeCls){ // in case manually hidden
11296             el.removeClass(removeCls);
11297             removeCls = null;
11298         }
11299         if(ce.cls){
11300             el.addClass(ce.cls);
11301             removeCls = ce.cls;
11302         }
11303         if(ce.title){
11304             tipTitle.update(ce.title);
11305             tipTitle.show();
11306         }else{
11307             tipTitle.update('');
11308             tipTitle.hide();
11309         }
11310         el.dom.style.width  = tm.maxWidth+'px';
11311         //tipBody.dom.style.width = '';
11312         tipBodyText.update(o.text);
11313         var p = getPad(), w = ce.width;
11314         if(!w){
11315             var td = tipBodyText.dom;
11316             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
11317             if(aw > tm.maxWidth){
11318                 w = tm.maxWidth;
11319             }else if(aw < tm.minWidth){
11320                 w = tm.minWidth;
11321             }else{
11322                 w = aw;
11323             }
11324         }
11325         //tipBody.setWidth(w);
11326         el.setWidth(parseInt(w, 10) + p);
11327         if(ce.autoHide === false){
11328             close.setDisplayed(true);
11329             if(dd){
11330                 dd.unlock();
11331             }
11332         }else{
11333             close.setDisplayed(false);
11334             if(dd){
11335                 dd.lock();
11336             }
11337         }
11338         if(xy){
11339             el.avoidY = xy[1]-18;
11340             el.setXY(xy);
11341         }
11342         if(tm.animate){
11343             el.setOpacity(.1);
11344             el.setStyle("visibility", "visible");
11345             el.fadeIn({callback: afterShow});
11346         }else{
11347             afterShow();
11348         }
11349     };
11350     
11351     var afterShow = function(){
11352         if(ce){
11353             el.show();
11354             esc.enable();
11355             if(tm.autoDismiss && ce.autoHide !== false){
11356                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
11357             }
11358         }
11359     };
11360     
11361     var hide = function(noanim){
11362         clearTimeout(dismissProc);
11363         clearTimeout(hideProc);
11364         ce = null;
11365         if(el.isVisible()){
11366             esc.disable();
11367             if(noanim !== true && tm.animate){
11368                 el.fadeOut({callback: afterHide});
11369             }else{
11370                 afterHide();
11371             } 
11372         }
11373     };
11374     
11375     var afterHide = function(){
11376         el.hide();
11377         if(removeCls){
11378             el.removeClass(removeCls);
11379             removeCls = null;
11380         }
11381     };
11382     
11383     return {
11384         /**
11385         * @cfg {Number} minWidth
11386         * The minimum width of the quick tip (defaults to 40)
11387         */
11388        minWidth : 40,
11389         /**
11390         * @cfg {Number} maxWidth
11391         * The maximum width of the quick tip (defaults to 300)
11392         */
11393        maxWidth : 300,
11394         /**
11395         * @cfg {Boolean} interceptTitles
11396         * True to automatically use the element's DOM title value if available (defaults to false)
11397         */
11398        interceptTitles : false,
11399         /**
11400         * @cfg {Boolean} trackMouse
11401         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
11402         */
11403        trackMouse : false,
11404         /**
11405         * @cfg {Boolean} hideOnClick
11406         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
11407         */
11408        hideOnClick : true,
11409         /**
11410         * @cfg {Number} showDelay
11411         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
11412         */
11413        showDelay : 500,
11414         /**
11415         * @cfg {Number} hideDelay
11416         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
11417         */
11418        hideDelay : 200,
11419         /**
11420         * @cfg {Boolean} autoHide
11421         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
11422         * Used in conjunction with hideDelay.
11423         */
11424        autoHide : true,
11425         /**
11426         * @cfg {Boolean}
11427         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
11428         * (defaults to true).  Used in conjunction with autoDismissDelay.
11429         */
11430        autoDismiss : true,
11431         /**
11432         * @cfg {Number}
11433         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
11434         */
11435        autoDismissDelay : 5000,
11436        /**
11437         * @cfg {Boolean} animate
11438         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
11439         */
11440        animate : false,
11441
11442        /**
11443         * @cfg {String} title
11444         * Title text to display (defaults to '').  This can be any valid HTML markup.
11445         */
11446         title: '',
11447        /**
11448         * @cfg {String} text
11449         * Body text to display (defaults to '').  This can be any valid HTML markup.
11450         */
11451         text : '',
11452        /**
11453         * @cfg {String} cls
11454         * A CSS class to apply to the base quick tip element (defaults to '').
11455         */
11456         cls : '',
11457        /**
11458         * @cfg {Number} width
11459         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
11460         * minWidth or maxWidth.
11461         */
11462         width : null,
11463
11464     /**
11465      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
11466      * or display QuickTips in a page.
11467      */
11468        init : function(){
11469           tm = Roo.QuickTips;
11470           cfg = tm.tagConfig;
11471           if(!inited){
11472               if(!Roo.isReady){ // allow calling of init() before onReady
11473                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
11474                   return;
11475               }
11476               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
11477               el.fxDefaults = {stopFx: true};
11478               // maximum custom styling
11479               //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>');
11480               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>');              
11481               tipTitle = el.child('h3');
11482               tipTitle.enableDisplayMode("block");
11483               tipBody = el.child('div.x-tip-bd');
11484               tipBodyText = el.child('div.x-tip-bd-inner');
11485               //bdLeft = el.child('div.x-tip-bd-left');
11486               //bdRight = el.child('div.x-tip-bd-right');
11487               close = el.child('div.x-tip-close');
11488               close.enableDisplayMode("block");
11489               close.on("click", hide);
11490               var d = Roo.get(document);
11491               d.on("mousedown", onDown);
11492               d.on("mouseover", onOver);
11493               d.on("mouseout", onOut);
11494               d.on("mousemove", onMove);
11495               esc = d.addKeyListener(27, hide);
11496               esc.disable();
11497               if(Roo.dd.DD){
11498                   dd = el.initDD("default", null, {
11499                       onDrag : function(){
11500                           el.sync();  
11501                       }
11502                   });
11503                   dd.setHandleElId(tipTitle.id);
11504                   dd.lock();
11505               }
11506               inited = true;
11507           }
11508           this.enable(); 
11509        },
11510
11511     /**
11512      * Configures a new quick tip instance and assigns it to a target element.  The following config options
11513      * are supported:
11514      * <pre>
11515 Property    Type                   Description
11516 ----------  ---------------------  ------------------------------------------------------------------------
11517 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
11518      * </ul>
11519      * @param {Object} config The config object
11520      */
11521        register : function(config){
11522            var cs = config instanceof Array ? config : arguments;
11523            for(var i = 0, len = cs.length; i < len; i++) {
11524                var c = cs[i];
11525                var target = c.target;
11526                if(target){
11527                    if(target instanceof Array){
11528                        for(var j = 0, jlen = target.length; j < jlen; j++){
11529                            tagEls[target[j]] = c;
11530                        }
11531                    }else{
11532                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
11533                    }
11534                }
11535            }
11536        },
11537
11538     /**
11539      * Removes this quick tip from its element and destroys it.
11540      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
11541      */
11542        unregister : function(el){
11543            delete tagEls[Roo.id(el)];
11544        },
11545
11546     /**
11547      * Enable this quick tip.
11548      */
11549        enable : function(){
11550            if(inited && disabled){
11551                locks.pop();
11552                if(locks.length < 1){
11553                    disabled = false;
11554                }
11555            }
11556        },
11557
11558     /**
11559      * Disable this quick tip.
11560      */
11561        disable : function(){
11562           disabled = true;
11563           clearTimeout(showProc);
11564           clearTimeout(hideProc);
11565           clearTimeout(dismissProc);
11566           if(ce){
11567               hide(true);
11568           }
11569           locks.push(1);
11570        },
11571
11572     /**
11573      * Returns true if the quick tip is enabled, else false.
11574      */
11575        isEnabled : function(){
11576             return !disabled;
11577        },
11578
11579         // private
11580        tagConfig : {
11581            namespace : "roo", // was ext?? this may break..
11582            alt_namespace : "ext",
11583            attribute : "qtip",
11584            width : "width",
11585            target : "target",
11586            title : "qtitle",
11587            hide : "hide",
11588            cls : "qclass"
11589        }
11590    };
11591 }();
11592
11593 // backwards compat
11594 Roo.QuickTips.tips = Roo.QuickTips.register;/*
11595  * Based on:
11596  * Ext JS Library 1.1.1
11597  * Copyright(c) 2006-2007, Ext JS, LLC.
11598  *
11599  * Originally Released Under LGPL - original licence link has changed is not relivant.
11600  *
11601  * Fork - LGPL
11602  * <script type="text/javascript">
11603  */
11604  
11605
11606 /**
11607  * @class Roo.tree.TreePanel
11608  * @extends Roo.data.Tree
11609
11610  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
11611  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
11612  * @cfg {Boolean} enableDD true to enable drag and drop
11613  * @cfg {Boolean} enableDrag true to enable just drag
11614  * @cfg {Boolean} enableDrop true to enable just drop
11615  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
11616  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
11617  * @cfg {String} ddGroup The DD group this TreePanel belongs to
11618  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
11619  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
11620  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
11621  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
11622  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
11623  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
11624  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
11625  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
11626  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
11627  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
11628  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
11629  * @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>
11630  * @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>
11631  * 
11632  * @constructor
11633  * @param {String/HTMLElement/Element} el The container element
11634  * @param {Object} config
11635  */
11636 Roo.tree.TreePanel = function(el, config){
11637     var root = false;
11638     var loader = false;
11639     if (config.root) {
11640         root = config.root;
11641         delete config.root;
11642     }
11643     if (config.loader) {
11644         loader = config.loader;
11645         delete config.loader;
11646     }
11647     
11648     Roo.apply(this, config);
11649     Roo.tree.TreePanel.superclass.constructor.call(this);
11650     this.el = Roo.get(el);
11651     this.el.addClass('x-tree');
11652     //console.log(root);
11653     if (root) {
11654         this.setRootNode( Roo.factory(root, Roo.tree));
11655     }
11656     if (loader) {
11657         this.loader = Roo.factory(loader, Roo.tree);
11658     }
11659    /**
11660     * Read-only. The id of the container element becomes this TreePanel's id.
11661     */
11662     this.id = this.el.id;
11663     this.addEvents({
11664         /**
11665         * @event beforeload
11666         * Fires before a node is loaded, return false to cancel
11667         * @param {Node} node The node being loaded
11668         */
11669         "beforeload" : true,
11670         /**
11671         * @event load
11672         * Fires when a node is loaded
11673         * @param {Node} node The node that was loaded
11674         */
11675         "load" : true,
11676         /**
11677         * @event textchange
11678         * Fires when the text for a node is changed
11679         * @param {Node} node The node
11680         * @param {String} text The new text
11681         * @param {String} oldText The old text
11682         */
11683         "textchange" : true,
11684         /**
11685         * @event beforeexpand
11686         * Fires before a node is expanded, return false to cancel.
11687         * @param {Node} node The node
11688         * @param {Boolean} deep
11689         * @param {Boolean} anim
11690         */
11691         "beforeexpand" : true,
11692         /**
11693         * @event beforecollapse
11694         * Fires before a node is collapsed, return false to cancel.
11695         * @param {Node} node The node
11696         * @param {Boolean} deep
11697         * @param {Boolean} anim
11698         */
11699         "beforecollapse" : true,
11700         /**
11701         * @event expand
11702         * Fires when a node is expanded
11703         * @param {Node} node The node
11704         */
11705         "expand" : true,
11706         /**
11707         * @event disabledchange
11708         * Fires when the disabled status of a node changes
11709         * @param {Node} node The node
11710         * @param {Boolean} disabled
11711         */
11712         "disabledchange" : true,
11713         /**
11714         * @event collapse
11715         * Fires when a node is collapsed
11716         * @param {Node} node The node
11717         */
11718         "collapse" : true,
11719         /**
11720         * @event beforeclick
11721         * Fires before click processing on a node. Return false to cancel the default action.
11722         * @param {Node} node The node
11723         * @param {Roo.EventObject} e The event object
11724         */
11725         "beforeclick":true,
11726         /**
11727         * @event checkchange
11728         * Fires when a node with a checkbox's checked property changes
11729         * @param {Node} this This node
11730         * @param {Boolean} checked
11731         */
11732         "checkchange":true,
11733         /**
11734         * @event click
11735         * Fires when a node is clicked
11736         * @param {Node} node The node
11737         * @param {Roo.EventObject} e The event object
11738         */
11739         "click":true,
11740         /**
11741         * @event dblclick
11742         * Fires when a node is double clicked
11743         * @param {Node} node The node
11744         * @param {Roo.EventObject} e The event object
11745         */
11746         "dblclick":true,
11747         /**
11748         * @event contextmenu
11749         * Fires when a node is right clicked
11750         * @param {Node} node The node
11751         * @param {Roo.EventObject} e The event object
11752         */
11753         "contextmenu":true,
11754         /**
11755         * @event beforechildrenrendered
11756         * Fires right before the child nodes for a node are rendered
11757         * @param {Node} node The node
11758         */
11759         "beforechildrenrendered":true,
11760         /**
11761         * @event startdrag
11762         * Fires when a node starts being dragged
11763         * @param {Roo.tree.TreePanel} this
11764         * @param {Roo.tree.TreeNode} node
11765         * @param {event} e The raw browser event
11766         */ 
11767        "startdrag" : true,
11768        /**
11769         * @event enddrag
11770         * Fires when a drag operation is complete
11771         * @param {Roo.tree.TreePanel} this
11772         * @param {Roo.tree.TreeNode} node
11773         * @param {event} e The raw browser event
11774         */
11775        "enddrag" : true,
11776        /**
11777         * @event dragdrop
11778         * Fires when a dragged node is dropped on a valid DD target
11779         * @param {Roo.tree.TreePanel} this
11780         * @param {Roo.tree.TreeNode} node
11781         * @param {DD} dd The dd it was dropped on
11782         * @param {event} e The raw browser event
11783         */
11784        "dragdrop" : true,
11785        /**
11786         * @event beforenodedrop
11787         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
11788         * passed to handlers has the following properties:<br />
11789         * <ul style="padding:5px;padding-left:16px;">
11790         * <li>tree - The TreePanel</li>
11791         * <li>target - The node being targeted for the drop</li>
11792         * <li>data - The drag data from the drag source</li>
11793         * <li>point - The point of the drop - append, above or below</li>
11794         * <li>source - The drag source</li>
11795         * <li>rawEvent - Raw mouse event</li>
11796         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
11797         * to be inserted by setting them on this object.</li>
11798         * <li>cancel - Set this to true to cancel the drop.</li>
11799         * </ul>
11800         * @param {Object} dropEvent
11801         */
11802        "beforenodedrop" : true,
11803        /**
11804         * @event nodedrop
11805         * Fires after a DD object is dropped on a node in this tree. The dropEvent
11806         * passed to handlers has the following properties:<br />
11807         * <ul style="padding:5px;padding-left:16px;">
11808         * <li>tree - The TreePanel</li>
11809         * <li>target - The node being targeted for the drop</li>
11810         * <li>data - The drag data from the drag source</li>
11811         * <li>point - The point of the drop - append, above or below</li>
11812         * <li>source - The drag source</li>
11813         * <li>rawEvent - Raw mouse event</li>
11814         * <li>dropNode - Dropped node(s).</li>
11815         * </ul>
11816         * @param {Object} dropEvent
11817         */
11818        "nodedrop" : true,
11819         /**
11820         * @event nodedragover
11821         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
11822         * passed to handlers has the following properties:<br />
11823         * <ul style="padding:5px;padding-left:16px;">
11824         * <li>tree - The TreePanel</li>
11825         * <li>target - The node being targeted for the drop</li>
11826         * <li>data - The drag data from the drag source</li>
11827         * <li>point - The point of the drop - append, above or below</li>
11828         * <li>source - The drag source</li>
11829         * <li>rawEvent - Raw mouse event</li>
11830         * <li>dropNode - Drop node(s) provided by the source.</li>
11831         * <li>cancel - Set this to true to signal drop not allowed.</li>
11832         * </ul>
11833         * @param {Object} dragOverEvent
11834         */
11835        "nodedragover" : true,
11836        /**
11837         * @event appendnode
11838         * Fires when append node to the tree
11839         * @param {Roo.tree.TreePanel} this
11840         * @param {Roo.tree.TreeNode} node
11841         * @param {Number} index The index of the newly appended node
11842         */
11843        "appendnode" : true
11844         
11845     });
11846     if(this.singleExpand){
11847        this.on("beforeexpand", this.restrictExpand, this);
11848     }
11849     if (this.editor) {
11850         this.editor.tree = this;
11851         this.editor = Roo.factory(this.editor, Roo.tree);
11852     }
11853     
11854     if (this.selModel) {
11855         this.selModel = Roo.factory(this.selModel, Roo.tree);
11856     }
11857    
11858 };
11859 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
11860     rootVisible : true,
11861     animate: Roo.enableFx,
11862     lines : true,
11863     enableDD : false,
11864     hlDrop : Roo.enableFx,
11865   
11866     renderer: false,
11867     
11868     rendererTip: false,
11869     // private
11870     restrictExpand : function(node){
11871         var p = node.parentNode;
11872         if(p){
11873             if(p.expandedChild && p.expandedChild.parentNode == p){
11874                 p.expandedChild.collapse();
11875             }
11876             p.expandedChild = node;
11877         }
11878     },
11879
11880     // private override
11881     setRootNode : function(node){
11882         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
11883         if(!this.rootVisible){
11884             node.ui = new Roo.tree.RootTreeNodeUI(node);
11885         }
11886         return node;
11887     },
11888
11889     /**
11890      * Returns the container element for this TreePanel
11891      */
11892     getEl : function(){
11893         return this.el;
11894     },
11895
11896     /**
11897      * Returns the default TreeLoader for this TreePanel
11898      */
11899     getLoader : function(){
11900         return this.loader;
11901     },
11902
11903     /**
11904      * Expand all nodes
11905      */
11906     expandAll : function(){
11907         this.root.expand(true);
11908     },
11909
11910     /**
11911      * Collapse all nodes
11912      */
11913     collapseAll : function(){
11914         this.root.collapse(true);
11915     },
11916
11917     /**
11918      * Returns the selection model used by this TreePanel
11919      */
11920     getSelectionModel : function(){
11921         if(!this.selModel){
11922             this.selModel = new Roo.tree.DefaultSelectionModel();
11923         }
11924         return this.selModel;
11925     },
11926
11927     /**
11928      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
11929      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
11930      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
11931      * @return {Array}
11932      */
11933     getChecked : function(a, startNode){
11934         startNode = startNode || this.root;
11935         var r = [];
11936         var f = function(){
11937             if(this.attributes.checked){
11938                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
11939             }
11940         }
11941         startNode.cascade(f);
11942         return r;
11943     },
11944
11945     /**
11946      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11947      * @param {String} path
11948      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11949      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
11950      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
11951      */
11952     expandPath : function(path, attr, callback){
11953         attr = attr || "id";
11954         var keys = path.split(this.pathSeparator);
11955         var curNode = this.root;
11956         if(curNode.attributes[attr] != keys[1]){ // invalid root
11957             if(callback){
11958                 callback(false, null);
11959             }
11960             return;
11961         }
11962         var index = 1;
11963         var f = function(){
11964             if(++index == keys.length){
11965                 if(callback){
11966                     callback(true, curNode);
11967                 }
11968                 return;
11969             }
11970             var c = curNode.findChild(attr, keys[index]);
11971             if(!c){
11972                 if(callback){
11973                     callback(false, curNode);
11974                 }
11975                 return;
11976             }
11977             curNode = c;
11978             c.expand(false, false, f);
11979         };
11980         curNode.expand(false, false, f);
11981     },
11982
11983     /**
11984      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11985      * @param {String} path
11986      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11987      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
11988      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
11989      */
11990     selectPath : function(path, attr, callback){
11991         attr = attr || "id";
11992         var keys = path.split(this.pathSeparator);
11993         var v = keys.pop();
11994         if(keys.length > 0){
11995             var f = function(success, node){
11996                 if(success && node){
11997                     var n = node.findChild(attr, v);
11998                     if(n){
11999                         n.select();
12000                         if(callback){
12001                             callback(true, n);
12002                         }
12003                     }else if(callback){
12004                         callback(false, n);
12005                     }
12006                 }else{
12007                     if(callback){
12008                         callback(false, n);
12009                     }
12010                 }
12011             };
12012             this.expandPath(keys.join(this.pathSeparator), attr, f);
12013         }else{
12014             this.root.select();
12015             if(callback){
12016                 callback(true, this.root);
12017             }
12018         }
12019     },
12020
12021     getTreeEl : function(){
12022         return this.el;
12023     },
12024
12025     /**
12026      * Trigger rendering of this TreePanel
12027      */
12028     render : function(){
12029         if (this.innerCt) {
12030             return this; // stop it rendering more than once!!
12031         }
12032         
12033         this.innerCt = this.el.createChild({tag:"ul",
12034                cls:"x-tree-root-ct " +
12035                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
12036
12037         if(this.containerScroll){
12038             Roo.dd.ScrollManager.register(this.el);
12039         }
12040         if((this.enableDD || this.enableDrop) && !this.dropZone){
12041            /**
12042             * The dropZone used by this tree if drop is enabled
12043             * @type Roo.tree.TreeDropZone
12044             */
12045              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
12046                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
12047            });
12048         }
12049         if((this.enableDD || this.enableDrag) && !this.dragZone){
12050            /**
12051             * The dragZone used by this tree if drag is enabled
12052             * @type Roo.tree.TreeDragZone
12053             */
12054             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
12055                ddGroup: this.ddGroup || "TreeDD",
12056                scroll: this.ddScroll
12057            });
12058         }
12059         this.getSelectionModel().init(this);
12060         if (!this.root) {
12061             Roo.log("ROOT not set in tree");
12062             return this;
12063         }
12064         this.root.render();
12065         if(!this.rootVisible){
12066             this.root.renderChildren();
12067         }
12068         return this;
12069     }
12070 });/*
12071  * Based on:
12072  * Ext JS Library 1.1.1
12073  * Copyright(c) 2006-2007, Ext JS, LLC.
12074  *
12075  * Originally Released Under LGPL - original licence link has changed is not relivant.
12076  *
12077  * Fork - LGPL
12078  * <script type="text/javascript">
12079  */
12080  
12081
12082 /**
12083  * @class Roo.tree.DefaultSelectionModel
12084  * @extends Roo.util.Observable
12085  * The default single selection for a TreePanel.
12086  * @param {Object} cfg Configuration
12087  */
12088 Roo.tree.DefaultSelectionModel = function(cfg){
12089    this.selNode = null;
12090    
12091    
12092    
12093    this.addEvents({
12094        /**
12095         * @event selectionchange
12096         * Fires when the selected node changes
12097         * @param {DefaultSelectionModel} this
12098         * @param {TreeNode} node the new selection
12099         */
12100        "selectionchange" : true,
12101
12102        /**
12103         * @event beforeselect
12104         * Fires before the selected node changes, return false to cancel the change
12105         * @param {DefaultSelectionModel} this
12106         * @param {TreeNode} node the new selection
12107         * @param {TreeNode} node the old selection
12108         */
12109        "beforeselect" : true
12110    });
12111    
12112     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
12113 };
12114
12115 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
12116     init : function(tree){
12117         this.tree = tree;
12118         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12119         tree.on("click", this.onNodeClick, this);
12120     },
12121     
12122     onNodeClick : function(node, e){
12123         if (e.ctrlKey && this.selNode == node)  {
12124             this.unselect(node);
12125             return;
12126         }
12127         this.select(node);
12128     },
12129     
12130     /**
12131      * Select a node.
12132      * @param {TreeNode} node The node to select
12133      * @return {TreeNode} The selected node
12134      */
12135     select : function(node){
12136         var last = this.selNode;
12137         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
12138             if(last){
12139                 last.ui.onSelectedChange(false);
12140             }
12141             this.selNode = node;
12142             node.ui.onSelectedChange(true);
12143             this.fireEvent("selectionchange", this, node, last);
12144         }
12145         return node;
12146     },
12147     
12148     /**
12149      * Deselect a node.
12150      * @param {TreeNode} node The node to unselect
12151      */
12152     unselect : function(node){
12153         if(this.selNode == node){
12154             this.clearSelections();
12155         }    
12156     },
12157     
12158     /**
12159      * Clear all selections
12160      */
12161     clearSelections : function(){
12162         var n = this.selNode;
12163         if(n){
12164             n.ui.onSelectedChange(false);
12165             this.selNode = null;
12166             this.fireEvent("selectionchange", this, null);
12167         }
12168         return n;
12169     },
12170     
12171     /**
12172      * Get the selected node
12173      * @return {TreeNode} The selected node
12174      */
12175     getSelectedNode : function(){
12176         return this.selNode;    
12177     },
12178     
12179     /**
12180      * Returns true if the node is selected
12181      * @param {TreeNode} node The node to check
12182      * @return {Boolean}
12183      */
12184     isSelected : function(node){
12185         return this.selNode == node;  
12186     },
12187
12188     /**
12189      * Selects the node above the selected node in the tree, intelligently walking the nodes
12190      * @return TreeNode The new selection
12191      */
12192     selectPrevious : function(){
12193         var s = this.selNode || this.lastSelNode;
12194         if(!s){
12195             return null;
12196         }
12197         var ps = s.previousSibling;
12198         if(ps){
12199             if(!ps.isExpanded() || ps.childNodes.length < 1){
12200                 return this.select(ps);
12201             } else{
12202                 var lc = ps.lastChild;
12203                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
12204                     lc = lc.lastChild;
12205                 }
12206                 return this.select(lc);
12207             }
12208         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
12209             return this.select(s.parentNode);
12210         }
12211         return null;
12212     },
12213
12214     /**
12215      * Selects the node above the selected node in the tree, intelligently walking the nodes
12216      * @return TreeNode The new selection
12217      */
12218     selectNext : function(){
12219         var s = this.selNode || this.lastSelNode;
12220         if(!s){
12221             return null;
12222         }
12223         if(s.firstChild && s.isExpanded()){
12224              return this.select(s.firstChild);
12225          }else if(s.nextSibling){
12226              return this.select(s.nextSibling);
12227          }else if(s.parentNode){
12228             var newS = null;
12229             s.parentNode.bubble(function(){
12230                 if(this.nextSibling){
12231                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
12232                     return false;
12233                 }
12234             });
12235             return newS;
12236          }
12237         return null;
12238     },
12239
12240     onKeyDown : function(e){
12241         var s = this.selNode || this.lastSelNode;
12242         // undesirable, but required
12243         var sm = this;
12244         if(!s){
12245             return;
12246         }
12247         var k = e.getKey();
12248         switch(k){
12249              case e.DOWN:
12250                  e.stopEvent();
12251                  this.selectNext();
12252              break;
12253              case e.UP:
12254                  e.stopEvent();
12255                  this.selectPrevious();
12256              break;
12257              case e.RIGHT:
12258                  e.preventDefault();
12259                  if(s.hasChildNodes()){
12260                      if(!s.isExpanded()){
12261                          s.expand();
12262                      }else if(s.firstChild){
12263                          this.select(s.firstChild, e);
12264                      }
12265                  }
12266              break;
12267              case e.LEFT:
12268                  e.preventDefault();
12269                  if(s.hasChildNodes() && s.isExpanded()){
12270                      s.collapse();
12271                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
12272                      this.select(s.parentNode, e);
12273                  }
12274              break;
12275         };
12276     }
12277 });
12278
12279 /**
12280  * @class Roo.tree.MultiSelectionModel
12281  * @extends Roo.util.Observable
12282  * Multi selection for a TreePanel.
12283  * @param {Object} cfg Configuration
12284  */
12285 Roo.tree.MultiSelectionModel = function(){
12286    this.selNodes = [];
12287    this.selMap = {};
12288    this.addEvents({
12289        /**
12290         * @event selectionchange
12291         * Fires when the selected nodes change
12292         * @param {MultiSelectionModel} this
12293         * @param {Array} nodes Array of the selected nodes
12294         */
12295        "selectionchange" : true
12296    });
12297    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
12298    
12299 };
12300
12301 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
12302     init : function(tree){
12303         this.tree = tree;
12304         tree.getTreeEl().on("keydown", this.onKeyDown, this);
12305         tree.on("click", this.onNodeClick, this);
12306     },
12307     
12308     onNodeClick : function(node, e){
12309         this.select(node, e, e.ctrlKey);
12310     },
12311     
12312     /**
12313      * Select a node.
12314      * @param {TreeNode} node The node to select
12315      * @param {EventObject} e (optional) An event associated with the selection
12316      * @param {Boolean} keepExisting True to retain existing selections
12317      * @return {TreeNode} The selected node
12318      */
12319     select : function(node, e, keepExisting){
12320         if(keepExisting !== true){
12321             this.clearSelections(true);
12322         }
12323         if(this.isSelected(node)){
12324             this.lastSelNode = node;
12325             return node;
12326         }
12327         this.selNodes.push(node);
12328         this.selMap[node.id] = node;
12329         this.lastSelNode = node;
12330         node.ui.onSelectedChange(true);
12331         this.fireEvent("selectionchange", this, this.selNodes);
12332         return node;
12333     },
12334     
12335     /**
12336      * Deselect a node.
12337      * @param {TreeNode} node The node to unselect
12338      */
12339     unselect : function(node){
12340         if(this.selMap[node.id]){
12341             node.ui.onSelectedChange(false);
12342             var sn = this.selNodes;
12343             var index = -1;
12344             if(sn.indexOf){
12345                 index = sn.indexOf(node);
12346             }else{
12347                 for(var i = 0, len = sn.length; i < len; i++){
12348                     if(sn[i] == node){
12349                         index = i;
12350                         break;
12351                     }
12352                 }
12353             }
12354             if(index != -1){
12355                 this.selNodes.splice(index, 1);
12356             }
12357             delete this.selMap[node.id];
12358             this.fireEvent("selectionchange", this, this.selNodes);
12359         }
12360     },
12361     
12362     /**
12363      * Clear all selections
12364      */
12365     clearSelections : function(suppressEvent){
12366         var sn = this.selNodes;
12367         if(sn.length > 0){
12368             for(var i = 0, len = sn.length; i < len; i++){
12369                 sn[i].ui.onSelectedChange(false);
12370             }
12371             this.selNodes = [];
12372             this.selMap = {};
12373             if(suppressEvent !== true){
12374                 this.fireEvent("selectionchange", this, this.selNodes);
12375             }
12376         }
12377     },
12378     
12379     /**
12380      * Returns true if the node is selected
12381      * @param {TreeNode} node The node to check
12382      * @return {Boolean}
12383      */
12384     isSelected : function(node){
12385         return this.selMap[node.id] ? true : false;  
12386     },
12387     
12388     /**
12389      * Returns an array of the selected nodes
12390      * @return {Array}
12391      */
12392     getSelectedNodes : function(){
12393         return this.selNodes;    
12394     },
12395
12396     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
12397
12398     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
12399
12400     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
12401 });/*
12402  * Based on:
12403  * Ext JS Library 1.1.1
12404  * Copyright(c) 2006-2007, Ext JS, LLC.
12405  *
12406  * Originally Released Under LGPL - original licence link has changed is not relivant.
12407  *
12408  * Fork - LGPL
12409  * <script type="text/javascript">
12410  */
12411  
12412 /**
12413  * @class Roo.tree.TreeNode
12414  * @extends Roo.data.Node
12415  * @cfg {String} text The text for this node
12416  * @cfg {Boolean} expanded true to start the node expanded
12417  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
12418  * @cfg {Boolean} allowDrop false if this node cannot be drop on
12419  * @cfg {Boolean} disabled true to start the node disabled
12420  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
12421  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
12422  * @cfg {String} cls A css class to be added to the node
12423  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
12424  * @cfg {String} href URL of the link used for the node (defaults to #)
12425  * @cfg {String} hrefTarget target frame for the link
12426  * @cfg {String} qtip An Ext QuickTip for the node
12427  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
12428  * @cfg {Boolean} singleClickExpand True for single click expand on this node
12429  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
12430  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
12431  * (defaults to undefined with no checkbox rendered)
12432  * @constructor
12433  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
12434  */
12435 Roo.tree.TreeNode = function(attributes){
12436     attributes = attributes || {};
12437     if(typeof attributes == "string"){
12438         attributes = {text: attributes};
12439     }
12440     this.childrenRendered = false;
12441     this.rendered = false;
12442     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
12443     this.expanded = attributes.expanded === true;
12444     this.isTarget = attributes.isTarget !== false;
12445     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
12446     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
12447
12448     /**
12449      * Read-only. The text for this node. To change it use setText().
12450      * @type String
12451      */
12452     this.text = attributes.text;
12453     /**
12454      * True if this node is disabled.
12455      * @type Boolean
12456      */
12457     this.disabled = attributes.disabled === true;
12458
12459     this.addEvents({
12460         /**
12461         * @event textchange
12462         * Fires when the text for this node is changed
12463         * @param {Node} this This node
12464         * @param {String} text The new text
12465         * @param {String} oldText The old text
12466         */
12467         "textchange" : true,
12468         /**
12469         * @event beforeexpand
12470         * Fires before this node is expanded, return false to cancel.
12471         * @param {Node} this This node
12472         * @param {Boolean} deep
12473         * @param {Boolean} anim
12474         */
12475         "beforeexpand" : true,
12476         /**
12477         * @event beforecollapse
12478         * Fires before this node is collapsed, return false to cancel.
12479         * @param {Node} this This node
12480         * @param {Boolean} deep
12481         * @param {Boolean} anim
12482         */
12483         "beforecollapse" : true,
12484         /**
12485         * @event expand
12486         * Fires when this node is expanded
12487         * @param {Node} this This node
12488         */
12489         "expand" : true,
12490         /**
12491         * @event disabledchange
12492         * Fires when the disabled status of this node changes
12493         * @param {Node} this This node
12494         * @param {Boolean} disabled
12495         */
12496         "disabledchange" : true,
12497         /**
12498         * @event collapse
12499         * Fires when this node is collapsed
12500         * @param {Node} this This node
12501         */
12502         "collapse" : true,
12503         /**
12504         * @event beforeclick
12505         * Fires before click processing. Return false to cancel the default action.
12506         * @param {Node} this This node
12507         * @param {Roo.EventObject} e The event object
12508         */
12509         "beforeclick":true,
12510         /**
12511         * @event checkchange
12512         * Fires when a node with a checkbox's checked property changes
12513         * @param {Node} this This node
12514         * @param {Boolean} checked
12515         */
12516         "checkchange":true,
12517         /**
12518         * @event click
12519         * Fires when this node is clicked
12520         * @param {Node} this This node
12521         * @param {Roo.EventObject} e The event object
12522         */
12523         "click":true,
12524         /**
12525         * @event dblclick
12526         * Fires when this node is double clicked
12527         * @param {Node} this This node
12528         * @param {Roo.EventObject} e The event object
12529         */
12530         "dblclick":true,
12531         /**
12532         * @event contextmenu
12533         * Fires when this node is right clicked
12534         * @param {Node} this This node
12535         * @param {Roo.EventObject} e The event object
12536         */
12537         "contextmenu":true,
12538         /**
12539         * @event beforechildrenrendered
12540         * Fires right before the child nodes for this node are rendered
12541         * @param {Node} this This node
12542         */
12543         "beforechildrenrendered":true
12544     });
12545
12546     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
12547
12548     /**
12549      * Read-only. The UI for this node
12550      * @type TreeNodeUI
12551      */
12552     this.ui = new uiClass(this);
12553     
12554     // finally support items[]
12555     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
12556         return;
12557     }
12558     
12559     
12560     Roo.each(this.attributes.items, function(c) {
12561         this.appendChild(Roo.factory(c,Roo.Tree));
12562     }, this);
12563     delete this.attributes.items;
12564     
12565     
12566     
12567 };
12568 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
12569     preventHScroll: true,
12570     /**
12571      * Returns true if this node is expanded
12572      * @return {Boolean}
12573      */
12574     isExpanded : function(){
12575         return this.expanded;
12576     },
12577
12578     /**
12579      * Returns the UI object for this node
12580      * @return {TreeNodeUI}
12581      */
12582     getUI : function(){
12583         return this.ui;
12584     },
12585
12586     // private override
12587     setFirstChild : function(node){
12588         var of = this.firstChild;
12589         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
12590         if(this.childrenRendered && of && node != of){
12591             of.renderIndent(true, true);
12592         }
12593         if(this.rendered){
12594             this.renderIndent(true, true);
12595         }
12596     },
12597
12598     // private override
12599     setLastChild : function(node){
12600         var ol = this.lastChild;
12601         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
12602         if(this.childrenRendered && ol && node != ol){
12603             ol.renderIndent(true, true);
12604         }
12605         if(this.rendered){
12606             this.renderIndent(true, true);
12607         }
12608     },
12609
12610     // these methods are overridden to provide lazy rendering support
12611     // private override
12612     appendChild : function()
12613     {
12614         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
12615         if(node && this.childrenRendered){
12616             node.render();
12617         }
12618         this.ui.updateExpandIcon();
12619         return node;
12620     },
12621
12622     // private override
12623     removeChild : function(node){
12624         this.ownerTree.getSelectionModel().unselect(node);
12625         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
12626         // if it's been rendered remove dom node
12627         if(this.childrenRendered){
12628             node.ui.remove();
12629         }
12630         if(this.childNodes.length < 1){
12631             this.collapse(false, false);
12632         }else{
12633             this.ui.updateExpandIcon();
12634         }
12635         if(!this.firstChild) {
12636             this.childrenRendered = false;
12637         }
12638         return node;
12639     },
12640
12641     // private override
12642     insertBefore : function(node, refNode){
12643         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
12644         if(newNode && refNode && this.childrenRendered){
12645             node.render();
12646         }
12647         this.ui.updateExpandIcon();
12648         return newNode;
12649     },
12650
12651     /**
12652      * Sets the text for this node
12653      * @param {String} text
12654      */
12655     setText : function(text){
12656         var oldText = this.text;
12657         this.text = text;
12658         this.attributes.text = text;
12659         if(this.rendered){ // event without subscribing
12660             this.ui.onTextChange(this, text, oldText);
12661         }
12662         this.fireEvent("textchange", this, text, oldText);
12663     },
12664
12665     /**
12666      * Triggers selection of this node
12667      */
12668     select : function(){
12669         this.getOwnerTree().getSelectionModel().select(this);
12670     },
12671
12672     /**
12673      * Triggers deselection of this node
12674      */
12675     unselect : function(){
12676         this.getOwnerTree().getSelectionModel().unselect(this);
12677     },
12678
12679     /**
12680      * Returns true if this node is selected
12681      * @return {Boolean}
12682      */
12683     isSelected : function(){
12684         return this.getOwnerTree().getSelectionModel().isSelected(this);
12685     },
12686
12687     /**
12688      * Expand this node.
12689      * @param {Boolean} deep (optional) True to expand all children as well
12690      * @param {Boolean} anim (optional) false to cancel the default animation
12691      * @param {Function} callback (optional) A callback to be called when
12692      * expanding this node completes (does not wait for deep expand to complete).
12693      * Called with 1 parameter, this node.
12694      */
12695     expand : function(deep, anim, callback){
12696         if(!this.expanded){
12697             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
12698                 return;
12699             }
12700             if(!this.childrenRendered){
12701                 this.renderChildren();
12702             }
12703             this.expanded = true;
12704             
12705             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
12706                 this.ui.animExpand(function(){
12707                     this.fireEvent("expand", this);
12708                     if(typeof callback == "function"){
12709                         callback(this);
12710                     }
12711                     if(deep === true){
12712                         this.expandChildNodes(true);
12713                     }
12714                 }.createDelegate(this));
12715                 return;
12716             }else{
12717                 this.ui.expand();
12718                 this.fireEvent("expand", this);
12719                 if(typeof callback == "function"){
12720                     callback(this);
12721                 }
12722             }
12723         }else{
12724            if(typeof callback == "function"){
12725                callback(this);
12726            }
12727         }
12728         if(deep === true){
12729             this.expandChildNodes(true);
12730         }
12731     },
12732
12733     isHiddenRoot : function(){
12734         return this.isRoot && !this.getOwnerTree().rootVisible;
12735     },
12736
12737     /**
12738      * Collapse this node.
12739      * @param {Boolean} deep (optional) True to collapse all children as well
12740      * @param {Boolean} anim (optional) false to cancel the default animation
12741      */
12742     collapse : function(deep, anim){
12743         if(this.expanded && !this.isHiddenRoot()){
12744             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
12745                 return;
12746             }
12747             this.expanded = false;
12748             if((this.getOwnerTree().animate && anim !== false) || anim){
12749                 this.ui.animCollapse(function(){
12750                     this.fireEvent("collapse", this);
12751                     if(deep === true){
12752                         this.collapseChildNodes(true);
12753                     }
12754                 }.createDelegate(this));
12755                 return;
12756             }else{
12757                 this.ui.collapse();
12758                 this.fireEvent("collapse", this);
12759             }
12760         }
12761         if(deep === true){
12762             var cs = this.childNodes;
12763             for(var i = 0, len = cs.length; i < len; i++) {
12764                 cs[i].collapse(true, false);
12765             }
12766         }
12767     },
12768
12769     // private
12770     delayedExpand : function(delay){
12771         if(!this.expandProcId){
12772             this.expandProcId = this.expand.defer(delay, this);
12773         }
12774     },
12775
12776     // private
12777     cancelExpand : function(){
12778         if(this.expandProcId){
12779             clearTimeout(this.expandProcId);
12780         }
12781         this.expandProcId = false;
12782     },
12783
12784     /**
12785      * Toggles expanded/collapsed state of the node
12786      */
12787     toggle : function(){
12788         if(this.expanded){
12789             this.collapse();
12790         }else{
12791             this.expand();
12792         }
12793     },
12794
12795     /**
12796      * Ensures all parent nodes are expanded
12797      */
12798     ensureVisible : function(callback){
12799         var tree = this.getOwnerTree();
12800         tree.expandPath(this.parentNode.getPath(), false, function(){
12801             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
12802             Roo.callback(callback);
12803         }.createDelegate(this));
12804     },
12805
12806     /**
12807      * Expand all child nodes
12808      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
12809      */
12810     expandChildNodes : function(deep){
12811         var cs = this.childNodes;
12812         for(var i = 0, len = cs.length; i < len; i++) {
12813                 cs[i].expand(deep);
12814         }
12815     },
12816
12817     /**
12818      * Collapse all child nodes
12819      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
12820      */
12821     collapseChildNodes : function(deep){
12822         var cs = this.childNodes;
12823         for(var i = 0, len = cs.length; i < len; i++) {
12824                 cs[i].collapse(deep);
12825         }
12826     },
12827
12828     /**
12829      * Disables this node
12830      */
12831     disable : function(){
12832         this.disabled = true;
12833         this.unselect();
12834         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12835             this.ui.onDisableChange(this, true);
12836         }
12837         this.fireEvent("disabledchange", this, true);
12838     },
12839
12840     /**
12841      * Enables this node
12842      */
12843     enable : function(){
12844         this.disabled = false;
12845         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12846             this.ui.onDisableChange(this, false);
12847         }
12848         this.fireEvent("disabledchange", this, false);
12849     },
12850
12851     // private
12852     renderChildren : function(suppressEvent){
12853         if(suppressEvent !== false){
12854             this.fireEvent("beforechildrenrendered", this);
12855         }
12856         var cs = this.childNodes;
12857         for(var i = 0, len = cs.length; i < len; i++){
12858             cs[i].render(true);
12859         }
12860         this.childrenRendered = true;
12861     },
12862
12863     // private
12864     sort : function(fn, scope){
12865         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
12866         if(this.childrenRendered){
12867             var cs = this.childNodes;
12868             for(var i = 0, len = cs.length; i < len; i++){
12869                 cs[i].render(true);
12870             }
12871         }
12872     },
12873
12874     // private
12875     render : function(bulkRender){
12876         this.ui.render(bulkRender);
12877         if(!this.rendered){
12878             this.rendered = true;
12879             if(this.expanded){
12880                 this.expanded = false;
12881                 this.expand(false, false);
12882             }
12883         }
12884     },
12885
12886     // private
12887     renderIndent : function(deep, refresh){
12888         if(refresh){
12889             this.ui.childIndent = null;
12890         }
12891         this.ui.renderIndent();
12892         if(deep === true && this.childrenRendered){
12893             var cs = this.childNodes;
12894             for(var i = 0, len = cs.length; i < len; i++){
12895                 cs[i].renderIndent(true, refresh);
12896             }
12897         }
12898     }
12899 });/*
12900  * Based on:
12901  * Ext JS Library 1.1.1
12902  * Copyright(c) 2006-2007, Ext JS, LLC.
12903  *
12904  * Originally Released Under LGPL - original licence link has changed is not relivant.
12905  *
12906  * Fork - LGPL
12907  * <script type="text/javascript">
12908  */
12909  
12910 /**
12911  * @class Roo.tree.AsyncTreeNode
12912  * @extends Roo.tree.TreeNode
12913  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
12914  * @constructor
12915  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
12916  */
12917  Roo.tree.AsyncTreeNode = function(config){
12918     this.loaded = false;
12919     this.loading = false;
12920     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
12921     /**
12922     * @event beforeload
12923     * Fires before this node is loaded, return false to cancel
12924     * @param {Node} this This node
12925     */
12926     this.addEvents({'beforeload':true, 'load': true});
12927     /**
12928     * @event load
12929     * Fires when this node is loaded
12930     * @param {Node} this This node
12931     */
12932     /**
12933      * The loader used by this node (defaults to using the tree's defined loader)
12934      * @type TreeLoader
12935      * @property loader
12936      */
12937 };
12938 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
12939     expand : function(deep, anim, callback){
12940         if(this.loading){ // if an async load is already running, waiting til it's done
12941             var timer;
12942             var f = function(){
12943                 if(!this.loading){ // done loading
12944                     clearInterval(timer);
12945                     this.expand(deep, anim, callback);
12946                 }
12947             }.createDelegate(this);
12948             timer = setInterval(f, 200);
12949             return;
12950         }
12951         if(!this.loaded){
12952             if(this.fireEvent("beforeload", this) === false){
12953                 return;
12954             }
12955             this.loading = true;
12956             this.ui.beforeLoad(this);
12957             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
12958             if(loader){
12959                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
12960                 return;
12961             }
12962         }
12963         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
12964     },
12965     
12966     /**
12967      * Returns true if this node is currently loading
12968      * @return {Boolean}
12969      */
12970     isLoading : function(){
12971         return this.loading;  
12972     },
12973     
12974     loadComplete : function(deep, anim, callback){
12975         this.loading = false;
12976         this.loaded = true;
12977         this.ui.afterLoad(this);
12978         this.fireEvent("load", this);
12979         this.expand(deep, anim, callback);
12980     },
12981     
12982     /**
12983      * Returns true if this node has been loaded
12984      * @return {Boolean}
12985      */
12986     isLoaded : function(){
12987         return this.loaded;
12988     },
12989     
12990     hasChildNodes : function(){
12991         if(!this.isLeaf() && !this.loaded){
12992             return true;
12993         }else{
12994             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
12995         }
12996     },
12997
12998     /**
12999      * Trigger a reload for this node
13000      * @param {Function} callback
13001      */
13002     reload : function(callback){
13003         this.collapse(false, false);
13004         while(this.firstChild){
13005             this.removeChild(this.firstChild);
13006         }
13007         this.childrenRendered = false;
13008         this.loaded = false;
13009         if(this.isHiddenRoot()){
13010             this.expanded = false;
13011         }
13012         this.expand(false, false, callback);
13013     }
13014 });/*
13015  * Based on:
13016  * Ext JS Library 1.1.1
13017  * Copyright(c) 2006-2007, Ext JS, LLC.
13018  *
13019  * Originally Released Under LGPL - original licence link has changed is not relivant.
13020  *
13021  * Fork - LGPL
13022  * <script type="text/javascript">
13023  */
13024  
13025 /**
13026  * @class Roo.tree.TreeNodeUI
13027  * @constructor
13028  * @param {Object} node The node to render
13029  * The TreeNode UI implementation is separate from the
13030  * tree implementation. Unless you are customizing the tree UI,
13031  * you should never have to use this directly.
13032  */
13033 Roo.tree.TreeNodeUI = function(node){
13034     this.node = node;
13035     this.rendered = false;
13036     this.animating = false;
13037     this.emptyIcon = Roo.BLANK_IMAGE_URL;
13038 };
13039
13040 Roo.tree.TreeNodeUI.prototype = {
13041     removeChild : function(node){
13042         if(this.rendered){
13043             this.ctNode.removeChild(node.ui.getEl());
13044         }
13045     },
13046
13047     beforeLoad : function(){
13048          this.addClass("x-tree-node-loading");
13049     },
13050
13051     afterLoad : function(){
13052          this.removeClass("x-tree-node-loading");
13053     },
13054
13055     onTextChange : function(node, text, oldText){
13056         if(this.rendered){
13057             this.textNode.innerHTML = text;
13058         }
13059     },
13060
13061     onDisableChange : function(node, state){
13062         this.disabled = state;
13063         if(state){
13064             this.addClass("x-tree-node-disabled");
13065         }else{
13066             this.removeClass("x-tree-node-disabled");
13067         }
13068     },
13069
13070     onSelectedChange : function(state){
13071         if(state){
13072             this.focus();
13073             this.addClass("x-tree-selected");
13074         }else{
13075             //this.blur();
13076             this.removeClass("x-tree-selected");
13077         }
13078     },
13079
13080     onMove : function(tree, node, oldParent, newParent, index, refNode){
13081         this.childIndent = null;
13082         if(this.rendered){
13083             var targetNode = newParent.ui.getContainer();
13084             if(!targetNode){//target not rendered
13085                 this.holder = document.createElement("div");
13086                 this.holder.appendChild(this.wrap);
13087                 return;
13088             }
13089             var insertBefore = refNode ? refNode.ui.getEl() : null;
13090             if(insertBefore){
13091                 targetNode.insertBefore(this.wrap, insertBefore);
13092             }else{
13093                 targetNode.appendChild(this.wrap);
13094             }
13095             this.node.renderIndent(true);
13096         }
13097     },
13098
13099     addClass : function(cls){
13100         if(this.elNode){
13101             Roo.fly(this.elNode).addClass(cls);
13102         }
13103     },
13104
13105     removeClass : function(cls){
13106         if(this.elNode){
13107             Roo.fly(this.elNode).removeClass(cls);
13108         }
13109     },
13110
13111     remove : function(){
13112         if(this.rendered){
13113             this.holder = document.createElement("div");
13114             this.holder.appendChild(this.wrap);
13115         }
13116     },
13117
13118     fireEvent : function(){
13119         return this.node.fireEvent.apply(this.node, arguments);
13120     },
13121
13122     initEvents : function(){
13123         this.node.on("move", this.onMove, this);
13124         var E = Roo.EventManager;
13125         var a = this.anchor;
13126
13127         var el = Roo.fly(a, '_treeui');
13128
13129         if(Roo.isOpera){ // opera render bug ignores the CSS
13130             el.setStyle("text-decoration", "none");
13131         }
13132
13133         el.on("click", this.onClick, this);
13134         el.on("dblclick", this.onDblClick, this);
13135
13136         if(this.checkbox){
13137             Roo.EventManager.on(this.checkbox,
13138                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
13139         }
13140
13141         el.on("contextmenu", this.onContextMenu, this);
13142
13143         var icon = Roo.fly(this.iconNode);
13144         icon.on("click", this.onClick, this);
13145         icon.on("dblclick", this.onDblClick, this);
13146         icon.on("contextmenu", this.onContextMenu, this);
13147         E.on(this.ecNode, "click", this.ecClick, this, true);
13148
13149         if(this.node.disabled){
13150             this.addClass("x-tree-node-disabled");
13151         }
13152         if(this.node.hidden){
13153             this.addClass("x-tree-node-disabled");
13154         }
13155         var ot = this.node.getOwnerTree();
13156         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
13157         if(dd && (!this.node.isRoot || ot.rootVisible)){
13158             Roo.dd.Registry.register(this.elNode, {
13159                 node: this.node,
13160                 handles: this.getDDHandles(),
13161                 isHandle: false
13162             });
13163         }
13164     },
13165
13166     getDDHandles : function(){
13167         return [this.iconNode, this.textNode];
13168     },
13169
13170     hide : function(){
13171         if(this.rendered){
13172             this.wrap.style.display = "none";
13173         }
13174     },
13175
13176     show : function(){
13177         if(this.rendered){
13178             this.wrap.style.display = "";
13179         }
13180     },
13181
13182     onContextMenu : function(e){
13183         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
13184             e.preventDefault();
13185             this.focus();
13186             this.fireEvent("contextmenu", this.node, e);
13187         }
13188     },
13189
13190     onClick : function(e){
13191         if(this.dropping){
13192             e.stopEvent();
13193             return;
13194         }
13195         if(this.fireEvent("beforeclick", this.node, e) !== false){
13196             if(!this.disabled && this.node.attributes.href){
13197                 this.fireEvent("click", this.node, e);
13198                 return;
13199             }
13200             e.preventDefault();
13201             if(this.disabled){
13202                 return;
13203             }
13204
13205             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
13206                 this.node.toggle();
13207             }
13208
13209             this.fireEvent("click", this.node, e);
13210         }else{
13211             e.stopEvent();
13212         }
13213     },
13214
13215     onDblClick : function(e){
13216         e.preventDefault();
13217         if(this.disabled){
13218             return;
13219         }
13220         if(this.checkbox){
13221             this.toggleCheck();
13222         }
13223         if(!this.animating && this.node.hasChildNodes()){
13224             this.node.toggle();
13225         }
13226         this.fireEvent("dblclick", this.node, e);
13227     },
13228
13229     onCheckChange : function(){
13230         var checked = this.checkbox.checked;
13231         this.node.attributes.checked = checked;
13232         this.fireEvent('checkchange', this.node, checked);
13233     },
13234
13235     ecClick : function(e){
13236         if(!this.animating && this.node.hasChildNodes()){
13237             this.node.toggle();
13238         }
13239     },
13240
13241     startDrop : function(){
13242         this.dropping = true;
13243     },
13244
13245     // delayed drop so the click event doesn't get fired on a drop
13246     endDrop : function(){
13247        setTimeout(function(){
13248            this.dropping = false;
13249        }.createDelegate(this), 50);
13250     },
13251
13252     expand : function(){
13253         this.updateExpandIcon();
13254         this.ctNode.style.display = "";
13255     },
13256
13257     focus : function(){
13258         if(!this.node.preventHScroll){
13259             try{this.anchor.focus();
13260             }catch(e){}
13261         }else if(!Roo.isIE){
13262             try{
13263                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
13264                 var l = noscroll.scrollLeft;
13265                 this.anchor.focus();
13266                 noscroll.scrollLeft = l;
13267             }catch(e){}
13268         }
13269     },
13270
13271     toggleCheck : function(value){
13272         var cb = this.checkbox;
13273         if(cb){
13274             cb.checked = (value === undefined ? !cb.checked : value);
13275         }
13276     },
13277
13278     blur : function(){
13279         try{
13280             this.anchor.blur();
13281         }catch(e){}
13282     },
13283
13284     animExpand : function(callback){
13285         var ct = Roo.get(this.ctNode);
13286         ct.stopFx();
13287         if(!this.node.hasChildNodes()){
13288             this.updateExpandIcon();
13289             this.ctNode.style.display = "";
13290             Roo.callback(callback);
13291             return;
13292         }
13293         this.animating = true;
13294         this.updateExpandIcon();
13295
13296         ct.slideIn('t', {
13297            callback : function(){
13298                this.animating = false;
13299                Roo.callback(callback);
13300             },
13301             scope: this,
13302             duration: this.node.ownerTree.duration || .25
13303         });
13304     },
13305
13306     highlight : function(){
13307         var tree = this.node.getOwnerTree();
13308         Roo.fly(this.wrap).highlight(
13309             tree.hlColor || "C3DAF9",
13310             {endColor: tree.hlBaseColor}
13311         );
13312     },
13313
13314     collapse : function(){
13315         this.updateExpandIcon();
13316         this.ctNode.style.display = "none";
13317     },
13318
13319     animCollapse : function(callback){
13320         var ct = Roo.get(this.ctNode);
13321         ct.enableDisplayMode('block');
13322         ct.stopFx();
13323
13324         this.animating = true;
13325         this.updateExpandIcon();
13326
13327         ct.slideOut('t', {
13328             callback : function(){
13329                this.animating = false;
13330                Roo.callback(callback);
13331             },
13332             scope: this,
13333             duration: this.node.ownerTree.duration || .25
13334         });
13335     },
13336
13337     getContainer : function(){
13338         return this.ctNode;
13339     },
13340
13341     getEl : function(){
13342         return this.wrap;
13343     },
13344
13345     appendDDGhost : function(ghostNode){
13346         ghostNode.appendChild(this.elNode.cloneNode(true));
13347     },
13348
13349     getDDRepairXY : function(){
13350         return Roo.lib.Dom.getXY(this.iconNode);
13351     },
13352
13353     onRender : function(){
13354         this.render();
13355     },
13356
13357     render : function(bulkRender){
13358         var n = this.node, a = n.attributes;
13359         var targetNode = n.parentNode ?
13360               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
13361
13362         if(!this.rendered){
13363             this.rendered = true;
13364
13365             this.renderElements(n, a, targetNode, bulkRender);
13366
13367             if(a.qtip){
13368                if(this.textNode.setAttributeNS){
13369                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
13370                    if(a.qtipTitle){
13371                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
13372                    }
13373                }else{
13374                    this.textNode.setAttribute("ext:qtip", a.qtip);
13375                    if(a.qtipTitle){
13376                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
13377                    }
13378                }
13379             }else if(a.qtipCfg){
13380                 a.qtipCfg.target = Roo.id(this.textNode);
13381                 Roo.QuickTips.register(a.qtipCfg);
13382             }
13383             this.initEvents();
13384             if(!this.node.expanded){
13385                 this.updateExpandIcon();
13386             }
13387         }else{
13388             if(bulkRender === true) {
13389                 targetNode.appendChild(this.wrap);
13390             }
13391         }
13392     },
13393
13394     renderElements : function(n, a, targetNode, bulkRender)
13395     {
13396         // add some indent caching, this helps performance when rendering a large tree
13397         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
13398         var t = n.getOwnerTree();
13399         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
13400         if (typeof(n.attributes.html) != 'undefined') {
13401             txt = n.attributes.html;
13402         }
13403         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
13404         var cb = typeof a.checked == 'boolean';
13405         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
13406         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
13407             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
13408             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
13409             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
13410             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
13411             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
13412              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
13413                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
13414             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
13415             "</li>"];
13416
13417         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
13418             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
13419                                 n.nextSibling.ui.getEl(), buf.join(""));
13420         }else{
13421             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
13422         }
13423
13424         this.elNode = this.wrap.childNodes[0];
13425         this.ctNode = this.wrap.childNodes[1];
13426         var cs = this.elNode.childNodes;
13427         this.indentNode = cs[0];
13428         this.ecNode = cs[1];
13429         this.iconNode = cs[2];
13430         var index = 3;
13431         if(cb){
13432             this.checkbox = cs[3];
13433             index++;
13434         }
13435         this.anchor = cs[index];
13436         this.textNode = cs[index].firstChild;
13437     },
13438
13439     getAnchor : function(){
13440         return this.anchor;
13441     },
13442
13443     getTextEl : function(){
13444         return this.textNode;
13445     },
13446
13447     getIconEl : function(){
13448         return this.iconNode;
13449     },
13450
13451     isChecked : function(){
13452         return this.checkbox ? this.checkbox.checked : false;
13453     },
13454
13455     updateExpandIcon : function(){
13456         if(this.rendered){
13457             var n = this.node, c1, c2;
13458             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
13459             var hasChild = n.hasChildNodes();
13460             if(hasChild){
13461                 if(n.expanded){
13462                     cls += "-minus";
13463                     c1 = "x-tree-node-collapsed";
13464                     c2 = "x-tree-node-expanded";
13465                 }else{
13466                     cls += "-plus";
13467                     c1 = "x-tree-node-expanded";
13468                     c2 = "x-tree-node-collapsed";
13469                 }
13470                 if(this.wasLeaf){
13471                     this.removeClass("x-tree-node-leaf");
13472                     this.wasLeaf = false;
13473                 }
13474                 if(this.c1 != c1 || this.c2 != c2){
13475                     Roo.fly(this.elNode).replaceClass(c1, c2);
13476                     this.c1 = c1; this.c2 = c2;
13477                 }
13478             }else{
13479                 // this changes non-leafs into leafs if they have no children.
13480                 // it's not very rational behaviour..
13481                 
13482                 if(!this.wasLeaf && this.node.leaf){
13483                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
13484                     delete this.c1;
13485                     delete this.c2;
13486                     this.wasLeaf = true;
13487                 }
13488             }
13489             var ecc = "x-tree-ec-icon "+cls;
13490             if(this.ecc != ecc){
13491                 this.ecNode.className = ecc;
13492                 this.ecc = ecc;
13493             }
13494         }
13495     },
13496
13497     getChildIndent : function(){
13498         if(!this.childIndent){
13499             var buf = [];
13500             var p = this.node;
13501             while(p){
13502                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
13503                     if(!p.isLast()) {
13504                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
13505                     } else {
13506                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
13507                     }
13508                 }
13509                 p = p.parentNode;
13510             }
13511             this.childIndent = buf.join("");
13512         }
13513         return this.childIndent;
13514     },
13515
13516     renderIndent : function(){
13517         if(this.rendered){
13518             var indent = "";
13519             var p = this.node.parentNode;
13520             if(p){
13521                 indent = p.ui.getChildIndent();
13522             }
13523             if(this.indentMarkup != indent){ // don't rerender if not required
13524                 this.indentNode.innerHTML = indent;
13525                 this.indentMarkup = indent;
13526             }
13527             this.updateExpandIcon();
13528         }
13529     }
13530 };
13531
13532 Roo.tree.RootTreeNodeUI = function(){
13533     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
13534 };
13535 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
13536     render : function(){
13537         if(!this.rendered){
13538             var targetNode = this.node.ownerTree.innerCt.dom;
13539             this.node.expanded = true;
13540             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
13541             this.wrap = this.ctNode = targetNode.firstChild;
13542         }
13543     },
13544     collapse : function(){
13545     },
13546     expand : function(){
13547     }
13548 });/*
13549  * Based on:
13550  * Ext JS Library 1.1.1
13551  * Copyright(c) 2006-2007, Ext JS, LLC.
13552  *
13553  * Originally Released Under LGPL - original licence link has changed is not relivant.
13554  *
13555  * Fork - LGPL
13556  * <script type="text/javascript">
13557  */
13558 /**
13559  * @class Roo.tree.TreeLoader
13560  * @extends Roo.util.Observable
13561  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
13562  * nodes from a specified URL. The response must be a javascript Array definition
13563  * who's elements are node definition objects. eg:
13564  * <pre><code>
13565 {  success : true,
13566    data :      [
13567    
13568     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
13569     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
13570     ]
13571 }
13572
13573
13574 </code></pre>
13575  * <br><br>
13576  * The old style respose with just an array is still supported, but not recommended.
13577  * <br><br>
13578  *
13579  * A server request is sent, and child nodes are loaded only when a node is expanded.
13580  * The loading node's id is passed to the server under the parameter name "node" to
13581  * enable the server to produce the correct child nodes.
13582  * <br><br>
13583  * To pass extra parameters, an event handler may be attached to the "beforeload"
13584  * event, and the parameters specified in the TreeLoader's baseParams property:
13585  * <pre><code>
13586     myTreeLoader.on("beforeload", function(treeLoader, node) {
13587         this.baseParams.category = node.attributes.category;
13588     }, this);
13589     
13590 </code></pre>
13591  *
13592  * This would pass an HTTP parameter called "category" to the server containing
13593  * the value of the Node's "category" attribute.
13594  * @constructor
13595  * Creates a new Treeloader.
13596  * @param {Object} config A config object containing config properties.
13597  */
13598 Roo.tree.TreeLoader = function(config){
13599     this.baseParams = {};
13600     this.requestMethod = "POST";
13601     Roo.apply(this, config);
13602
13603     this.addEvents({
13604     
13605         /**
13606          * @event beforeload
13607          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
13608          * @param {Object} This TreeLoader object.
13609          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13610          * @param {Object} callback The callback function specified in the {@link #load} call.
13611          */
13612         beforeload : true,
13613         /**
13614          * @event load
13615          * Fires when the node has been successfuly loaded.
13616          * @param {Object} This TreeLoader object.
13617          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13618          * @param {Object} response The response object containing the data from the server.
13619          */
13620         load : true,
13621         /**
13622          * @event loadexception
13623          * Fires if the network request failed.
13624          * @param {Object} This TreeLoader object.
13625          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13626          * @param {Object} response The response object containing the data from the server.
13627          */
13628         loadexception : true,
13629         /**
13630          * @event create
13631          * Fires before a node is created, enabling you to return custom Node types 
13632          * @param {Object} This TreeLoader object.
13633          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
13634          */
13635         create : true
13636     });
13637
13638     Roo.tree.TreeLoader.superclass.constructor.call(this);
13639 };
13640
13641 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
13642     /**
13643     * @cfg {String} dataUrl The URL from which to request a Json string which
13644     * specifies an array of node definition object representing the child nodes
13645     * to be loaded.
13646     */
13647     /**
13648     * @cfg {String} requestMethod either GET or POST
13649     * defaults to POST (due to BC)
13650     * to be loaded.
13651     */
13652     /**
13653     * @cfg {Object} baseParams (optional) An object containing properties which
13654     * specify HTTP parameters to be passed to each request for child nodes.
13655     */
13656     /**
13657     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
13658     * created by this loader. If the attributes sent by the server have an attribute in this object,
13659     * they take priority.
13660     */
13661     /**
13662     * @cfg {Object} uiProviders (optional) An object containing properties which
13663     * 
13664     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
13665     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
13666     * <i>uiProvider</i> attribute of a returned child node is a string rather
13667     * than a reference to a TreeNodeUI implementation, this that string value
13668     * is used as a property name in the uiProviders object. You can define the provider named
13669     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
13670     */
13671     uiProviders : {},
13672
13673     /**
13674     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
13675     * child nodes before loading.
13676     */
13677     clearOnLoad : true,
13678
13679     /**
13680     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
13681     * property on loading, rather than expecting an array. (eg. more compatible to a standard
13682     * Grid query { data : [ .....] }
13683     */
13684     
13685     root : false,
13686      /**
13687     * @cfg {String} queryParam (optional) 
13688     * Name of the query as it will be passed on the querystring (defaults to 'node')
13689     * eg. the request will be ?node=[id]
13690     */
13691     
13692     
13693     queryParam: false,
13694     
13695     /**
13696      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
13697      * This is called automatically when a node is expanded, but may be used to reload
13698      * a node (or append new children if the {@link #clearOnLoad} option is false.)
13699      * @param {Roo.tree.TreeNode} node
13700      * @param {Function} callback
13701      */
13702     load : function(node, callback){
13703         if(this.clearOnLoad){
13704             while(node.firstChild){
13705                 node.removeChild(node.firstChild);
13706             }
13707         }
13708         if(node.attributes.children){ // preloaded json children
13709             var cs = node.attributes.children;
13710             for(var i = 0, len = cs.length; i < len; i++){
13711                 node.appendChild(this.createNode(cs[i]));
13712             }
13713             if(typeof callback == "function"){
13714                 callback();
13715             }
13716         }else if(this.dataUrl){
13717             this.requestData(node, callback);
13718         }
13719     },
13720
13721     getParams: function(node){
13722         var buf = [], bp = this.baseParams;
13723         for(var key in bp){
13724             if(typeof bp[key] != "function"){
13725                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
13726             }
13727         }
13728         var n = this.queryParam === false ? 'node' : this.queryParam;
13729         buf.push(n + "=", encodeURIComponent(node.id));
13730         return buf.join("");
13731     },
13732
13733     requestData : function(node, callback){
13734         if(this.fireEvent("beforeload", this, node, callback) !== false){
13735             this.transId = Roo.Ajax.request({
13736                 method:this.requestMethod,
13737                 url: this.dataUrl||this.url,
13738                 success: this.handleResponse,
13739                 failure: this.handleFailure,
13740                 scope: this,
13741                 argument: {callback: callback, node: node},
13742                 params: this.getParams(node)
13743             });
13744         }else{
13745             // if the load is cancelled, make sure we notify
13746             // the node that we are done
13747             if(typeof callback == "function"){
13748                 callback();
13749             }
13750         }
13751     },
13752
13753     isLoading : function(){
13754         return this.transId ? true : false;
13755     },
13756
13757     abort : function(){
13758         if(this.isLoading()){
13759             Roo.Ajax.abort(this.transId);
13760         }
13761     },
13762
13763     // private
13764     createNode : function(attr)
13765     {
13766         // apply baseAttrs, nice idea Corey!
13767         if(this.baseAttrs){
13768             Roo.applyIf(attr, this.baseAttrs);
13769         }
13770         if(this.applyLoader !== false){
13771             attr.loader = this;
13772         }
13773         // uiProvider = depreciated..
13774         
13775         if(typeof(attr.uiProvider) == 'string'){
13776            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
13777                 /**  eval:var:attr */ eval(attr.uiProvider);
13778         }
13779         if(typeof(this.uiProviders['default']) != 'undefined') {
13780             attr.uiProvider = this.uiProviders['default'];
13781         }
13782         
13783         this.fireEvent('create', this, attr);
13784         
13785         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
13786         return(attr.leaf ?
13787                         new Roo.tree.TreeNode(attr) :
13788                         new Roo.tree.AsyncTreeNode(attr));
13789     },
13790
13791     processResponse : function(response, node, callback)
13792     {
13793         var json = response.responseText;
13794         try {
13795             
13796             var o = Roo.decode(json);
13797             
13798             if (this.root === false && typeof(o.success) != undefined) {
13799                 this.root = 'data'; // the default behaviour for list like data..
13800                 }
13801                 
13802             if (this.root !== false &&  !o.success) {
13803                 // it's a failure condition.
13804                 var a = response.argument;
13805                 this.fireEvent("loadexception", this, a.node, response);
13806                 Roo.log("Load failed - should have a handler really");
13807                 return;
13808             }
13809             
13810             
13811             
13812             if (this.root !== false) {
13813                  o = o[this.root];
13814             }
13815             
13816             for(var i = 0, len = o.length; i < len; i++){
13817                 var n = this.createNode(o[i]);
13818                 if(n){
13819                     node.appendChild(n);
13820                 }
13821             }
13822             if(typeof callback == "function"){
13823                 callback(this, node);
13824             }
13825         }catch(e){
13826             this.handleFailure(response);
13827         }
13828     },
13829
13830     handleResponse : function(response){
13831         this.transId = false;
13832         var a = response.argument;
13833         this.processResponse(response, a.node, a.callback);
13834         this.fireEvent("load", this, a.node, response);
13835     },
13836
13837     handleFailure : function(response)
13838     {
13839         // should handle failure better..
13840         this.transId = false;
13841         var a = response.argument;
13842         this.fireEvent("loadexception", this, a.node, response);
13843         if(typeof a.callback == "function"){
13844             a.callback(this, a.node);
13845         }
13846     }
13847 });/*
13848  * Based on:
13849  * Ext JS Library 1.1.1
13850  * Copyright(c) 2006-2007, Ext JS, LLC.
13851  *
13852  * Originally Released Under LGPL - original licence link has changed is not relivant.
13853  *
13854  * Fork - LGPL
13855  * <script type="text/javascript">
13856  */
13857
13858 /**
13859 * @class Roo.tree.TreeFilter
13860 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
13861 * @param {TreePanel} tree
13862 * @param {Object} config (optional)
13863  */
13864 Roo.tree.TreeFilter = function(tree, config){
13865     this.tree = tree;
13866     this.filtered = {};
13867     Roo.apply(this, config);
13868 };
13869
13870 Roo.tree.TreeFilter.prototype = {
13871     clearBlank:false,
13872     reverse:false,
13873     autoClear:false,
13874     remove:false,
13875
13876      /**
13877      * Filter the data by a specific attribute.
13878      * @param {String/RegExp} value Either string that the attribute value
13879      * should start with or a RegExp to test against the attribute
13880      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
13881      * @param {TreeNode} startNode (optional) The node to start the filter at.
13882      */
13883     filter : function(value, attr, startNode){
13884         attr = attr || "text";
13885         var f;
13886         if(typeof value == "string"){
13887             var vlen = value.length;
13888             // auto clear empty filter
13889             if(vlen == 0 && this.clearBlank){
13890                 this.clear();
13891                 return;
13892             }
13893             value = value.toLowerCase();
13894             f = function(n){
13895                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
13896             };
13897         }else if(value.exec){ // regex?
13898             f = function(n){
13899                 return value.test(n.attributes[attr]);
13900             };
13901         }else{
13902             throw 'Illegal filter type, must be string or regex';
13903         }
13904         this.filterBy(f, null, startNode);
13905         },
13906
13907     /**
13908      * Filter by a function. The passed function will be called with each
13909      * node in the tree (or from the startNode). If the function returns true, the node is kept
13910      * otherwise it is filtered. If a node is filtered, its children are also filtered.
13911      * @param {Function} fn The filter function
13912      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
13913      */
13914     filterBy : function(fn, scope, startNode){
13915         startNode = startNode || this.tree.root;
13916         if(this.autoClear){
13917             this.clear();
13918         }
13919         var af = this.filtered, rv = this.reverse;
13920         var f = function(n){
13921             if(n == startNode){
13922                 return true;
13923             }
13924             if(af[n.id]){
13925                 return false;
13926             }
13927             var m = fn.call(scope || n, n);
13928             if(!m || rv){
13929                 af[n.id] = n;
13930                 n.ui.hide();
13931                 return false;
13932             }
13933             return true;
13934         };
13935         startNode.cascade(f);
13936         if(this.remove){
13937            for(var id in af){
13938                if(typeof id != "function"){
13939                    var n = af[id];
13940                    if(n && n.parentNode){
13941                        n.parentNode.removeChild(n);
13942                    }
13943                }
13944            }
13945         }
13946     },
13947
13948     /**
13949      * Clears the current filter. Note: with the "remove" option
13950      * set a filter cannot be cleared.
13951      */
13952     clear : function(){
13953         var t = this.tree;
13954         var af = this.filtered;
13955         for(var id in af){
13956             if(typeof id != "function"){
13957                 var n = af[id];
13958                 if(n){
13959                     n.ui.show();
13960                 }
13961             }
13962         }
13963         this.filtered = {};
13964     }
13965 };
13966 /*
13967  * Based on:
13968  * Ext JS Library 1.1.1
13969  * Copyright(c) 2006-2007, Ext JS, LLC.
13970  *
13971  * Originally Released Under LGPL - original licence link has changed is not relivant.
13972  *
13973  * Fork - LGPL
13974  * <script type="text/javascript">
13975  */
13976  
13977
13978 /**
13979  * @class Roo.tree.TreeSorter
13980  * Provides sorting of nodes in a TreePanel
13981  * 
13982  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
13983  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
13984  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
13985  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
13986  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
13987  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
13988  * @constructor
13989  * @param {TreePanel} tree
13990  * @param {Object} config
13991  */
13992 Roo.tree.TreeSorter = function(tree, config){
13993     Roo.apply(this, config);
13994     tree.on("beforechildrenrendered", this.doSort, this);
13995     tree.on("append", this.updateSort, this);
13996     tree.on("insert", this.updateSort, this);
13997     
13998     var dsc = this.dir && this.dir.toLowerCase() == "desc";
13999     var p = this.property || "text";
14000     var sortType = this.sortType;
14001     var fs = this.folderSort;
14002     var cs = this.caseSensitive === true;
14003     var leafAttr = this.leafAttr || 'leaf';
14004
14005     this.sortFn = function(n1, n2){
14006         if(fs){
14007             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
14008                 return 1;
14009             }
14010             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
14011                 return -1;
14012             }
14013         }
14014         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
14015         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
14016         if(v1 < v2){
14017                         return dsc ? +1 : -1;
14018                 }else if(v1 > v2){
14019                         return dsc ? -1 : +1;
14020         }else{
14021                 return 0;
14022         }
14023     };
14024 };
14025
14026 Roo.tree.TreeSorter.prototype = {
14027     doSort : function(node){
14028         node.sort(this.sortFn);
14029     },
14030     
14031     compareNodes : function(n1, n2){
14032         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
14033     },
14034     
14035     updateSort : function(tree, node){
14036         if(node.childrenRendered){
14037             this.doSort.defer(1, this, [node]);
14038         }
14039     }
14040 };/*
14041  * Based on:
14042  * Ext JS Library 1.1.1
14043  * Copyright(c) 2006-2007, Ext JS, LLC.
14044  *
14045  * Originally Released Under LGPL - original licence link has changed is not relivant.
14046  *
14047  * Fork - LGPL
14048  * <script type="text/javascript">
14049  */
14050
14051 if(Roo.dd.DropZone){
14052     
14053 Roo.tree.TreeDropZone = function(tree, config){
14054     this.allowParentInsert = false;
14055     this.allowContainerDrop = false;
14056     this.appendOnly = false;
14057     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
14058     this.tree = tree;
14059     this.lastInsertClass = "x-tree-no-status";
14060     this.dragOverData = {};
14061 };
14062
14063 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
14064     ddGroup : "TreeDD",
14065     scroll:  true,
14066     
14067     expandDelay : 1000,
14068     
14069     expandNode : function(node){
14070         if(node.hasChildNodes() && !node.isExpanded()){
14071             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
14072         }
14073     },
14074     
14075     queueExpand : function(node){
14076         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
14077     },
14078     
14079     cancelExpand : function(){
14080         if(this.expandProcId){
14081             clearTimeout(this.expandProcId);
14082             this.expandProcId = false;
14083         }
14084     },
14085     
14086     isValidDropPoint : function(n, pt, dd, e, data){
14087         if(!n || !data){ return false; }
14088         var targetNode = n.node;
14089         var dropNode = data.node;
14090         // default drop rules
14091         if(!(targetNode && targetNode.isTarget && pt)){
14092             return false;
14093         }
14094         if(pt == "append" && targetNode.allowChildren === false){
14095             return false;
14096         }
14097         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
14098             return false;
14099         }
14100         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
14101             return false;
14102         }
14103         // reuse the object
14104         var overEvent = this.dragOverData;
14105         overEvent.tree = this.tree;
14106         overEvent.target = targetNode;
14107         overEvent.data = data;
14108         overEvent.point = pt;
14109         overEvent.source = dd;
14110         overEvent.rawEvent = e;
14111         overEvent.dropNode = dropNode;
14112         overEvent.cancel = false;  
14113         var result = this.tree.fireEvent("nodedragover", overEvent);
14114         return overEvent.cancel === false && result !== false;
14115     },
14116     
14117     getDropPoint : function(e, n, dd)
14118     {
14119         var tn = n.node;
14120         if(tn.isRoot){
14121             return tn.allowChildren !== false ? "append" : false; // always append for root
14122         }
14123         var dragEl = n.ddel;
14124         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
14125         var y = Roo.lib.Event.getPageY(e);
14126         //var noAppend = tn.allowChildren === false || tn.isLeaf();
14127         
14128         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
14129         var noAppend = tn.allowChildren === false;
14130         if(this.appendOnly || tn.parentNode.allowChildren === false){
14131             return noAppend ? false : "append";
14132         }
14133         var noBelow = false;
14134         if(!this.allowParentInsert){
14135             noBelow = tn.hasChildNodes() && tn.isExpanded();
14136         }
14137         var q = (b - t) / (noAppend ? 2 : 3);
14138         if(y >= t && y < (t + q)){
14139             return "above";
14140         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
14141             return "below";
14142         }else{
14143             return "append";
14144         }
14145     },
14146     
14147     onNodeEnter : function(n, dd, e, data)
14148     {
14149         this.cancelExpand();
14150     },
14151     
14152     onNodeOver : function(n, dd, e, data)
14153     {
14154        
14155         var pt = this.getDropPoint(e, n, dd);
14156         var node = n.node;
14157         
14158         // auto node expand check
14159         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
14160             this.queueExpand(node);
14161         }else if(pt != "append"){
14162             this.cancelExpand();
14163         }
14164         
14165         // set the insert point style on the target node
14166         var returnCls = this.dropNotAllowed;
14167         if(this.isValidDropPoint(n, pt, dd, e, data)){
14168            if(pt){
14169                var el = n.ddel;
14170                var cls;
14171                if(pt == "above"){
14172                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
14173                    cls = "x-tree-drag-insert-above";
14174                }else if(pt == "below"){
14175                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
14176                    cls = "x-tree-drag-insert-below";
14177                }else{
14178                    returnCls = "x-tree-drop-ok-append";
14179                    cls = "x-tree-drag-append";
14180                }
14181                if(this.lastInsertClass != cls){
14182                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
14183                    this.lastInsertClass = cls;
14184                }
14185            }
14186        }
14187        return returnCls;
14188     },
14189     
14190     onNodeOut : function(n, dd, e, data){
14191         
14192         this.cancelExpand();
14193         this.removeDropIndicators(n);
14194     },
14195     
14196     onNodeDrop : function(n, dd, e, data){
14197         var point = this.getDropPoint(e, n, dd);
14198         var targetNode = n.node;
14199         targetNode.ui.startDrop();
14200         if(!this.isValidDropPoint(n, point, dd, e, data)){
14201             targetNode.ui.endDrop();
14202             return false;
14203         }
14204         // first try to find the drop node
14205         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
14206         var dropEvent = {
14207             tree : this.tree,
14208             target: targetNode,
14209             data: data,
14210             point: point,
14211             source: dd,
14212             rawEvent: e,
14213             dropNode: dropNode,
14214             cancel: !dropNode   
14215         };
14216         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
14217         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
14218             targetNode.ui.endDrop();
14219             return false;
14220         }
14221         // allow target changing
14222         targetNode = dropEvent.target;
14223         if(point == "append" && !targetNode.isExpanded()){
14224             targetNode.expand(false, null, function(){
14225                 this.completeDrop(dropEvent);
14226             }.createDelegate(this));
14227         }else{
14228             this.completeDrop(dropEvent);
14229         }
14230         return true;
14231     },
14232     
14233     completeDrop : function(de){
14234         var ns = de.dropNode, p = de.point, t = de.target;
14235         if(!(ns instanceof Array)){
14236             ns = [ns];
14237         }
14238         var n;
14239         for(var i = 0, len = ns.length; i < len; i++){
14240             n = ns[i];
14241             if(p == "above"){
14242                 t.parentNode.insertBefore(n, t);
14243             }else if(p == "below"){
14244                 t.parentNode.insertBefore(n, t.nextSibling);
14245             }else{
14246                 t.appendChild(n);
14247             }
14248         }
14249         n.ui.focus();
14250         if(this.tree.hlDrop){
14251             n.ui.highlight();
14252         }
14253         t.ui.endDrop();
14254         this.tree.fireEvent("nodedrop", de);
14255     },
14256     
14257     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
14258         if(this.tree.hlDrop){
14259             dropNode.ui.focus();
14260             dropNode.ui.highlight();
14261         }
14262         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
14263     },
14264     
14265     getTree : function(){
14266         return this.tree;
14267     },
14268     
14269     removeDropIndicators : function(n){
14270         if(n && n.ddel){
14271             var el = n.ddel;
14272             Roo.fly(el).removeClass([
14273                     "x-tree-drag-insert-above",
14274                     "x-tree-drag-insert-below",
14275                     "x-tree-drag-append"]);
14276             this.lastInsertClass = "_noclass";
14277         }
14278     },
14279     
14280     beforeDragDrop : function(target, e, id){
14281         this.cancelExpand();
14282         return true;
14283     },
14284     
14285     afterRepair : function(data){
14286         if(data && Roo.enableFx){
14287             data.node.ui.highlight();
14288         }
14289         this.hideProxy();
14290     } 
14291     
14292 });
14293
14294 }
14295 /*
14296  * Based on:
14297  * Ext JS Library 1.1.1
14298  * Copyright(c) 2006-2007, Ext JS, LLC.
14299  *
14300  * Originally Released Under LGPL - original licence link has changed is not relivant.
14301  *
14302  * Fork - LGPL
14303  * <script type="text/javascript">
14304  */
14305  
14306
14307 if(Roo.dd.DragZone){
14308 Roo.tree.TreeDragZone = function(tree, config){
14309     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
14310     this.tree = tree;
14311 };
14312
14313 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
14314     ddGroup : "TreeDD",
14315    
14316     onBeforeDrag : function(data, e){
14317         var n = data.node;
14318         return n && n.draggable && !n.disabled;
14319     },
14320      
14321     
14322     onInitDrag : function(e){
14323         var data = this.dragData;
14324         this.tree.getSelectionModel().select(data.node);
14325         this.proxy.update("");
14326         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
14327         this.tree.fireEvent("startdrag", this.tree, data.node, e);
14328     },
14329     
14330     getRepairXY : function(e, data){
14331         return data.node.ui.getDDRepairXY();
14332     },
14333     
14334     onEndDrag : function(data, e){
14335         this.tree.fireEvent("enddrag", this.tree, data.node, e);
14336         
14337         
14338     },
14339     
14340     onValidDrop : function(dd, e, id){
14341         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
14342         this.hideProxy();
14343     },
14344     
14345     beforeInvalidDrop : function(e, id){
14346         // this scrolls the original position back into view
14347         var sm = this.tree.getSelectionModel();
14348         sm.clearSelections();
14349         sm.select(this.dragData.node);
14350     }
14351 });
14352 }/*
14353  * Based on:
14354  * Ext JS Library 1.1.1
14355  * Copyright(c) 2006-2007, Ext JS, LLC.
14356  *
14357  * Originally Released Under LGPL - original licence link has changed is not relivant.
14358  *
14359  * Fork - LGPL
14360  * <script type="text/javascript">
14361  */
14362 /**
14363  * @class Roo.tree.TreeEditor
14364  * @extends Roo.Editor
14365  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
14366  * as the editor field.
14367  * @constructor
14368  * @param {Object} config (used to be the tree panel.)
14369  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
14370  * 
14371  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
14372  * @cfg {Roo.form.TextField|Object} field The field configuration
14373  *
14374  * 
14375  */
14376 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
14377     var tree = config;
14378     var field;
14379     if (oldconfig) { // old style..
14380         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
14381     } else {
14382         // new style..
14383         tree = config.tree;
14384         config.field = config.field  || {};
14385         config.field.xtype = 'TextField';
14386         field = Roo.factory(config.field, Roo.form);
14387     }
14388     config = config || {};
14389     
14390     
14391     this.addEvents({
14392         /**
14393          * @event beforenodeedit
14394          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
14395          * false from the handler of this event.
14396          * @param {Editor} this
14397          * @param {Roo.tree.Node} node 
14398          */
14399         "beforenodeedit" : true
14400     });
14401     
14402     //Roo.log(config);
14403     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
14404
14405     this.tree = tree;
14406
14407     tree.on('beforeclick', this.beforeNodeClick, this);
14408     tree.getTreeEl().on('mousedown', this.hide, this);
14409     this.on('complete', this.updateNode, this);
14410     this.on('beforestartedit', this.fitToTree, this);
14411     this.on('startedit', this.bindScroll, this, {delay:10});
14412     this.on('specialkey', this.onSpecialKey, this);
14413 };
14414
14415 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
14416     /**
14417      * @cfg {String} alignment
14418      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
14419      */
14420     alignment: "l-l",
14421     // inherit
14422     autoSize: false,
14423     /**
14424      * @cfg {Boolean} hideEl
14425      * True to hide the bound element while the editor is displayed (defaults to false)
14426      */
14427     hideEl : false,
14428     /**
14429      * @cfg {String} cls
14430      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
14431      */
14432     cls: "x-small-editor x-tree-editor",
14433     /**
14434      * @cfg {Boolean} shim
14435      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
14436      */
14437     shim:false,
14438     // inherit
14439     shadow:"frame",
14440     /**
14441      * @cfg {Number} maxWidth
14442      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
14443      * the containing tree element's size, it will be automatically limited for you to the container width, taking
14444      * scroll and client offsets into account prior to each edit.
14445      */
14446     maxWidth: 250,
14447
14448     editDelay : 350,
14449
14450     // private
14451     fitToTree : function(ed, el){
14452         var td = this.tree.getTreeEl().dom, nd = el.dom;
14453         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
14454             td.scrollLeft = nd.offsetLeft;
14455         }
14456         var w = Math.min(
14457                 this.maxWidth,
14458                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
14459         this.setSize(w, '');
14460         
14461         return this.fireEvent('beforenodeedit', this, this.editNode);
14462         
14463     },
14464
14465     // private
14466     triggerEdit : function(node){
14467         this.completeEdit();
14468         this.editNode = node;
14469         this.startEdit(node.ui.textNode, node.text);
14470     },
14471
14472     // private
14473     bindScroll : function(){
14474         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
14475     },
14476
14477     // private
14478     beforeNodeClick : function(node, e){
14479         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
14480         this.lastClick = new Date();
14481         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
14482             e.stopEvent();
14483             this.triggerEdit(node);
14484             return false;
14485         }
14486         return true;
14487     },
14488
14489     // private
14490     updateNode : function(ed, value){
14491         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
14492         this.editNode.setText(value);
14493     },
14494
14495     // private
14496     onHide : function(){
14497         Roo.tree.TreeEditor.superclass.onHide.call(this);
14498         if(this.editNode){
14499             this.editNode.ui.focus();
14500         }
14501     },
14502
14503     // private
14504     onSpecialKey : function(field, e){
14505         var k = e.getKey();
14506         if(k == e.ESC){
14507             e.stopEvent();
14508             this.cancelEdit();
14509         }else if(k == e.ENTER && !e.hasModifier()){
14510             e.stopEvent();
14511             this.completeEdit();
14512         }
14513     }
14514 });//<Script type="text/javascript">
14515 /*
14516  * Based on:
14517  * Ext JS Library 1.1.1
14518  * Copyright(c) 2006-2007, Ext JS, LLC.
14519  *
14520  * Originally Released Under LGPL - original licence link has changed is not relivant.
14521  *
14522  * Fork - LGPL
14523  * <script type="text/javascript">
14524  */
14525  
14526 /**
14527  * Not documented??? - probably should be...
14528  */
14529
14530 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
14531     //focus: Roo.emptyFn, // prevent odd scrolling behavior
14532     
14533     renderElements : function(n, a, targetNode, bulkRender){
14534         //consel.log("renderElements?");
14535         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
14536
14537         var t = n.getOwnerTree();
14538         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
14539         
14540         var cols = t.columns;
14541         var bw = t.borderWidth;
14542         var c = cols[0];
14543         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
14544          var cb = typeof a.checked == "boolean";
14545         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14546         var colcls = 'x-t-' + tid + '-c0';
14547         var buf = [
14548             '<li class="x-tree-node">',
14549             
14550                 
14551                 '<div class="x-tree-node-el ', a.cls,'">',
14552                     // extran...
14553                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
14554                 
14555                 
14556                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
14557                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
14558                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
14559                            (a.icon ? ' x-tree-node-inline-icon' : ''),
14560                            (a.iconCls ? ' '+a.iconCls : ''),
14561                            '" unselectable="on" />',
14562                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
14563                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
14564                              
14565                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14566                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
14567                             '<span unselectable="on" qtip="' + tx + '">',
14568                              tx,
14569                              '</span></a>' ,
14570                     '</div>',
14571                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14572                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
14573                  ];
14574         for(var i = 1, len = cols.length; i < len; i++){
14575             c = cols[i];
14576             colcls = 'x-t-' + tid + '-c' +i;
14577             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14578             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
14579                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
14580                       "</div>");
14581          }
14582          
14583          buf.push(
14584             '</a>',
14585             '<div class="x-clear"></div></div>',
14586             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
14587             "</li>");
14588         
14589         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
14590             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
14591                                 n.nextSibling.ui.getEl(), buf.join(""));
14592         }else{
14593             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
14594         }
14595         var el = this.wrap.firstChild;
14596         this.elRow = el;
14597         this.elNode = el.firstChild;
14598         this.ranchor = el.childNodes[1];
14599         this.ctNode = this.wrap.childNodes[1];
14600         var cs = el.firstChild.childNodes;
14601         this.indentNode = cs[0];
14602         this.ecNode = cs[1];
14603         this.iconNode = cs[2];
14604         var index = 3;
14605         if(cb){
14606             this.checkbox = cs[3];
14607             index++;
14608         }
14609         this.anchor = cs[index];
14610         
14611         this.textNode = cs[index].firstChild;
14612         
14613         //el.on("click", this.onClick, this);
14614         //el.on("dblclick", this.onDblClick, this);
14615         
14616         
14617        // console.log(this);
14618     },
14619     initEvents : function(){
14620         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
14621         
14622             
14623         var a = this.ranchor;
14624
14625         var el = Roo.get(a);
14626
14627         if(Roo.isOpera){ // opera render bug ignores the CSS
14628             el.setStyle("text-decoration", "none");
14629         }
14630
14631         el.on("click", this.onClick, this);
14632         el.on("dblclick", this.onDblClick, this);
14633         el.on("contextmenu", this.onContextMenu, this);
14634         
14635     },
14636     
14637     /*onSelectedChange : function(state){
14638         if(state){
14639             this.focus();
14640             this.addClass("x-tree-selected");
14641         }else{
14642             //this.blur();
14643             this.removeClass("x-tree-selected");
14644         }
14645     },*/
14646     addClass : function(cls){
14647         if(this.elRow){
14648             Roo.fly(this.elRow).addClass(cls);
14649         }
14650         
14651     },
14652     
14653     
14654     removeClass : function(cls){
14655         if(this.elRow){
14656             Roo.fly(this.elRow).removeClass(cls);
14657         }
14658     }
14659
14660     
14661     
14662 });//<Script type="text/javascript">
14663
14664 /*
14665  * Based on:
14666  * Ext JS Library 1.1.1
14667  * Copyright(c) 2006-2007, Ext JS, LLC.
14668  *
14669  * Originally Released Under LGPL - original licence link has changed is not relivant.
14670  *
14671  * Fork - LGPL
14672  * <script type="text/javascript">
14673  */
14674  
14675
14676 /**
14677  * @class Roo.tree.ColumnTree
14678  * @extends Roo.data.TreePanel
14679  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
14680  * @cfg {int} borderWidth  compined right/left border allowance
14681  * @constructor
14682  * @param {String/HTMLElement/Element} el The container element
14683  * @param {Object} config
14684  */
14685 Roo.tree.ColumnTree =  function(el, config)
14686 {
14687    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
14688    this.addEvents({
14689         /**
14690         * @event resize
14691         * Fire this event on a container when it resizes
14692         * @param {int} w Width
14693         * @param {int} h Height
14694         */
14695        "resize" : true
14696     });
14697     this.on('resize', this.onResize, this);
14698 };
14699
14700 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
14701     //lines:false,
14702     
14703     
14704     borderWidth: Roo.isBorderBox ? 0 : 2, 
14705     headEls : false,
14706     
14707     render : function(){
14708         // add the header.....
14709        
14710         Roo.tree.ColumnTree.superclass.render.apply(this);
14711         
14712         this.el.addClass('x-column-tree');
14713         
14714         this.headers = this.el.createChild(
14715             {cls:'x-tree-headers'},this.innerCt.dom);
14716    
14717         var cols = this.columns, c;
14718         var totalWidth = 0;
14719         this.headEls = [];
14720         var  len = cols.length;
14721         for(var i = 0; i < len; i++){
14722              c = cols[i];
14723              totalWidth += c.width;
14724             this.headEls.push(this.headers.createChild({
14725                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
14726                  cn: {
14727                      cls:'x-tree-hd-text',
14728                      html: c.header
14729                  },
14730                  style:'width:'+(c.width-this.borderWidth)+'px;'
14731              }));
14732         }
14733         this.headers.createChild({cls:'x-clear'});
14734         // prevent floats from wrapping when clipped
14735         this.headers.setWidth(totalWidth);
14736         //this.innerCt.setWidth(totalWidth);
14737         this.innerCt.setStyle({ overflow: 'auto' });
14738         this.onResize(this.width, this.height);
14739              
14740         
14741     },
14742     onResize : function(w,h)
14743     {
14744         this.height = h;
14745         this.width = w;
14746         // resize cols..
14747         this.innerCt.setWidth(this.width);
14748         this.innerCt.setHeight(this.height-20);
14749         
14750         // headers...
14751         var cols = this.columns, c;
14752         var totalWidth = 0;
14753         var expEl = false;
14754         var len = cols.length;
14755         for(var i = 0; i < len; i++){
14756             c = cols[i];
14757             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
14758                 // it's the expander..
14759                 expEl  = this.headEls[i];
14760                 continue;
14761             }
14762             totalWidth += c.width;
14763             
14764         }
14765         if (expEl) {
14766             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
14767         }
14768         this.headers.setWidth(w-20);
14769
14770         
14771         
14772         
14773     }
14774 });
14775 /*
14776  * Based on:
14777  * Ext JS Library 1.1.1
14778  * Copyright(c) 2006-2007, Ext JS, LLC.
14779  *
14780  * Originally Released Under LGPL - original licence link has changed is not relivant.
14781  *
14782  * Fork - LGPL
14783  * <script type="text/javascript">
14784  */
14785  
14786 /**
14787  * @class Roo.menu.Menu
14788  * @extends Roo.util.Observable
14789  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
14790  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
14791  * @constructor
14792  * Creates a new Menu
14793  * @param {Object} config Configuration options
14794  */
14795 Roo.menu.Menu = function(config){
14796     
14797     Roo.menu.Menu.superclass.constructor.call(this, config);
14798     
14799     this.id = this.id || Roo.id();
14800     this.addEvents({
14801         /**
14802          * @event beforeshow
14803          * Fires before this menu is displayed
14804          * @param {Roo.menu.Menu} this
14805          */
14806         beforeshow : true,
14807         /**
14808          * @event beforehide
14809          * Fires before this menu is hidden
14810          * @param {Roo.menu.Menu} this
14811          */
14812         beforehide : true,
14813         /**
14814          * @event show
14815          * Fires after this menu is displayed
14816          * @param {Roo.menu.Menu} this
14817          */
14818         show : true,
14819         /**
14820          * @event hide
14821          * Fires after this menu is hidden
14822          * @param {Roo.menu.Menu} this
14823          */
14824         hide : true,
14825         /**
14826          * @event click
14827          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
14828          * @param {Roo.menu.Menu} this
14829          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14830          * @param {Roo.EventObject} e
14831          */
14832         click : true,
14833         /**
14834          * @event mouseover
14835          * Fires when the mouse is hovering over this menu
14836          * @param {Roo.menu.Menu} this
14837          * @param {Roo.EventObject} e
14838          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14839          */
14840         mouseover : true,
14841         /**
14842          * @event mouseout
14843          * Fires when the mouse exits this menu
14844          * @param {Roo.menu.Menu} this
14845          * @param {Roo.EventObject} e
14846          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14847          */
14848         mouseout : true,
14849         /**
14850          * @event itemclick
14851          * Fires when a menu item contained in this menu is clicked
14852          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
14853          * @param {Roo.EventObject} e
14854          */
14855         itemclick: true
14856     });
14857     if (this.registerMenu) {
14858         Roo.menu.MenuMgr.register(this);
14859     }
14860     
14861     var mis = this.items;
14862     this.items = new Roo.util.MixedCollection();
14863     if(mis){
14864         this.add.apply(this, mis);
14865     }
14866 };
14867
14868 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
14869     /**
14870      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
14871      */
14872     minWidth : 120,
14873     /**
14874      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
14875      * for bottom-right shadow (defaults to "sides")
14876      */
14877     shadow : "sides",
14878     /**
14879      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
14880      * this menu (defaults to "tl-tr?")
14881      */
14882     subMenuAlign : "tl-tr?",
14883     /**
14884      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
14885      * relative to its element of origin (defaults to "tl-bl?")
14886      */
14887     defaultAlign : "tl-bl?",
14888     /**
14889      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
14890      */
14891     allowOtherMenus : false,
14892     /**
14893      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
14894      */
14895     registerMenu : true,
14896
14897     hidden:true,
14898
14899     // private
14900     render : function(){
14901         if(this.el){
14902             return;
14903         }
14904         var el = this.el = new Roo.Layer({
14905             cls: "x-menu",
14906             shadow:this.shadow,
14907             constrain: false,
14908             parentEl: this.parentEl || document.body,
14909             zindex:15000
14910         });
14911
14912         this.keyNav = new Roo.menu.MenuNav(this);
14913
14914         if(this.plain){
14915             el.addClass("x-menu-plain");
14916         }
14917         if(this.cls){
14918             el.addClass(this.cls);
14919         }
14920         // generic focus element
14921         this.focusEl = el.createChild({
14922             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
14923         });
14924         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
14925         //disabling touch- as it's causing issues ..
14926         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
14927         ul.on('click'   , this.onClick, this);
14928         
14929         
14930         ul.on("mouseover", this.onMouseOver, this);
14931         ul.on("mouseout", this.onMouseOut, this);
14932         this.items.each(function(item){
14933             if (item.hidden) {
14934                 return;
14935             }
14936             
14937             var li = document.createElement("li");
14938             li.className = "x-menu-list-item";
14939             ul.dom.appendChild(li);
14940             item.render(li, this);
14941         }, this);
14942         this.ul = ul;
14943         this.autoWidth();
14944     },
14945
14946     // private
14947     autoWidth : function(){
14948         var el = this.el, ul = this.ul;
14949         if(!el){
14950             return;
14951         }
14952         var w = this.width;
14953         if(w){
14954             el.setWidth(w);
14955         }else if(Roo.isIE){
14956             el.setWidth(this.minWidth);
14957             var t = el.dom.offsetWidth; // force recalc
14958             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
14959         }
14960     },
14961
14962     // private
14963     delayAutoWidth : function(){
14964         if(this.rendered){
14965             if(!this.awTask){
14966                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
14967             }
14968             this.awTask.delay(20);
14969         }
14970     },
14971
14972     // private
14973     findTargetItem : function(e){
14974         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
14975         if(t && t.menuItemId){
14976             return this.items.get(t.menuItemId);
14977         }
14978     },
14979
14980     // private
14981     onClick : function(e){
14982         Roo.log("menu.onClick");
14983         var t = this.findTargetItem(e);
14984         if(!t){
14985             return;
14986         }
14987         Roo.log(e);
14988         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
14989             if(t == this.activeItem && t.shouldDeactivate(e)){
14990                 this.activeItem.deactivate();
14991                 delete this.activeItem;
14992                 return;
14993             }
14994             if(t.canActivate){
14995                 this.setActiveItem(t, true);
14996             }
14997             return;
14998             
14999             
15000         }
15001         
15002         t.onClick(e);
15003         this.fireEvent("click", this, t, e);
15004     },
15005
15006     // private
15007     setActiveItem : function(item, autoExpand){
15008         if(item != this.activeItem){
15009             if(this.activeItem){
15010                 this.activeItem.deactivate();
15011             }
15012             this.activeItem = item;
15013             item.activate(autoExpand);
15014         }else if(autoExpand){
15015             item.expandMenu();
15016         }
15017     },
15018
15019     // private
15020     tryActivate : function(start, step){
15021         var items = this.items;
15022         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
15023             var item = items.get(i);
15024             if(!item.disabled && item.canActivate){
15025                 this.setActiveItem(item, false);
15026                 return item;
15027             }
15028         }
15029         return false;
15030     },
15031
15032     // private
15033     onMouseOver : function(e){
15034         var t;
15035         if(t = this.findTargetItem(e)){
15036             if(t.canActivate && !t.disabled){
15037                 this.setActiveItem(t, true);
15038             }
15039         }
15040         this.fireEvent("mouseover", this, e, t);
15041     },
15042
15043     // private
15044     onMouseOut : function(e){
15045         var t;
15046         if(t = this.findTargetItem(e)){
15047             if(t == this.activeItem && t.shouldDeactivate(e)){
15048                 this.activeItem.deactivate();
15049                 delete this.activeItem;
15050             }
15051         }
15052         this.fireEvent("mouseout", this, e, t);
15053     },
15054
15055     /**
15056      * Read-only.  Returns true if the menu is currently displayed, else false.
15057      * @type Boolean
15058      */
15059     isVisible : function(){
15060         return this.el && !this.hidden;
15061     },
15062
15063     /**
15064      * Displays this menu relative to another element
15065      * @param {String/HTMLElement/Roo.Element} element The element to align to
15066      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
15067      * the element (defaults to this.defaultAlign)
15068      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15069      */
15070     show : function(el, pos, parentMenu){
15071         this.parentMenu = parentMenu;
15072         if(!this.el){
15073             this.render();
15074         }
15075         this.fireEvent("beforeshow", this);
15076         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
15077     },
15078
15079     /**
15080      * Displays this menu at a specific xy position
15081      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
15082      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
15083      */
15084     showAt : function(xy, parentMenu, /* private: */_e){
15085         this.parentMenu = parentMenu;
15086         if(!this.el){
15087             this.render();
15088         }
15089         if(_e !== false){
15090             this.fireEvent("beforeshow", this);
15091             xy = this.el.adjustForConstraints(xy);
15092         }
15093         this.el.setXY(xy);
15094         this.el.show();
15095         this.hidden = false;
15096         this.focus();
15097         this.fireEvent("show", this);
15098     },
15099
15100     focus : function(){
15101         if(!this.hidden){
15102             this.doFocus.defer(50, this);
15103         }
15104     },
15105
15106     doFocus : function(){
15107         if(!this.hidden){
15108             this.focusEl.focus();
15109         }
15110     },
15111
15112     /**
15113      * Hides this menu and optionally all parent menus
15114      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
15115      */
15116     hide : function(deep){
15117         if(this.el && this.isVisible()){
15118             this.fireEvent("beforehide", this);
15119             if(this.activeItem){
15120                 this.activeItem.deactivate();
15121                 this.activeItem = null;
15122             }
15123             this.el.hide();
15124             this.hidden = true;
15125             this.fireEvent("hide", this);
15126         }
15127         if(deep === true && this.parentMenu){
15128             this.parentMenu.hide(true);
15129         }
15130     },
15131
15132     /**
15133      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
15134      * Any of the following are valid:
15135      * <ul>
15136      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
15137      * <li>An HTMLElement object which will be converted to a menu item</li>
15138      * <li>A menu item config object that will be created as a new menu item</li>
15139      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
15140      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
15141      * </ul>
15142      * Usage:
15143      * <pre><code>
15144 // Create the menu
15145 var menu = new Roo.menu.Menu();
15146
15147 // Create a menu item to add by reference
15148 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
15149
15150 // Add a bunch of items at once using different methods.
15151 // Only the last item added will be returned.
15152 var item = menu.add(
15153     menuItem,                // add existing item by ref
15154     'Dynamic Item',          // new TextItem
15155     '-',                     // new separator
15156     { text: 'Config Item' }  // new item by config
15157 );
15158 </code></pre>
15159      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
15160      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
15161      */
15162     add : function(){
15163         var a = arguments, l = a.length, item;
15164         for(var i = 0; i < l; i++){
15165             var el = a[i];
15166             if ((typeof(el) == "object") && el.xtype && el.xns) {
15167                 el = Roo.factory(el, Roo.menu);
15168             }
15169             
15170             if(el.render){ // some kind of Item
15171                 item = this.addItem(el);
15172             }else if(typeof el == "string"){ // string
15173                 if(el == "separator" || el == "-"){
15174                     item = this.addSeparator();
15175                 }else{
15176                     item = this.addText(el);
15177                 }
15178             }else if(el.tagName || el.el){ // element
15179                 item = this.addElement(el);
15180             }else if(typeof el == "object"){ // must be menu item config?
15181                 item = this.addMenuItem(el);
15182             }
15183         }
15184         return item;
15185     },
15186
15187     /**
15188      * Returns this menu's underlying {@link Roo.Element} object
15189      * @return {Roo.Element} The element
15190      */
15191     getEl : function(){
15192         if(!this.el){
15193             this.render();
15194         }
15195         return this.el;
15196     },
15197
15198     /**
15199      * Adds a separator bar to the menu
15200      * @return {Roo.menu.Item} The menu item that was added
15201      */
15202     addSeparator : function(){
15203         return this.addItem(new Roo.menu.Separator());
15204     },
15205
15206     /**
15207      * Adds an {@link Roo.Element} object to the menu
15208      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
15209      * @return {Roo.menu.Item} The menu item that was added
15210      */
15211     addElement : function(el){
15212         return this.addItem(new Roo.menu.BaseItem(el));
15213     },
15214
15215     /**
15216      * Adds an existing object based on {@link Roo.menu.Item} to the menu
15217      * @param {Roo.menu.Item} item The menu item to add
15218      * @return {Roo.menu.Item} The menu item that was added
15219      */
15220     addItem : function(item){
15221         this.items.add(item);
15222         if(this.ul){
15223             var li = document.createElement("li");
15224             li.className = "x-menu-list-item";
15225             this.ul.dom.appendChild(li);
15226             item.render(li, this);
15227             this.delayAutoWidth();
15228         }
15229         return item;
15230     },
15231
15232     /**
15233      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
15234      * @param {Object} config A MenuItem config object
15235      * @return {Roo.menu.Item} The menu item that was added
15236      */
15237     addMenuItem : function(config){
15238         if(!(config instanceof Roo.menu.Item)){
15239             if(typeof config.checked == "boolean"){ // must be check menu item config?
15240                 config = new Roo.menu.CheckItem(config);
15241             }else{
15242                 config = new Roo.menu.Item(config);
15243             }
15244         }
15245         return this.addItem(config);
15246     },
15247
15248     /**
15249      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
15250      * @param {String} text The text to display in the menu item
15251      * @return {Roo.menu.Item} The menu item that was added
15252      */
15253     addText : function(text){
15254         return this.addItem(new Roo.menu.TextItem({ text : text }));
15255     },
15256
15257     /**
15258      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
15259      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
15260      * @param {Roo.menu.Item} item The menu item to add
15261      * @return {Roo.menu.Item} The menu item that was added
15262      */
15263     insert : function(index, item){
15264         this.items.insert(index, item);
15265         if(this.ul){
15266             var li = document.createElement("li");
15267             li.className = "x-menu-list-item";
15268             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
15269             item.render(li, this);
15270             this.delayAutoWidth();
15271         }
15272         return item;
15273     },
15274
15275     /**
15276      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
15277      * @param {Roo.menu.Item} item The menu item to remove
15278      */
15279     remove : function(item){
15280         this.items.removeKey(item.id);
15281         item.destroy();
15282     },
15283
15284     /**
15285      * Removes and destroys all items in the menu
15286      */
15287     removeAll : function(){
15288         var f;
15289         while(f = this.items.first()){
15290             this.remove(f);
15291         }
15292     }
15293 });
15294
15295 // MenuNav is a private utility class used internally by the Menu
15296 Roo.menu.MenuNav = function(menu){
15297     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
15298     this.scope = this.menu = menu;
15299 };
15300
15301 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
15302     doRelay : function(e, h){
15303         var k = e.getKey();
15304         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
15305             this.menu.tryActivate(0, 1);
15306             return false;
15307         }
15308         return h.call(this.scope || this, e, this.menu);
15309     },
15310
15311     up : function(e, m){
15312         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
15313             m.tryActivate(m.items.length-1, -1);
15314         }
15315     },
15316
15317     down : function(e, m){
15318         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
15319             m.tryActivate(0, 1);
15320         }
15321     },
15322
15323     right : function(e, m){
15324         if(m.activeItem){
15325             m.activeItem.expandMenu(true);
15326         }
15327     },
15328
15329     left : function(e, m){
15330         m.hide();
15331         if(m.parentMenu && m.parentMenu.activeItem){
15332             m.parentMenu.activeItem.activate();
15333         }
15334     },
15335
15336     enter : function(e, m){
15337         if(m.activeItem){
15338             e.stopPropagation();
15339             m.activeItem.onClick(e);
15340             m.fireEvent("click", this, m.activeItem);
15341             return true;
15342         }
15343     }
15344 });/*
15345  * Based on:
15346  * Ext JS Library 1.1.1
15347  * Copyright(c) 2006-2007, Ext JS, LLC.
15348  *
15349  * Originally Released Under LGPL - original licence link has changed is not relivant.
15350  *
15351  * Fork - LGPL
15352  * <script type="text/javascript">
15353  */
15354  
15355 /**
15356  * @class Roo.menu.MenuMgr
15357  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
15358  * @singleton
15359  */
15360 Roo.menu.MenuMgr = function(){
15361    var menus, active, groups = {}, attached = false, lastShow = new Date();
15362
15363    // private - called when first menu is created
15364    function init(){
15365        menus = {};
15366        active = new Roo.util.MixedCollection();
15367        Roo.get(document).addKeyListener(27, function(){
15368            if(active.length > 0){
15369                hideAll();
15370            }
15371        });
15372    }
15373
15374    // private
15375    function hideAll(){
15376        if(active && active.length > 0){
15377            var c = active.clone();
15378            c.each(function(m){
15379                m.hide();
15380            });
15381        }
15382    }
15383
15384    // private
15385    function onHide(m){
15386        active.remove(m);
15387        if(active.length < 1){
15388            Roo.get(document).un("mousedown", onMouseDown);
15389            attached = false;
15390        }
15391    }
15392
15393    // private
15394    function onShow(m){
15395        var last = active.last();
15396        lastShow = new Date();
15397        active.add(m);
15398        if(!attached){
15399            Roo.get(document).on("mousedown", onMouseDown);
15400            attached = true;
15401        }
15402        if(m.parentMenu){
15403           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
15404           m.parentMenu.activeChild = m;
15405        }else if(last && last.isVisible()){
15406           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
15407        }
15408    }
15409
15410    // private
15411    function onBeforeHide(m){
15412        if(m.activeChild){
15413            m.activeChild.hide();
15414        }
15415        if(m.autoHideTimer){
15416            clearTimeout(m.autoHideTimer);
15417            delete m.autoHideTimer;
15418        }
15419    }
15420
15421    // private
15422    function onBeforeShow(m){
15423        var pm = m.parentMenu;
15424        if(!pm && !m.allowOtherMenus){
15425            hideAll();
15426        }else if(pm && pm.activeChild && active != m){
15427            pm.activeChild.hide();
15428        }
15429    }
15430
15431    // private
15432    function onMouseDown(e){
15433        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
15434            hideAll();
15435        }
15436    }
15437
15438    // private
15439    function onBeforeCheck(mi, state){
15440        if(state){
15441            var g = groups[mi.group];
15442            for(var i = 0, l = g.length; i < l; i++){
15443                if(g[i] != mi){
15444                    g[i].setChecked(false);
15445                }
15446            }
15447        }
15448    }
15449
15450    return {
15451
15452        /**
15453         * Hides all menus that are currently visible
15454         */
15455        hideAll : function(){
15456             hideAll();  
15457        },
15458
15459        // private
15460        register : function(menu){
15461            if(!menus){
15462                init();
15463            }
15464            menus[menu.id] = menu;
15465            menu.on("beforehide", onBeforeHide);
15466            menu.on("hide", onHide);
15467            menu.on("beforeshow", onBeforeShow);
15468            menu.on("show", onShow);
15469            var g = menu.group;
15470            if(g && menu.events["checkchange"]){
15471                if(!groups[g]){
15472                    groups[g] = [];
15473                }
15474                groups[g].push(menu);
15475                menu.on("checkchange", onCheck);
15476            }
15477        },
15478
15479         /**
15480          * Returns a {@link Roo.menu.Menu} object
15481          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
15482          * be used to generate and return a new Menu instance.
15483          */
15484        get : function(menu){
15485            if(typeof menu == "string"){ // menu id
15486                return menus[menu];
15487            }else if(menu.events){  // menu instance
15488                return menu;
15489            }else if(typeof menu.length == 'number'){ // array of menu items?
15490                return new Roo.menu.Menu({items:menu});
15491            }else{ // otherwise, must be a config
15492                return new Roo.menu.Menu(menu);
15493            }
15494        },
15495
15496        // private
15497        unregister : function(menu){
15498            delete menus[menu.id];
15499            menu.un("beforehide", onBeforeHide);
15500            menu.un("hide", onHide);
15501            menu.un("beforeshow", onBeforeShow);
15502            menu.un("show", onShow);
15503            var g = menu.group;
15504            if(g && menu.events["checkchange"]){
15505                groups[g].remove(menu);
15506                menu.un("checkchange", onCheck);
15507            }
15508        },
15509
15510        // private
15511        registerCheckable : function(menuItem){
15512            var g = menuItem.group;
15513            if(g){
15514                if(!groups[g]){
15515                    groups[g] = [];
15516                }
15517                groups[g].push(menuItem);
15518                menuItem.on("beforecheckchange", onBeforeCheck);
15519            }
15520        },
15521
15522        // private
15523        unregisterCheckable : function(menuItem){
15524            var g = menuItem.group;
15525            if(g){
15526                groups[g].remove(menuItem);
15527                menuItem.un("beforecheckchange", onBeforeCheck);
15528            }
15529        }
15530    };
15531 }();/*
15532  * Based on:
15533  * Ext JS Library 1.1.1
15534  * Copyright(c) 2006-2007, Ext JS, LLC.
15535  *
15536  * Originally Released Under LGPL - original licence link has changed is not relivant.
15537  *
15538  * Fork - LGPL
15539  * <script type="text/javascript">
15540  */
15541  
15542
15543 /**
15544  * @class Roo.menu.BaseItem
15545  * @extends Roo.Component
15546  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
15547  * management and base configuration options shared by all menu components.
15548  * @constructor
15549  * Creates a new BaseItem
15550  * @param {Object} config Configuration options
15551  */
15552 Roo.menu.BaseItem = function(config){
15553     Roo.menu.BaseItem.superclass.constructor.call(this, config);
15554
15555     this.addEvents({
15556         /**
15557          * @event click
15558          * Fires when this item is clicked
15559          * @param {Roo.menu.BaseItem} this
15560          * @param {Roo.EventObject} e
15561          */
15562         click: true,
15563         /**
15564          * @event activate
15565          * Fires when this item is activated
15566          * @param {Roo.menu.BaseItem} this
15567          */
15568         activate : true,
15569         /**
15570          * @event deactivate
15571          * Fires when this item is deactivated
15572          * @param {Roo.menu.BaseItem} this
15573          */
15574         deactivate : true
15575     });
15576
15577     if(this.handler){
15578         this.on("click", this.handler, this.scope, true);
15579     }
15580 };
15581
15582 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
15583     /**
15584      * @cfg {Function} handler
15585      * A function that will handle the click event of this menu item (defaults to undefined)
15586      */
15587     /**
15588      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
15589      */
15590     canActivate : false,
15591     
15592      /**
15593      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
15594      */
15595     hidden: false,
15596     
15597     /**
15598      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
15599      */
15600     activeClass : "x-menu-item-active",
15601     /**
15602      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
15603      */
15604     hideOnClick : true,
15605     /**
15606      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
15607      */
15608     hideDelay : 100,
15609
15610     // private
15611     ctype: "Roo.menu.BaseItem",
15612
15613     // private
15614     actionMode : "container",
15615
15616     // private
15617     render : function(container, parentMenu){
15618         this.parentMenu = parentMenu;
15619         Roo.menu.BaseItem.superclass.render.call(this, container);
15620         this.container.menuItemId = this.id;
15621     },
15622
15623     // private
15624     onRender : function(container, position){
15625         this.el = Roo.get(this.el);
15626         container.dom.appendChild(this.el.dom);
15627     },
15628
15629     // private
15630     onClick : function(e){
15631         if(!this.disabled && this.fireEvent("click", this, e) !== false
15632                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
15633             this.handleClick(e);
15634         }else{
15635             e.stopEvent();
15636         }
15637     },
15638
15639     // private
15640     activate : function(){
15641         if(this.disabled){
15642             return false;
15643         }
15644         var li = this.container;
15645         li.addClass(this.activeClass);
15646         this.region = li.getRegion().adjust(2, 2, -2, -2);
15647         this.fireEvent("activate", this);
15648         return true;
15649     },
15650
15651     // private
15652     deactivate : function(){
15653         this.container.removeClass(this.activeClass);
15654         this.fireEvent("deactivate", this);
15655     },
15656
15657     // private
15658     shouldDeactivate : function(e){
15659         return !this.region || !this.region.contains(e.getPoint());
15660     },
15661
15662     // private
15663     handleClick : function(e){
15664         if(this.hideOnClick){
15665             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
15666         }
15667     },
15668
15669     // private
15670     expandMenu : function(autoActivate){
15671         // do nothing
15672     },
15673
15674     // private
15675     hideMenu : function(){
15676         // do nothing
15677     }
15678 });/*
15679  * Based on:
15680  * Ext JS Library 1.1.1
15681  * Copyright(c) 2006-2007, Ext JS, LLC.
15682  *
15683  * Originally Released Under LGPL - original licence link has changed is not relivant.
15684  *
15685  * Fork - LGPL
15686  * <script type="text/javascript">
15687  */
15688  
15689 /**
15690  * @class Roo.menu.Adapter
15691  * @extends Roo.menu.BaseItem
15692  * 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.
15693  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
15694  * @constructor
15695  * Creates a new Adapter
15696  * @param {Object} config Configuration options
15697  */
15698 Roo.menu.Adapter = function(component, config){
15699     Roo.menu.Adapter.superclass.constructor.call(this, config);
15700     this.component = component;
15701 };
15702 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
15703     // private
15704     canActivate : true,
15705
15706     // private
15707     onRender : function(container, position){
15708         this.component.render(container);
15709         this.el = this.component.getEl();
15710     },
15711
15712     // private
15713     activate : function(){
15714         if(this.disabled){
15715             return false;
15716         }
15717         this.component.focus();
15718         this.fireEvent("activate", this);
15719         return true;
15720     },
15721
15722     // private
15723     deactivate : function(){
15724         this.fireEvent("deactivate", this);
15725     },
15726
15727     // private
15728     disable : function(){
15729         this.component.disable();
15730         Roo.menu.Adapter.superclass.disable.call(this);
15731     },
15732
15733     // private
15734     enable : function(){
15735         this.component.enable();
15736         Roo.menu.Adapter.superclass.enable.call(this);
15737     }
15738 });/*
15739  * Based on:
15740  * Ext JS Library 1.1.1
15741  * Copyright(c) 2006-2007, Ext JS, LLC.
15742  *
15743  * Originally Released Under LGPL - original licence link has changed is not relivant.
15744  *
15745  * Fork - LGPL
15746  * <script type="text/javascript">
15747  */
15748
15749 /**
15750  * @class Roo.menu.TextItem
15751  * @extends Roo.menu.BaseItem
15752  * Adds a static text string to a menu, usually used as either a heading or group separator.
15753  * Note: old style constructor with text is still supported.
15754  * 
15755  * @constructor
15756  * Creates a new TextItem
15757  * @param {Object} cfg Configuration
15758  */
15759 Roo.menu.TextItem = function(cfg){
15760     if (typeof(cfg) == 'string') {
15761         this.text = cfg;
15762     } else {
15763         Roo.apply(this,cfg);
15764     }
15765     
15766     Roo.menu.TextItem.superclass.constructor.call(this);
15767 };
15768
15769 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
15770     /**
15771      * @cfg {Boolean} text Text to show on item.
15772      */
15773     text : '',
15774     
15775     /**
15776      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15777      */
15778     hideOnClick : false,
15779     /**
15780      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
15781      */
15782     itemCls : "x-menu-text",
15783
15784     // private
15785     onRender : function(){
15786         var s = document.createElement("span");
15787         s.className = this.itemCls;
15788         s.innerHTML = this.text;
15789         this.el = s;
15790         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
15791     }
15792 });/*
15793  * Based on:
15794  * Ext JS Library 1.1.1
15795  * Copyright(c) 2006-2007, Ext JS, LLC.
15796  *
15797  * Originally Released Under LGPL - original licence link has changed is not relivant.
15798  *
15799  * Fork - LGPL
15800  * <script type="text/javascript">
15801  */
15802
15803 /**
15804  * @class Roo.menu.Separator
15805  * @extends Roo.menu.BaseItem
15806  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
15807  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
15808  * @constructor
15809  * @param {Object} config Configuration options
15810  */
15811 Roo.menu.Separator = function(config){
15812     Roo.menu.Separator.superclass.constructor.call(this, config);
15813 };
15814
15815 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
15816     /**
15817      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
15818      */
15819     itemCls : "x-menu-sep",
15820     /**
15821      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15822      */
15823     hideOnClick : false,
15824
15825     // private
15826     onRender : function(li){
15827         var s = document.createElement("span");
15828         s.className = this.itemCls;
15829         s.innerHTML = "&#160;";
15830         this.el = s;
15831         li.addClass("x-menu-sep-li");
15832         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
15833     }
15834 });/*
15835  * Based on:
15836  * Ext JS Library 1.1.1
15837  * Copyright(c) 2006-2007, Ext JS, LLC.
15838  *
15839  * Originally Released Under LGPL - original licence link has changed is not relivant.
15840  *
15841  * Fork - LGPL
15842  * <script type="text/javascript">
15843  */
15844 /**
15845  * @class Roo.menu.Item
15846  * @extends Roo.menu.BaseItem
15847  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
15848  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
15849  * activation and click handling.
15850  * @constructor
15851  * Creates a new Item
15852  * @param {Object} config Configuration options
15853  */
15854 Roo.menu.Item = function(config){
15855     Roo.menu.Item.superclass.constructor.call(this, config);
15856     if(this.menu){
15857         this.menu = Roo.menu.MenuMgr.get(this.menu);
15858     }
15859 };
15860 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
15861     
15862     /**
15863      * @cfg {String} text
15864      * The text to show on the menu item.
15865      */
15866     text: '',
15867      /**
15868      * @cfg {String} HTML to render in menu
15869      * The text to show on the menu item (HTML version).
15870      */
15871     html: '',
15872     /**
15873      * @cfg {String} icon
15874      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
15875      */
15876     icon: undefined,
15877     /**
15878      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
15879      */
15880     itemCls : "x-menu-item",
15881     /**
15882      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
15883      */
15884     canActivate : true,
15885     /**
15886      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
15887      */
15888     showDelay: 200,
15889     // doc'd in BaseItem
15890     hideDelay: 200,
15891
15892     // private
15893     ctype: "Roo.menu.Item",
15894     
15895     // private
15896     onRender : function(container, position){
15897         var el = document.createElement("a");
15898         el.hideFocus = true;
15899         el.unselectable = "on";
15900         el.href = this.href || "#";
15901         if(this.hrefTarget){
15902             el.target = this.hrefTarget;
15903         }
15904         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
15905         
15906         var html = this.html.length ? this.html  : String.format('{0}',this.text);
15907         
15908         el.innerHTML = String.format(
15909                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
15910                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
15911         this.el = el;
15912         Roo.menu.Item.superclass.onRender.call(this, container, position);
15913     },
15914
15915     /**
15916      * Sets the text to display in this menu item
15917      * @param {String} text The text to display
15918      * @param {Boolean} isHTML true to indicate text is pure html.
15919      */
15920     setText : function(text, isHTML){
15921         if (isHTML) {
15922             this.html = text;
15923         } else {
15924             this.text = text;
15925             this.html = '';
15926         }
15927         if(this.rendered){
15928             var html = this.html.length ? this.html  : String.format('{0}',this.text);
15929      
15930             this.el.update(String.format(
15931                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
15932                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
15933             this.parentMenu.autoWidth();
15934         }
15935     },
15936
15937     // private
15938     handleClick : function(e){
15939         if(!this.href){ // if no link defined, stop the event automatically
15940             e.stopEvent();
15941         }
15942         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
15943     },
15944
15945     // private
15946     activate : function(autoExpand){
15947         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
15948             this.focus();
15949             if(autoExpand){
15950                 this.expandMenu();
15951             }
15952         }
15953         return true;
15954     },
15955
15956     // private
15957     shouldDeactivate : function(e){
15958         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
15959             if(this.menu && this.menu.isVisible()){
15960                 return !this.menu.getEl().getRegion().contains(e.getPoint());
15961             }
15962             return true;
15963         }
15964         return false;
15965     },
15966
15967     // private
15968     deactivate : function(){
15969         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
15970         this.hideMenu();
15971     },
15972
15973     // private
15974     expandMenu : function(autoActivate){
15975         if(!this.disabled && this.menu){
15976             clearTimeout(this.hideTimer);
15977             delete this.hideTimer;
15978             if(!this.menu.isVisible() && !this.showTimer){
15979                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
15980             }else if (this.menu.isVisible() && autoActivate){
15981                 this.menu.tryActivate(0, 1);
15982             }
15983         }
15984     },
15985
15986     // private
15987     deferExpand : function(autoActivate){
15988         delete this.showTimer;
15989         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
15990         if(autoActivate){
15991             this.menu.tryActivate(0, 1);
15992         }
15993     },
15994
15995     // private
15996     hideMenu : function(){
15997         clearTimeout(this.showTimer);
15998         delete this.showTimer;
15999         if(!this.hideTimer && this.menu && this.menu.isVisible()){
16000             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
16001         }
16002     },
16003
16004     // private
16005     deferHide : function(){
16006         delete this.hideTimer;
16007         this.menu.hide();
16008     }
16009 });/*
16010  * Based on:
16011  * Ext JS Library 1.1.1
16012  * Copyright(c) 2006-2007, Ext JS, LLC.
16013  *
16014  * Originally Released Under LGPL - original licence link has changed is not relivant.
16015  *
16016  * Fork - LGPL
16017  * <script type="text/javascript">
16018  */
16019  
16020 /**
16021  * @class Roo.menu.CheckItem
16022  * @extends Roo.menu.Item
16023  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
16024  * @constructor
16025  * Creates a new CheckItem
16026  * @param {Object} config Configuration options
16027  */
16028 Roo.menu.CheckItem = function(config){
16029     Roo.menu.CheckItem.superclass.constructor.call(this, config);
16030     this.addEvents({
16031         /**
16032          * @event beforecheckchange
16033          * Fires before the checked value is set, providing an opportunity to cancel if needed
16034          * @param {Roo.menu.CheckItem} this
16035          * @param {Boolean} checked The new checked value that will be set
16036          */
16037         "beforecheckchange" : true,
16038         /**
16039          * @event checkchange
16040          * Fires after the checked value has been set
16041          * @param {Roo.menu.CheckItem} this
16042          * @param {Boolean} checked The checked value that was set
16043          */
16044         "checkchange" : true
16045     });
16046     if(this.checkHandler){
16047         this.on('checkchange', this.checkHandler, this.scope);
16048     }
16049 };
16050 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
16051     /**
16052      * @cfg {String} group
16053      * All check items with the same group name will automatically be grouped into a single-select
16054      * radio button group (defaults to '')
16055      */
16056     /**
16057      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
16058      */
16059     itemCls : "x-menu-item x-menu-check-item",
16060     /**
16061      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
16062      */
16063     groupClass : "x-menu-group-item",
16064
16065     /**
16066      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
16067      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
16068      * initialized with checked = true will be rendered as checked.
16069      */
16070     checked: false,
16071
16072     // private
16073     ctype: "Roo.menu.CheckItem",
16074
16075     // private
16076     onRender : function(c){
16077         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
16078         if(this.group){
16079             this.el.addClass(this.groupClass);
16080         }
16081         Roo.menu.MenuMgr.registerCheckable(this);
16082         if(this.checked){
16083             this.checked = false;
16084             this.setChecked(true, true);
16085         }
16086     },
16087
16088     // private
16089     destroy : function(){
16090         if(this.rendered){
16091             Roo.menu.MenuMgr.unregisterCheckable(this);
16092         }
16093         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
16094     },
16095
16096     /**
16097      * Set the checked state of this item
16098      * @param {Boolean} checked The new checked value
16099      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
16100      */
16101     setChecked : function(state, suppressEvent){
16102         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
16103             if(this.container){
16104                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
16105             }
16106             this.checked = state;
16107             if(suppressEvent !== true){
16108                 this.fireEvent("checkchange", this, state);
16109             }
16110         }
16111     },
16112
16113     // private
16114     handleClick : function(e){
16115        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
16116            this.setChecked(!this.checked);
16117        }
16118        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
16119     }
16120 });/*
16121  * Based on:
16122  * Ext JS Library 1.1.1
16123  * Copyright(c) 2006-2007, Ext JS, LLC.
16124  *
16125  * Originally Released Under LGPL - original licence link has changed is not relivant.
16126  *
16127  * Fork - LGPL
16128  * <script type="text/javascript">
16129  */
16130  
16131 /**
16132  * @class Roo.menu.DateItem
16133  * @extends Roo.menu.Adapter
16134  * A menu item that wraps the {@link Roo.DatPicker} component.
16135  * @constructor
16136  * Creates a new DateItem
16137  * @param {Object} config Configuration options
16138  */
16139 Roo.menu.DateItem = function(config){
16140     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
16141     /** The Roo.DatePicker object @type Roo.DatePicker */
16142     this.picker = this.component;
16143     this.addEvents({select: true});
16144     
16145     this.picker.on("render", function(picker){
16146         picker.getEl().swallowEvent("click");
16147         picker.container.addClass("x-menu-date-item");
16148     });
16149
16150     this.picker.on("select", this.onSelect, this);
16151 };
16152
16153 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
16154     // private
16155     onSelect : function(picker, date){
16156         this.fireEvent("select", this, date, picker);
16157         Roo.menu.DateItem.superclass.handleClick.call(this);
16158     }
16159 });/*
16160  * Based on:
16161  * Ext JS Library 1.1.1
16162  * Copyright(c) 2006-2007, Ext JS, LLC.
16163  *
16164  * Originally Released Under LGPL - original licence link has changed is not relivant.
16165  *
16166  * Fork - LGPL
16167  * <script type="text/javascript">
16168  */
16169  
16170 /**
16171  * @class Roo.menu.ColorItem
16172  * @extends Roo.menu.Adapter
16173  * A menu item that wraps the {@link Roo.ColorPalette} component.
16174  * @constructor
16175  * Creates a new ColorItem
16176  * @param {Object} config Configuration options
16177  */
16178 Roo.menu.ColorItem = function(config){
16179     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
16180     /** The Roo.ColorPalette object @type Roo.ColorPalette */
16181     this.palette = this.component;
16182     this.relayEvents(this.palette, ["select"]);
16183     if(this.selectHandler){
16184         this.on('select', this.selectHandler, this.scope);
16185     }
16186 };
16187 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
16188  * Based on:
16189  * Ext JS Library 1.1.1
16190  * Copyright(c) 2006-2007, Ext JS, LLC.
16191  *
16192  * Originally Released Under LGPL - original licence link has changed is not relivant.
16193  *
16194  * Fork - LGPL
16195  * <script type="text/javascript">
16196  */
16197  
16198
16199 /**
16200  * @class Roo.menu.DateMenu
16201  * @extends Roo.menu.Menu
16202  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
16203  * @constructor
16204  * Creates a new DateMenu
16205  * @param {Object} config Configuration options
16206  */
16207 Roo.menu.DateMenu = function(config){
16208     Roo.menu.DateMenu.superclass.constructor.call(this, config);
16209     this.plain = true;
16210     var di = new Roo.menu.DateItem(config);
16211     this.add(di);
16212     /**
16213      * The {@link Roo.DatePicker} instance for this DateMenu
16214      * @type DatePicker
16215      */
16216     this.picker = di.picker;
16217     /**
16218      * @event select
16219      * @param {DatePicker} picker
16220      * @param {Date} date
16221      */
16222     this.relayEvents(di, ["select"]);
16223     this.on('beforeshow', function(){
16224         if(this.picker){
16225             this.picker.hideMonthPicker(false);
16226         }
16227     }, this);
16228 };
16229 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
16230     cls:'x-date-menu'
16231 });/*
16232  * Based on:
16233  * Ext JS Library 1.1.1
16234  * Copyright(c) 2006-2007, Ext JS, LLC.
16235  *
16236  * Originally Released Under LGPL - original licence link has changed is not relivant.
16237  *
16238  * Fork - LGPL
16239  * <script type="text/javascript">
16240  */
16241  
16242
16243 /**
16244  * @class Roo.menu.ColorMenu
16245  * @extends Roo.menu.Menu
16246  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
16247  * @constructor
16248  * Creates a new ColorMenu
16249  * @param {Object} config Configuration options
16250  */
16251 Roo.menu.ColorMenu = function(config){
16252     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
16253     this.plain = true;
16254     var ci = new Roo.menu.ColorItem(config);
16255     this.add(ci);
16256     /**
16257      * The {@link Roo.ColorPalette} instance for this ColorMenu
16258      * @type ColorPalette
16259      */
16260     this.palette = ci.palette;
16261     /**
16262      * @event select
16263      * @param {ColorPalette} palette
16264      * @param {String} color
16265      */
16266     this.relayEvents(ci, ["select"]);
16267 };
16268 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
16269  * Based on:
16270  * Ext JS Library 1.1.1
16271  * Copyright(c) 2006-2007, Ext JS, LLC.
16272  *
16273  * Originally Released Under LGPL - original licence link has changed is not relivant.
16274  *
16275  * Fork - LGPL
16276  * <script type="text/javascript">
16277  */
16278  
16279 /**
16280  * @class Roo.form.TextItem
16281  * @extends Roo.BoxComponent
16282  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16283  * @constructor
16284  * Creates a new TextItem
16285  * @param {Object} config Configuration options
16286  */
16287 Roo.form.TextItem = function(config){
16288     Roo.form.TextItem.superclass.constructor.call(this, config);
16289 };
16290
16291 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
16292     
16293     /**
16294      * @cfg {String} tag the tag for this item (default div)
16295      */
16296     tag : 'div',
16297     /**
16298      * @cfg {String} html the content for this item
16299      */
16300     html : '',
16301     
16302     getAutoCreate : function()
16303     {
16304         var cfg = {
16305             id: this.id,
16306             tag: this.tag,
16307             html: this.html,
16308             cls: 'x-form-item'
16309         };
16310         
16311         return cfg;
16312         
16313     },
16314     
16315     onRender : function(ct, position)
16316     {
16317         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
16318         
16319         if(!this.el){
16320             var cfg = this.getAutoCreate();
16321             if(!cfg.name){
16322                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16323             }
16324             if (!cfg.name.length) {
16325                 delete cfg.name;
16326             }
16327             this.el = ct.createChild(cfg, position);
16328         }
16329     }
16330     
16331 });/*
16332  * Based on:
16333  * Ext JS Library 1.1.1
16334  * Copyright(c) 2006-2007, Ext JS, LLC.
16335  *
16336  * Originally Released Under LGPL - original licence link has changed is not relivant.
16337  *
16338  * Fork - LGPL
16339  * <script type="text/javascript">
16340  */
16341  
16342 /**
16343  * @class Roo.form.Field
16344  * @extends Roo.BoxComponent
16345  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16346  * @constructor
16347  * Creates a new Field
16348  * @param {Object} config Configuration options
16349  */
16350 Roo.form.Field = function(config){
16351     Roo.form.Field.superclass.constructor.call(this, config);
16352 };
16353
16354 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
16355     /**
16356      * @cfg {String} fieldLabel Label to use when rendering a form.
16357      */
16358        /**
16359      * @cfg {String} qtip Mouse over tip
16360      */
16361      
16362     /**
16363      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
16364      */
16365     invalidClass : "x-form-invalid",
16366     /**
16367      * @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")
16368      */
16369     invalidText : "The value in this field is invalid",
16370     /**
16371      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
16372      */
16373     focusClass : "x-form-focus",
16374     /**
16375      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
16376       automatic validation (defaults to "keyup").
16377      */
16378     validationEvent : "keyup",
16379     /**
16380      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
16381      */
16382     validateOnBlur : true,
16383     /**
16384      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
16385      */
16386     validationDelay : 250,
16387     /**
16388      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
16389      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
16390      */
16391     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
16392     /**
16393      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
16394      */
16395     fieldClass : "x-form-field",
16396     /**
16397      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
16398      *<pre>
16399 Value         Description
16400 -----------   ----------------------------------------------------------------------
16401 qtip          Display a quick tip when the user hovers over the field
16402 title         Display a default browser title attribute popup
16403 under         Add a block div beneath the field containing the error text
16404 side          Add an error icon to the right of the field with a popup on hover
16405 [element id]  Add the error text directly to the innerHTML of the specified element
16406 </pre>
16407      */
16408     msgTarget : 'qtip',
16409     /**
16410      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
16411      */
16412     msgFx : 'normal',
16413
16414     /**
16415      * @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.
16416      */
16417     readOnly : false,
16418
16419     /**
16420      * @cfg {Boolean} disabled True to disable the field (defaults to false).
16421      */
16422     disabled : false,
16423
16424     /**
16425      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
16426      */
16427     inputType : undefined,
16428     
16429     /**
16430      * @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).
16431          */
16432         tabIndex : undefined,
16433         
16434     // private
16435     isFormField : true,
16436
16437     // private
16438     hasFocus : false,
16439     /**
16440      * @property {Roo.Element} fieldEl
16441      * Element Containing the rendered Field (with label etc.)
16442      */
16443     /**
16444      * @cfg {Mixed} value A value to initialize this field with.
16445      */
16446     value : undefined,
16447
16448     /**
16449      * @cfg {String} name The field's HTML name attribute.
16450      */
16451     /**
16452      * @cfg {String} cls A CSS class to apply to the field's underlying element.
16453      */
16454     // private
16455     loadedValue : false,
16456      
16457      
16458         // private ??
16459         initComponent : function(){
16460         Roo.form.Field.superclass.initComponent.call(this);
16461         this.addEvents({
16462             /**
16463              * @event focus
16464              * Fires when this field receives input focus.
16465              * @param {Roo.form.Field} this
16466              */
16467             focus : true,
16468             /**
16469              * @event blur
16470              * Fires when this field loses input focus.
16471              * @param {Roo.form.Field} this
16472              */
16473             blur : true,
16474             /**
16475              * @event specialkey
16476              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
16477              * {@link Roo.EventObject#getKey} to determine which key was pressed.
16478              * @param {Roo.form.Field} this
16479              * @param {Roo.EventObject} e The event object
16480              */
16481             specialkey : true,
16482             /**
16483              * @event change
16484              * Fires just before the field blurs if the field value has changed.
16485              * @param {Roo.form.Field} this
16486              * @param {Mixed} newValue The new value
16487              * @param {Mixed} oldValue The original value
16488              */
16489             change : true,
16490             /**
16491              * @event invalid
16492              * Fires after the field has been marked as invalid.
16493              * @param {Roo.form.Field} this
16494              * @param {String} msg The validation message
16495              */
16496             invalid : true,
16497             /**
16498              * @event valid
16499              * Fires after the field has been validated with no errors.
16500              * @param {Roo.form.Field} this
16501              */
16502             valid : true,
16503              /**
16504              * @event keyup
16505              * Fires after the key up
16506              * @param {Roo.form.Field} this
16507              * @param {Roo.EventObject}  e The event Object
16508              */
16509             keyup : true
16510         });
16511     },
16512
16513     /**
16514      * Returns the name attribute of the field if available
16515      * @return {String} name The field name
16516      */
16517     getName: function(){
16518          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
16519     },
16520
16521     // private
16522     onRender : function(ct, position){
16523         Roo.form.Field.superclass.onRender.call(this, ct, position);
16524         if(!this.el){
16525             var cfg = this.getAutoCreate();
16526             if(!cfg.name){
16527                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16528             }
16529             if (!cfg.name.length) {
16530                 delete cfg.name;
16531             }
16532             if(this.inputType){
16533                 cfg.type = this.inputType;
16534             }
16535             this.el = ct.createChild(cfg, position);
16536         }
16537         var type = this.el.dom.type;
16538         if(type){
16539             if(type == 'password'){
16540                 type = 'text';
16541             }
16542             this.el.addClass('x-form-'+type);
16543         }
16544         if(this.readOnly){
16545             this.el.dom.readOnly = true;
16546         }
16547         if(this.tabIndex !== undefined){
16548             this.el.dom.setAttribute('tabIndex', this.tabIndex);
16549         }
16550
16551         this.el.addClass([this.fieldClass, this.cls]);
16552         this.initValue();
16553     },
16554
16555     /**
16556      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
16557      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
16558      * @return {Roo.form.Field} this
16559      */
16560     applyTo : function(target){
16561         this.allowDomMove = false;
16562         this.el = Roo.get(target);
16563         this.render(this.el.dom.parentNode);
16564         return this;
16565     },
16566
16567     // private
16568     initValue : function(){
16569         if(this.value !== undefined){
16570             this.setValue(this.value);
16571         }else if(this.el.dom.value.length > 0){
16572             this.setValue(this.el.dom.value);
16573         }
16574     },
16575
16576     /**
16577      * Returns true if this field has been changed since it was originally loaded and is not disabled.
16578      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
16579      */
16580     isDirty : function() {
16581         if(this.disabled) {
16582             return false;
16583         }
16584         return String(this.getValue()) !== String(this.originalValue);
16585     },
16586
16587     /**
16588      * stores the current value in loadedValue
16589      */
16590     resetHasChanged : function()
16591     {
16592         this.loadedValue = String(this.getValue());
16593     },
16594     /**
16595      * checks the current value against the 'loaded' value.
16596      * Note - will return false if 'resetHasChanged' has not been called first.
16597      */
16598     hasChanged : function()
16599     {
16600         if(this.disabled || this.readOnly) {
16601             return false;
16602         }
16603         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
16604     },
16605     
16606     
16607     
16608     // private
16609     afterRender : function(){
16610         Roo.form.Field.superclass.afterRender.call(this);
16611         this.initEvents();
16612     },
16613
16614     // private
16615     fireKey : function(e){
16616         //Roo.log('field ' + e.getKey());
16617         if(e.isNavKeyPress()){
16618             this.fireEvent("specialkey", this, e);
16619         }
16620     },
16621
16622     /**
16623      * Resets the current field value to the originally loaded value and clears any validation messages
16624      */
16625     reset : function(){
16626         this.setValue(this.resetValue);
16627         this.originalValue = this.getValue();
16628         this.clearInvalid();
16629     },
16630
16631     // private
16632     initEvents : function(){
16633         // safari killled keypress - so keydown is now used..
16634         this.el.on("keydown" , this.fireKey,  this);
16635         this.el.on("focus", this.onFocus,  this);
16636         this.el.on("blur", this.onBlur,  this);
16637         this.el.relayEvent('keyup', this);
16638
16639         // reference to original value for reset
16640         this.originalValue = this.getValue();
16641         this.resetValue =  this.getValue();
16642     },
16643
16644     // private
16645     onFocus : function(){
16646         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16647             this.el.addClass(this.focusClass);
16648         }
16649         if(!this.hasFocus){
16650             this.hasFocus = true;
16651             this.startValue = this.getValue();
16652             this.fireEvent("focus", this);
16653         }
16654     },
16655
16656     beforeBlur : Roo.emptyFn,
16657
16658     // private
16659     onBlur : function(){
16660         this.beforeBlur();
16661         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16662             this.el.removeClass(this.focusClass);
16663         }
16664         this.hasFocus = false;
16665         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
16666             this.validate();
16667         }
16668         var v = this.getValue();
16669         if(String(v) !== String(this.startValue)){
16670             this.fireEvent('change', this, v, this.startValue);
16671         }
16672         this.fireEvent("blur", this);
16673     },
16674
16675     /**
16676      * Returns whether or not the field value is currently valid
16677      * @param {Boolean} preventMark True to disable marking the field invalid
16678      * @return {Boolean} True if the value is valid, else false
16679      */
16680     isValid : function(preventMark){
16681         if(this.disabled){
16682             return true;
16683         }
16684         var restore = this.preventMark;
16685         this.preventMark = preventMark === true;
16686         var v = this.validateValue(this.processValue(this.getRawValue()));
16687         this.preventMark = restore;
16688         return v;
16689     },
16690
16691     /**
16692      * Validates the field value
16693      * @return {Boolean} True if the value is valid, else false
16694      */
16695     validate : function(){
16696         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
16697             this.clearInvalid();
16698             return true;
16699         }
16700         return false;
16701     },
16702
16703     processValue : function(value){
16704         return value;
16705     },
16706
16707     // private
16708     // Subclasses should provide the validation implementation by overriding this
16709     validateValue : function(value){
16710         return true;
16711     },
16712
16713     /**
16714      * Mark this field as invalid
16715      * @param {String} msg The validation message
16716      */
16717     markInvalid : function(msg){
16718         if(!this.rendered || this.preventMark){ // not rendered
16719             return;
16720         }
16721         
16722         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16723         
16724         obj.el.addClass(this.invalidClass);
16725         msg = msg || this.invalidText;
16726         switch(this.msgTarget){
16727             case 'qtip':
16728                 obj.el.dom.qtip = msg;
16729                 obj.el.dom.qclass = 'x-form-invalid-tip';
16730                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
16731                     Roo.QuickTips.enable();
16732                 }
16733                 break;
16734             case 'title':
16735                 this.el.dom.title = msg;
16736                 break;
16737             case 'under':
16738                 if(!this.errorEl){
16739                     var elp = this.el.findParent('.x-form-element', 5, true);
16740                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
16741                     this.errorEl.setWidth(elp.getWidth(true)-20);
16742                 }
16743                 this.errorEl.update(msg);
16744                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
16745                 break;
16746             case 'side':
16747                 if(!this.errorIcon){
16748                     var elp = this.el.findParent('.x-form-element', 5, true);
16749                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
16750                 }
16751                 this.alignErrorIcon();
16752                 this.errorIcon.dom.qtip = msg;
16753                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
16754                 this.errorIcon.show();
16755                 this.on('resize', this.alignErrorIcon, this);
16756                 break;
16757             default:
16758                 var t = Roo.getDom(this.msgTarget);
16759                 t.innerHTML = msg;
16760                 t.style.display = this.msgDisplay;
16761                 break;
16762         }
16763         this.fireEvent('invalid', this, msg);
16764     },
16765
16766     // private
16767     alignErrorIcon : function(){
16768         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
16769     },
16770
16771     /**
16772      * Clear any invalid styles/messages for this field
16773      */
16774     clearInvalid : function(){
16775         if(!this.rendered || this.preventMark){ // not rendered
16776             return;
16777         }
16778         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16779         
16780         obj.el.removeClass(this.invalidClass);
16781         switch(this.msgTarget){
16782             case 'qtip':
16783                 obj.el.dom.qtip = '';
16784                 break;
16785             case 'title':
16786                 this.el.dom.title = '';
16787                 break;
16788             case 'under':
16789                 if(this.errorEl){
16790                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
16791                 }
16792                 break;
16793             case 'side':
16794                 if(this.errorIcon){
16795                     this.errorIcon.dom.qtip = '';
16796                     this.errorIcon.hide();
16797                     this.un('resize', this.alignErrorIcon, this);
16798                 }
16799                 break;
16800             default:
16801                 var t = Roo.getDom(this.msgTarget);
16802                 t.innerHTML = '';
16803                 t.style.display = 'none';
16804                 break;
16805         }
16806         this.fireEvent('valid', this);
16807     },
16808
16809     /**
16810      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
16811      * @return {Mixed} value The field value
16812      */
16813     getRawValue : function(){
16814         var v = this.el.getValue();
16815         
16816         return v;
16817     },
16818
16819     /**
16820      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16821      * @return {Mixed} value The field value
16822      */
16823     getValue : function(){
16824         var v = this.el.getValue();
16825          
16826         return v;
16827     },
16828
16829     /**
16830      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
16831      * @param {Mixed} value The value to set
16832      */
16833     setRawValue : function(v){
16834         return this.el.dom.value = (v === null || v === undefined ? '' : v);
16835     },
16836
16837     /**
16838      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
16839      * @param {Mixed} value The value to set
16840      */
16841     setValue : function(v){
16842         this.value = v;
16843         if(this.rendered){
16844             this.el.dom.value = (v === null || v === undefined ? '' : v);
16845              this.validate();
16846         }
16847     },
16848
16849     adjustSize : function(w, h){
16850         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
16851         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
16852         return s;
16853     },
16854
16855     adjustWidth : function(tag, w){
16856         tag = tag.toLowerCase();
16857         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
16858             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
16859                 if(tag == 'input'){
16860                     return w + 2;
16861                 }
16862                 if(tag == 'textarea'){
16863                     return w-2;
16864                 }
16865             }else if(Roo.isOpera){
16866                 if(tag == 'input'){
16867                     return w + 2;
16868                 }
16869                 if(tag == 'textarea'){
16870                     return w-2;
16871                 }
16872             }
16873         }
16874         return w;
16875     }
16876 });
16877
16878
16879 // anything other than normal should be considered experimental
16880 Roo.form.Field.msgFx = {
16881     normal : {
16882         show: function(msgEl, f){
16883             msgEl.setDisplayed('block');
16884         },
16885
16886         hide : function(msgEl, f){
16887             msgEl.setDisplayed(false).update('');
16888         }
16889     },
16890
16891     slide : {
16892         show: function(msgEl, f){
16893             msgEl.slideIn('t', {stopFx:true});
16894         },
16895
16896         hide : function(msgEl, f){
16897             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
16898         }
16899     },
16900
16901     slideRight : {
16902         show: function(msgEl, f){
16903             msgEl.fixDisplay();
16904             msgEl.alignTo(f.el, 'tl-tr');
16905             msgEl.slideIn('l', {stopFx:true});
16906         },
16907
16908         hide : function(msgEl, f){
16909             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
16910         }
16911     }
16912 };/*
16913  * Based on:
16914  * Ext JS Library 1.1.1
16915  * Copyright(c) 2006-2007, Ext JS, LLC.
16916  *
16917  * Originally Released Under LGPL - original licence link has changed is not relivant.
16918  *
16919  * Fork - LGPL
16920  * <script type="text/javascript">
16921  */
16922  
16923
16924 /**
16925  * @class Roo.form.TextField
16926  * @extends Roo.form.Field
16927  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
16928  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
16929  * @constructor
16930  * Creates a new TextField
16931  * @param {Object} config Configuration options
16932  */
16933 Roo.form.TextField = function(config){
16934     Roo.form.TextField.superclass.constructor.call(this, config);
16935     this.addEvents({
16936         /**
16937          * @event autosize
16938          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
16939          * according to the default logic, but this event provides a hook for the developer to apply additional
16940          * logic at runtime to resize the field if needed.
16941              * @param {Roo.form.Field} this This text field
16942              * @param {Number} width The new field width
16943              */
16944         autosize : true
16945     });
16946 };
16947
16948 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
16949     /**
16950      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
16951      */
16952     grow : false,
16953     /**
16954      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
16955      */
16956     growMin : 30,
16957     /**
16958      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
16959      */
16960     growMax : 800,
16961     /**
16962      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
16963      */
16964     vtype : null,
16965     /**
16966      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
16967      */
16968     maskRe : null,
16969     /**
16970      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
16971      */
16972     disableKeyFilter : false,
16973     /**
16974      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
16975      */
16976     allowBlank : true,
16977     /**
16978      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
16979      */
16980     minLength : 0,
16981     /**
16982      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
16983      */
16984     maxLength : Number.MAX_VALUE,
16985     /**
16986      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
16987      */
16988     minLengthText : "The minimum length for this field is {0}",
16989     /**
16990      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
16991      */
16992     maxLengthText : "The maximum length for this field is {0}",
16993     /**
16994      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
16995      */
16996     selectOnFocus : false,
16997     /**
16998      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
16999      */    
17000     allowLeadingSpace : false,
17001     /**
17002      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
17003      */
17004     blankText : "This field is required",
17005     /**
17006      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
17007      * If available, this function will be called only after the basic validators all return true, and will be passed the
17008      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
17009      */
17010     validator : null,
17011     /**
17012      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
17013      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
17014      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
17015      */
17016     regex : null,
17017     /**
17018      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
17019      */
17020     regexText : "",
17021     /**
17022      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
17023      */
17024     emptyText : null,
17025    
17026
17027     // private
17028     initEvents : function()
17029     {
17030         if (this.emptyText) {
17031             this.el.attr('placeholder', this.emptyText);
17032         }
17033         
17034         Roo.form.TextField.superclass.initEvents.call(this);
17035         if(this.validationEvent == 'keyup'){
17036             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
17037             this.el.on('keyup', this.filterValidation, this);
17038         }
17039         else if(this.validationEvent !== false){
17040             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
17041         }
17042         
17043         if(this.selectOnFocus){
17044             this.on("focus", this.preFocus, this);
17045         }
17046         if (!this.allowLeadingSpace) {
17047             this.on('blur', this.cleanLeadingSpace, this);
17048         }
17049         
17050         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
17051             this.el.on("keypress", this.filterKeys, this);
17052         }
17053         if(this.grow){
17054             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
17055             this.el.on("click", this.autoSize,  this);
17056         }
17057         if(this.el.is('input[type=password]') && Roo.isSafari){
17058             this.el.on('keydown', this.SafariOnKeyDown, this);
17059         }
17060     },
17061
17062     processValue : function(value){
17063         if(this.stripCharsRe){
17064             var newValue = value.replace(this.stripCharsRe, '');
17065             if(newValue !== value){
17066                 this.setRawValue(newValue);
17067                 return newValue;
17068             }
17069         }
17070         return value;
17071     },
17072
17073     filterValidation : function(e){
17074         if(!e.isNavKeyPress()){
17075             this.validationTask.delay(this.validationDelay);
17076         }
17077     },
17078
17079     // private
17080     onKeyUp : function(e){
17081         if(!e.isNavKeyPress()){
17082             this.autoSize();
17083         }
17084     },
17085     // private - clean the leading white space
17086     cleanLeadingSpace : function(e)
17087     {
17088         if ( this.inputType == 'file') {
17089             return;
17090         }
17091         
17092         this.setValue((this.getValue() + '').replace(/^\s+/,''));
17093     },
17094     /**
17095      * Resets the current field value to the originally-loaded value and clears any validation messages.
17096      *  
17097      */
17098     reset : function(){
17099         Roo.form.TextField.superclass.reset.call(this);
17100        
17101     }, 
17102     // private
17103     preFocus : function(){
17104         
17105         if(this.selectOnFocus){
17106             this.el.dom.select();
17107         }
17108     },
17109
17110     
17111     // private
17112     filterKeys : function(e){
17113         var k = e.getKey();
17114         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
17115             return;
17116         }
17117         var c = e.getCharCode(), cc = String.fromCharCode(c);
17118         if(Roo.isIE && (e.isSpecialKey() || !cc)){
17119             return;
17120         }
17121         if(!this.maskRe.test(cc)){
17122             e.stopEvent();
17123         }
17124     },
17125
17126     setValue : function(v){
17127         
17128         Roo.form.TextField.superclass.setValue.apply(this, arguments);
17129         
17130         this.autoSize();
17131     },
17132
17133     /**
17134      * Validates a value according to the field's validation rules and marks the field as invalid
17135      * if the validation fails
17136      * @param {Mixed} value The value to validate
17137      * @return {Boolean} True if the value is valid, else false
17138      */
17139     validateValue : function(value){
17140         if(value.length < 1)  { // if it's blank
17141              if(this.allowBlank){
17142                 this.clearInvalid();
17143                 return true;
17144              }else{
17145                 this.markInvalid(this.blankText);
17146                 return false;
17147              }
17148         }
17149         if(value.length < this.minLength){
17150             this.markInvalid(String.format(this.minLengthText, this.minLength));
17151             return false;
17152         }
17153         if(value.length > this.maxLength){
17154             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
17155             return false;
17156         }
17157         if(this.vtype){
17158             var vt = Roo.form.VTypes;
17159             if(!vt[this.vtype](value, this)){
17160                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
17161                 return false;
17162             }
17163         }
17164         if(typeof this.validator == "function"){
17165             var msg = this.validator(value);
17166             if(msg !== true){
17167                 this.markInvalid(msg);
17168                 return false;
17169             }
17170         }
17171         if(this.regex && !this.regex.test(value)){
17172             this.markInvalid(this.regexText);
17173             return false;
17174         }
17175         return true;
17176     },
17177
17178     /**
17179      * Selects text in this field
17180      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
17181      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
17182      */
17183     selectText : function(start, end){
17184         var v = this.getRawValue();
17185         if(v.length > 0){
17186             start = start === undefined ? 0 : start;
17187             end = end === undefined ? v.length : end;
17188             var d = this.el.dom;
17189             if(d.setSelectionRange){
17190                 d.setSelectionRange(start, end);
17191             }else if(d.createTextRange){
17192                 var range = d.createTextRange();
17193                 range.moveStart("character", start);
17194                 range.moveEnd("character", v.length-end);
17195                 range.select();
17196             }
17197         }
17198     },
17199
17200     /**
17201      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
17202      * This only takes effect if grow = true, and fires the autosize event.
17203      */
17204     autoSize : function(){
17205         if(!this.grow || !this.rendered){
17206             return;
17207         }
17208         if(!this.metrics){
17209             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
17210         }
17211         var el = this.el;
17212         var v = el.dom.value;
17213         var d = document.createElement('div');
17214         d.appendChild(document.createTextNode(v));
17215         v = d.innerHTML;
17216         d = null;
17217         v += "&#160;";
17218         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
17219         this.el.setWidth(w);
17220         this.fireEvent("autosize", this, w);
17221     },
17222     
17223     // private
17224     SafariOnKeyDown : function(event)
17225     {
17226         // this is a workaround for a password hang bug on chrome/ webkit.
17227         
17228         var isSelectAll = false;
17229         
17230         if(this.el.dom.selectionEnd > 0){
17231             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
17232         }
17233         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
17234             event.preventDefault();
17235             this.setValue('');
17236             return;
17237         }
17238         
17239         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
17240             
17241             event.preventDefault();
17242             // this is very hacky as keydown always get's upper case.
17243             
17244             var cc = String.fromCharCode(event.getCharCode());
17245             
17246             
17247             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
17248             
17249         }
17250         
17251         
17252     }
17253 });/*
17254  * Based on:
17255  * Ext JS Library 1.1.1
17256  * Copyright(c) 2006-2007, Ext JS, LLC.
17257  *
17258  * Originally Released Under LGPL - original licence link has changed is not relivant.
17259  *
17260  * Fork - LGPL
17261  * <script type="text/javascript">
17262  */
17263  
17264 /**
17265  * @class Roo.form.Hidden
17266  * @extends Roo.form.TextField
17267  * Simple Hidden element used on forms 
17268  * 
17269  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
17270  * 
17271  * @constructor
17272  * Creates a new Hidden form element.
17273  * @param {Object} config Configuration options
17274  */
17275
17276
17277
17278 // easy hidden field...
17279 Roo.form.Hidden = function(config){
17280     Roo.form.Hidden.superclass.constructor.call(this, config);
17281 };
17282   
17283 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
17284     fieldLabel:      '',
17285     inputType:      'hidden',
17286     width:          50,
17287     allowBlank:     true,
17288     labelSeparator: '',
17289     hidden:         true,
17290     itemCls :       'x-form-item-display-none'
17291
17292
17293 });
17294
17295
17296 /*
17297  * Based on:
17298  * Ext JS Library 1.1.1
17299  * Copyright(c) 2006-2007, Ext JS, LLC.
17300  *
17301  * Originally Released Under LGPL - original licence link has changed is not relivant.
17302  *
17303  * Fork - LGPL
17304  * <script type="text/javascript">
17305  */
17306  
17307 /**
17308  * @class Roo.form.TriggerField
17309  * @extends Roo.form.TextField
17310  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
17311  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
17312  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
17313  * for which you can provide a custom implementation.  For example:
17314  * <pre><code>
17315 var trigger = new Roo.form.TriggerField();
17316 trigger.onTriggerClick = myTriggerFn;
17317 trigger.applyTo('my-field');
17318 </code></pre>
17319  *
17320  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
17321  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
17322  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
17323  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
17324  * @constructor
17325  * Create a new TriggerField.
17326  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
17327  * to the base TextField)
17328  */
17329 Roo.form.TriggerField = function(config){
17330     this.mimicing = false;
17331     Roo.form.TriggerField.superclass.constructor.call(this, config);
17332 };
17333
17334 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
17335     /**
17336      * @cfg {String} triggerClass A CSS class to apply to the trigger
17337      */
17338     /**
17339      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17340      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
17341      */
17342     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
17343     /**
17344      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
17345      */
17346     hideTrigger:false,
17347
17348     /** @cfg {Boolean} grow @hide */
17349     /** @cfg {Number} growMin @hide */
17350     /** @cfg {Number} growMax @hide */
17351
17352     /**
17353      * @hide 
17354      * @method
17355      */
17356     autoSize: Roo.emptyFn,
17357     // private
17358     monitorTab : true,
17359     // private
17360     deferHeight : true,
17361
17362     
17363     actionMode : 'wrap',
17364     // private
17365     onResize : function(w, h){
17366         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
17367         if(typeof w == 'number'){
17368             var x = w - this.trigger.getWidth();
17369             this.el.setWidth(this.adjustWidth('input', x));
17370             this.trigger.setStyle('left', x+'px');
17371         }
17372     },
17373
17374     // private
17375     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17376
17377     // private
17378     getResizeEl : function(){
17379         return this.wrap;
17380     },
17381
17382     // private
17383     getPositionEl : function(){
17384         return this.wrap;
17385     },
17386
17387     // private
17388     alignErrorIcon : function(){
17389         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
17390     },
17391
17392     // private
17393     onRender : function(ct, position){
17394         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
17395         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
17396         this.trigger = this.wrap.createChild(this.triggerConfig ||
17397                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
17398         if(this.hideTrigger){
17399             this.trigger.setDisplayed(false);
17400         }
17401         this.initTrigger();
17402         if(!this.width){
17403             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
17404         }
17405     },
17406
17407     // private
17408     initTrigger : function(){
17409         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
17410         this.trigger.addClassOnOver('x-form-trigger-over');
17411         this.trigger.addClassOnClick('x-form-trigger-click');
17412     },
17413
17414     // private
17415     onDestroy : function(){
17416         if(this.trigger){
17417             this.trigger.removeAllListeners();
17418             this.trigger.remove();
17419         }
17420         if(this.wrap){
17421             this.wrap.remove();
17422         }
17423         Roo.form.TriggerField.superclass.onDestroy.call(this);
17424     },
17425
17426     // private
17427     onFocus : function(){
17428         Roo.form.TriggerField.superclass.onFocus.call(this);
17429         if(!this.mimicing){
17430             this.wrap.addClass('x-trigger-wrap-focus');
17431             this.mimicing = true;
17432             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
17433             if(this.monitorTab){
17434                 this.el.on("keydown", this.checkTab, this);
17435             }
17436         }
17437     },
17438
17439     // private
17440     checkTab : function(e){
17441         if(e.getKey() == e.TAB){
17442             this.triggerBlur();
17443         }
17444     },
17445
17446     // private
17447     onBlur : function(){
17448         // do nothing
17449     },
17450
17451     // private
17452     mimicBlur : function(e, t){
17453         if(!this.wrap.contains(t) && this.validateBlur()){
17454             this.triggerBlur();
17455         }
17456     },
17457
17458     // private
17459     triggerBlur : function(){
17460         this.mimicing = false;
17461         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
17462         if(this.monitorTab){
17463             this.el.un("keydown", this.checkTab, this);
17464         }
17465         this.wrap.removeClass('x-trigger-wrap-focus');
17466         Roo.form.TriggerField.superclass.onBlur.call(this);
17467     },
17468
17469     // private
17470     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
17471     validateBlur : function(e, t){
17472         return true;
17473     },
17474
17475     // private
17476     onDisable : function(){
17477         Roo.form.TriggerField.superclass.onDisable.call(this);
17478         if(this.wrap){
17479             this.wrap.addClass('x-item-disabled');
17480         }
17481     },
17482
17483     // private
17484     onEnable : function(){
17485         Roo.form.TriggerField.superclass.onEnable.call(this);
17486         if(this.wrap){
17487             this.wrap.removeClass('x-item-disabled');
17488         }
17489     },
17490
17491     // private
17492     onShow : function(){
17493         var ae = this.getActionEl();
17494         
17495         if(ae){
17496             ae.dom.style.display = '';
17497             ae.dom.style.visibility = 'visible';
17498         }
17499     },
17500
17501     // private
17502     
17503     onHide : function(){
17504         var ae = this.getActionEl();
17505         ae.dom.style.display = 'none';
17506     },
17507
17508     /**
17509      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
17510      * by an implementing function.
17511      * @method
17512      * @param {EventObject} e
17513      */
17514     onTriggerClick : Roo.emptyFn
17515 });
17516
17517 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
17518 // to be extended by an implementing class.  For an example of implementing this class, see the custom
17519 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
17520 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
17521     initComponent : function(){
17522         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
17523
17524         this.triggerConfig = {
17525             tag:'span', cls:'x-form-twin-triggers', cn:[
17526             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
17527             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
17528         ]};
17529     },
17530
17531     getTrigger : function(index){
17532         return this.triggers[index];
17533     },
17534
17535     initTrigger : function(){
17536         var ts = this.trigger.select('.x-form-trigger', true);
17537         this.wrap.setStyle('overflow', 'hidden');
17538         var triggerField = this;
17539         ts.each(function(t, all, index){
17540             t.hide = function(){
17541                 var w = triggerField.wrap.getWidth();
17542                 this.dom.style.display = 'none';
17543                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17544             };
17545             t.show = function(){
17546                 var w = triggerField.wrap.getWidth();
17547                 this.dom.style.display = '';
17548                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17549             };
17550             var triggerIndex = 'Trigger'+(index+1);
17551
17552             if(this['hide'+triggerIndex]){
17553                 t.dom.style.display = 'none';
17554             }
17555             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
17556             t.addClassOnOver('x-form-trigger-over');
17557             t.addClassOnClick('x-form-trigger-click');
17558         }, this);
17559         this.triggers = ts.elements;
17560     },
17561
17562     onTrigger1Click : Roo.emptyFn,
17563     onTrigger2Click : Roo.emptyFn
17564 });/*
17565  * Based on:
17566  * Ext JS Library 1.1.1
17567  * Copyright(c) 2006-2007, Ext JS, LLC.
17568  *
17569  * Originally Released Under LGPL - original licence link has changed is not relivant.
17570  *
17571  * Fork - LGPL
17572  * <script type="text/javascript">
17573  */
17574  
17575 /**
17576  * @class Roo.form.TextArea
17577  * @extends Roo.form.TextField
17578  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
17579  * support for auto-sizing.
17580  * @constructor
17581  * Creates a new TextArea
17582  * @param {Object} config Configuration options
17583  */
17584 Roo.form.TextArea = function(config){
17585     Roo.form.TextArea.superclass.constructor.call(this, config);
17586     // these are provided exchanges for backwards compat
17587     // minHeight/maxHeight were replaced by growMin/growMax to be
17588     // compatible with TextField growing config values
17589     if(this.minHeight !== undefined){
17590         this.growMin = this.minHeight;
17591     }
17592     if(this.maxHeight !== undefined){
17593         this.growMax = this.maxHeight;
17594     }
17595 };
17596
17597 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
17598     /**
17599      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
17600      */
17601     growMin : 60,
17602     /**
17603      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
17604      */
17605     growMax: 1000,
17606     /**
17607      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
17608      * in the field (equivalent to setting overflow: hidden, defaults to false)
17609      */
17610     preventScrollbars: false,
17611     /**
17612      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17613      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
17614      */
17615
17616     // private
17617     onRender : function(ct, position){
17618         if(!this.el){
17619             this.defaultAutoCreate = {
17620                 tag: "textarea",
17621                 style:"width:300px;height:60px;",
17622                 autocomplete: "new-password"
17623             };
17624         }
17625         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
17626         if(this.grow){
17627             this.textSizeEl = Roo.DomHelper.append(document.body, {
17628                 tag: "pre", cls: "x-form-grow-sizer"
17629             });
17630             if(this.preventScrollbars){
17631                 this.el.setStyle("overflow", "hidden");
17632             }
17633             this.el.setHeight(this.growMin);
17634         }
17635     },
17636
17637     onDestroy : function(){
17638         if(this.textSizeEl){
17639             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
17640         }
17641         Roo.form.TextArea.superclass.onDestroy.call(this);
17642     },
17643
17644     // private
17645     onKeyUp : function(e){
17646         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
17647             this.autoSize();
17648         }
17649     },
17650
17651     /**
17652      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
17653      * This only takes effect if grow = true, and fires the autosize event if the height changes.
17654      */
17655     autoSize : function(){
17656         if(!this.grow || !this.textSizeEl){
17657             return;
17658         }
17659         var el = this.el;
17660         var v = el.dom.value;
17661         var ts = this.textSizeEl;
17662
17663         ts.innerHTML = '';
17664         ts.appendChild(document.createTextNode(v));
17665         v = ts.innerHTML;
17666
17667         Roo.fly(ts).setWidth(this.el.getWidth());
17668         if(v.length < 1){
17669             v = "&#160;&#160;";
17670         }else{
17671             if(Roo.isIE){
17672                 v = v.replace(/\n/g, '<p>&#160;</p>');
17673             }
17674             v += "&#160;\n&#160;";
17675         }
17676         ts.innerHTML = v;
17677         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
17678         if(h != this.lastHeight){
17679             this.lastHeight = h;
17680             this.el.setHeight(h);
17681             this.fireEvent("autosize", this, h);
17682         }
17683     }
17684 });/*
17685  * Based on:
17686  * Ext JS Library 1.1.1
17687  * Copyright(c) 2006-2007, Ext JS, LLC.
17688  *
17689  * Originally Released Under LGPL - original licence link has changed is not relivant.
17690  *
17691  * Fork - LGPL
17692  * <script type="text/javascript">
17693  */
17694  
17695
17696 /**
17697  * @class Roo.form.NumberField
17698  * @extends Roo.form.TextField
17699  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17700  * @constructor
17701  * Creates a new NumberField
17702  * @param {Object} config Configuration options
17703  */
17704 Roo.form.NumberField = function(config){
17705     Roo.form.NumberField.superclass.constructor.call(this, config);
17706 };
17707
17708 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
17709     /**
17710      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
17711      */
17712     fieldClass: "x-form-field x-form-num-field",
17713     /**
17714      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
17715      */
17716     allowDecimals : true,
17717     /**
17718      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
17719      */
17720     decimalSeparator : ".",
17721     /**
17722      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
17723      */
17724     decimalPrecision : 2,
17725     /**
17726      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
17727      */
17728     allowNegative : true,
17729     /**
17730      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
17731      */
17732     minValue : Number.NEGATIVE_INFINITY,
17733     /**
17734      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
17735      */
17736     maxValue : Number.MAX_VALUE,
17737     /**
17738      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
17739      */
17740     minText : "The minimum value for this field is {0}",
17741     /**
17742      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
17743      */
17744     maxText : "The maximum value for this field is {0}",
17745     /**
17746      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
17747      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
17748      */
17749     nanText : "{0} is not a valid number",
17750
17751     // private
17752     initEvents : function(){
17753         Roo.form.NumberField.superclass.initEvents.call(this);
17754         var allowed = "0123456789";
17755         if(this.allowDecimals){
17756             allowed += this.decimalSeparator;
17757         }
17758         if(this.allowNegative){
17759             allowed += "-";
17760         }
17761         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
17762         var keyPress = function(e){
17763             var k = e.getKey();
17764             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
17765                 return;
17766             }
17767             var c = e.getCharCode();
17768             if(allowed.indexOf(String.fromCharCode(c)) === -1){
17769                 e.stopEvent();
17770             }
17771         };
17772         this.el.on("keypress", keyPress, this);
17773     },
17774
17775     // private
17776     validateValue : function(value){
17777         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
17778             return false;
17779         }
17780         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17781              return true;
17782         }
17783         var num = this.parseValue(value);
17784         if(isNaN(num)){
17785             this.markInvalid(String.format(this.nanText, value));
17786             return false;
17787         }
17788         if(num < this.minValue){
17789             this.markInvalid(String.format(this.minText, this.minValue));
17790             return false;
17791         }
17792         if(num > this.maxValue){
17793             this.markInvalid(String.format(this.maxText, this.maxValue));
17794             return false;
17795         }
17796         return true;
17797     },
17798
17799     getValue : function(){
17800         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
17801     },
17802
17803     // private
17804     parseValue : function(value){
17805         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
17806         return isNaN(value) ? '' : value;
17807     },
17808
17809     // private
17810     fixPrecision : function(value){
17811         var nan = isNaN(value);
17812         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
17813             return nan ? '' : value;
17814         }
17815         return parseFloat(value).toFixed(this.decimalPrecision);
17816     },
17817
17818     setValue : function(v){
17819         v = this.fixPrecision(v);
17820         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
17821     },
17822
17823     // private
17824     decimalPrecisionFcn : function(v){
17825         return Math.floor(v);
17826     },
17827
17828     beforeBlur : function(){
17829         var v = this.parseValue(this.getRawValue());
17830         if(v){
17831             this.setValue(v);
17832         }
17833     }
17834 });/*
17835  * Based on:
17836  * Ext JS Library 1.1.1
17837  * Copyright(c) 2006-2007, Ext JS, LLC.
17838  *
17839  * Originally Released Under LGPL - original licence link has changed is not relivant.
17840  *
17841  * Fork - LGPL
17842  * <script type="text/javascript">
17843  */
17844  
17845 /**
17846  * @class Roo.form.DateField
17847  * @extends Roo.form.TriggerField
17848  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17849 * @constructor
17850 * Create a new DateField
17851 * @param {Object} config
17852  */
17853 Roo.form.DateField = function(config)
17854 {
17855     Roo.form.DateField.superclass.constructor.call(this, config);
17856     
17857       this.addEvents({
17858          
17859         /**
17860          * @event select
17861          * Fires when a date is selected
17862              * @param {Roo.form.DateField} combo This combo box
17863              * @param {Date} date The date selected
17864              */
17865         'select' : true
17866          
17867     });
17868     
17869     
17870     if(typeof this.minValue == "string") {
17871         this.minValue = this.parseDate(this.minValue);
17872     }
17873     if(typeof this.maxValue == "string") {
17874         this.maxValue = this.parseDate(this.maxValue);
17875     }
17876     this.ddMatch = null;
17877     if(this.disabledDates){
17878         var dd = this.disabledDates;
17879         var re = "(?:";
17880         for(var i = 0; i < dd.length; i++){
17881             re += dd[i];
17882             if(i != dd.length-1) {
17883                 re += "|";
17884             }
17885         }
17886         this.ddMatch = new RegExp(re + ")");
17887     }
17888 };
17889
17890 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
17891     /**
17892      * @cfg {String} format
17893      * The default date format string which can be overriden for localization support.  The format must be
17894      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17895      */
17896     format : "m/d/y",
17897     /**
17898      * @cfg {String} altFormats
17899      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17900      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17901      */
17902     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
17903     /**
17904      * @cfg {Array} disabledDays
17905      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17906      */
17907     disabledDays : null,
17908     /**
17909      * @cfg {String} disabledDaysText
17910      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17911      */
17912     disabledDaysText : "Disabled",
17913     /**
17914      * @cfg {Array} disabledDates
17915      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17916      * expression so they are very powerful. Some examples:
17917      * <ul>
17918      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17919      * <li>["03/08", "09/16"] would disable those days for every year</li>
17920      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17921      * <li>["03/../2006"] would disable every day in March 2006</li>
17922      * <li>["^03"] would disable every day in every March</li>
17923      * </ul>
17924      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17925      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17926      */
17927     disabledDates : null,
17928     /**
17929      * @cfg {String} disabledDatesText
17930      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17931      */
17932     disabledDatesText : "Disabled",
17933     /**
17934      * @cfg {Date/String} minValue
17935      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17936      * valid format (defaults to null).
17937      */
17938     minValue : null,
17939     /**
17940      * @cfg {Date/String} maxValue
17941      * The maximum allowed date. Can be either a Javascript date object or a string date in a
17942      * valid format (defaults to null).
17943      */
17944     maxValue : null,
17945     /**
17946      * @cfg {String} minText
17947      * The error text to display when the date in the cell is before minValue (defaults to
17948      * 'The date in this field must be after {minValue}').
17949      */
17950     minText : "The date in this field must be equal to or after {0}",
17951     /**
17952      * @cfg {String} maxText
17953      * The error text to display when the date in the cell is after maxValue (defaults to
17954      * 'The date in this field must be before {maxValue}').
17955      */
17956     maxText : "The date in this field must be equal to or before {0}",
17957     /**
17958      * @cfg {String} invalidText
17959      * The error text to display when the date in the field is invalid (defaults to
17960      * '{value} is not a valid date - it must be in the format {format}').
17961      */
17962     invalidText : "{0} is not a valid date - it must be in the format {1}",
17963     /**
17964      * @cfg {String} triggerClass
17965      * An additional CSS class used to style the trigger button.  The trigger will always get the
17966      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
17967      * which displays a calendar icon).
17968      */
17969     triggerClass : 'x-form-date-trigger',
17970     
17971
17972     /**
17973      * @cfg {Boolean} useIso
17974      * if enabled, then the date field will use a hidden field to store the 
17975      * real value as iso formated date. default (false)
17976      */ 
17977     useIso : false,
17978     /**
17979      * @cfg {String/Object} autoCreate
17980      * A DomHelper element spec, or true for a default element spec (defaults to
17981      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
17982      */ 
17983     // private
17984     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
17985     
17986     // private
17987     hiddenField: false,
17988     
17989     onRender : function(ct, position)
17990     {
17991         Roo.form.DateField.superclass.onRender.call(this, ct, position);
17992         if (this.useIso) {
17993             //this.el.dom.removeAttribute('name'); 
17994             Roo.log("Changing name?");
17995             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
17996             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
17997                     'before', true);
17998             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
17999             // prevent input submission
18000             this.hiddenName = this.name;
18001         }
18002             
18003             
18004     },
18005     
18006     // private
18007     validateValue : function(value)
18008     {
18009         value = this.formatDate(value);
18010         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
18011             Roo.log('super failed');
18012             return false;
18013         }
18014         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18015              return true;
18016         }
18017         var svalue = value;
18018         value = this.parseDate(value);
18019         if(!value){
18020             Roo.log('parse date failed' + svalue);
18021             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18022             return false;
18023         }
18024         var time = value.getTime();
18025         if(this.minValue && time < this.minValue.getTime()){
18026             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18027             return false;
18028         }
18029         if(this.maxValue && time > this.maxValue.getTime()){
18030             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18031             return false;
18032         }
18033         if(this.disabledDays){
18034             var day = value.getDay();
18035             for(var i = 0; i < this.disabledDays.length; i++) {
18036                 if(day === this.disabledDays[i]){
18037                     this.markInvalid(this.disabledDaysText);
18038                     return false;
18039                 }
18040             }
18041         }
18042         var fvalue = this.formatDate(value);
18043         if(this.ddMatch && this.ddMatch.test(fvalue)){
18044             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18045             return false;
18046         }
18047         return true;
18048     },
18049
18050     // private
18051     // Provides logic to override the default TriggerField.validateBlur which just returns true
18052     validateBlur : function(){
18053         return !this.menu || !this.menu.isVisible();
18054     },
18055     
18056     getName: function()
18057     {
18058         // returns hidden if it's set..
18059         if (!this.rendered) {return ''};
18060         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
18061         
18062     },
18063
18064     /**
18065      * Returns the current date value of the date field.
18066      * @return {Date} The date value
18067      */
18068     getValue : function(){
18069         
18070         return  this.hiddenField ?
18071                 this.hiddenField.value :
18072                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
18073     },
18074
18075     /**
18076      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18077      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
18078      * (the default format used is "m/d/y").
18079      * <br />Usage:
18080      * <pre><code>
18081 //All of these calls set the same date value (May 4, 2006)
18082
18083 //Pass a date object:
18084 var dt = new Date('5/4/06');
18085 dateField.setValue(dt);
18086
18087 //Pass a date string (default format):
18088 dateField.setValue('5/4/06');
18089
18090 //Pass a date string (custom format):
18091 dateField.format = 'Y-m-d';
18092 dateField.setValue('2006-5-4');
18093 </code></pre>
18094      * @param {String/Date} date The date or valid date string
18095      */
18096     setValue : function(date){
18097         if (this.hiddenField) {
18098             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18099         }
18100         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18101         // make sure the value field is always stored as a date..
18102         this.value = this.parseDate(date);
18103         
18104         
18105     },
18106
18107     // private
18108     parseDate : function(value){
18109         if(!value || value instanceof Date){
18110             return value;
18111         }
18112         var v = Date.parseDate(value, this.format);
18113          if (!v && this.useIso) {
18114             v = Date.parseDate(value, 'Y-m-d');
18115         }
18116         if(!v && this.altFormats){
18117             if(!this.altFormatsArray){
18118                 this.altFormatsArray = this.altFormats.split("|");
18119             }
18120             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18121                 v = Date.parseDate(value, this.altFormatsArray[i]);
18122             }
18123         }
18124         return v;
18125     },
18126
18127     // private
18128     formatDate : function(date, fmt){
18129         return (!date || !(date instanceof Date)) ?
18130                date : date.dateFormat(fmt || this.format);
18131     },
18132
18133     // private
18134     menuListeners : {
18135         select: function(m, d){
18136             
18137             this.setValue(d);
18138             this.fireEvent('select', this, d);
18139         },
18140         show : function(){ // retain focus styling
18141             this.onFocus();
18142         },
18143         hide : function(){
18144             this.focus.defer(10, this);
18145             var ml = this.menuListeners;
18146             this.menu.un("select", ml.select,  this);
18147             this.menu.un("show", ml.show,  this);
18148             this.menu.un("hide", ml.hide,  this);
18149         }
18150     },
18151
18152     // private
18153     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18154     onTriggerClick : function(){
18155         if(this.disabled){
18156             return;
18157         }
18158         if(this.menu == null){
18159             this.menu = new Roo.menu.DateMenu();
18160         }
18161         Roo.apply(this.menu.picker,  {
18162             showClear: this.allowBlank,
18163             minDate : this.minValue,
18164             maxDate : this.maxValue,
18165             disabledDatesRE : this.ddMatch,
18166             disabledDatesText : this.disabledDatesText,
18167             disabledDays : this.disabledDays,
18168             disabledDaysText : this.disabledDaysText,
18169             format : this.useIso ? 'Y-m-d' : this.format,
18170             minText : String.format(this.minText, this.formatDate(this.minValue)),
18171             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18172         });
18173         this.menu.on(Roo.apply({}, this.menuListeners, {
18174             scope:this
18175         }));
18176         this.menu.picker.setValue(this.getValue() || new Date());
18177         this.menu.show(this.el, "tl-bl?");
18178     },
18179
18180     beforeBlur : function(){
18181         var v = this.parseDate(this.getRawValue());
18182         if(v){
18183             this.setValue(v);
18184         }
18185     },
18186
18187     /*@
18188      * overide
18189      * 
18190      */
18191     isDirty : function() {
18192         if(this.disabled) {
18193             return false;
18194         }
18195         
18196         if(typeof(this.startValue) === 'undefined'){
18197             return false;
18198         }
18199         
18200         return String(this.getValue()) !== String(this.startValue);
18201         
18202     },
18203     // @overide
18204     cleanLeadingSpace : function(e)
18205     {
18206        return;
18207     }
18208     
18209 });/*
18210  * Based on:
18211  * Ext JS Library 1.1.1
18212  * Copyright(c) 2006-2007, Ext JS, LLC.
18213  *
18214  * Originally Released Under LGPL - original licence link has changed is not relivant.
18215  *
18216  * Fork - LGPL
18217  * <script type="text/javascript">
18218  */
18219  
18220 /**
18221  * @class Roo.form.MonthField
18222  * @extends Roo.form.TriggerField
18223  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
18224 * @constructor
18225 * Create a new MonthField
18226 * @param {Object} config
18227  */
18228 Roo.form.MonthField = function(config){
18229     
18230     Roo.form.MonthField.superclass.constructor.call(this, config);
18231     
18232       this.addEvents({
18233          
18234         /**
18235          * @event select
18236          * Fires when a date is selected
18237              * @param {Roo.form.MonthFieeld} combo This combo box
18238              * @param {Date} date The date selected
18239              */
18240         'select' : true
18241          
18242     });
18243     
18244     
18245     if(typeof this.minValue == "string") {
18246         this.minValue = this.parseDate(this.minValue);
18247     }
18248     if(typeof this.maxValue == "string") {
18249         this.maxValue = this.parseDate(this.maxValue);
18250     }
18251     this.ddMatch = null;
18252     if(this.disabledDates){
18253         var dd = this.disabledDates;
18254         var re = "(?:";
18255         for(var i = 0; i < dd.length; i++){
18256             re += dd[i];
18257             if(i != dd.length-1) {
18258                 re += "|";
18259             }
18260         }
18261         this.ddMatch = new RegExp(re + ")");
18262     }
18263 };
18264
18265 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
18266     /**
18267      * @cfg {String} format
18268      * The default date format string which can be overriden for localization support.  The format must be
18269      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18270      */
18271     format : "M Y",
18272     /**
18273      * @cfg {String} altFormats
18274      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18275      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18276      */
18277     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
18278     /**
18279      * @cfg {Array} disabledDays
18280      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
18281      */
18282     disabledDays : [0,1,2,3,4,5,6],
18283     /**
18284      * @cfg {String} disabledDaysText
18285      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
18286      */
18287     disabledDaysText : "Disabled",
18288     /**
18289      * @cfg {Array} disabledDates
18290      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
18291      * expression so they are very powerful. Some examples:
18292      * <ul>
18293      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
18294      * <li>["03/08", "09/16"] would disable those days for every year</li>
18295      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
18296      * <li>["03/../2006"] would disable every day in March 2006</li>
18297      * <li>["^03"] would disable every day in every March</li>
18298      * </ul>
18299      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
18300      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
18301      */
18302     disabledDates : null,
18303     /**
18304      * @cfg {String} disabledDatesText
18305      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
18306      */
18307     disabledDatesText : "Disabled",
18308     /**
18309      * @cfg {Date/String} minValue
18310      * The minimum allowed date. Can be either a Javascript date object or a string date in a
18311      * valid format (defaults to null).
18312      */
18313     minValue : null,
18314     /**
18315      * @cfg {Date/String} maxValue
18316      * The maximum allowed date. Can be either a Javascript date object or a string date in a
18317      * valid format (defaults to null).
18318      */
18319     maxValue : null,
18320     /**
18321      * @cfg {String} minText
18322      * The error text to display when the date in the cell is before minValue (defaults to
18323      * 'The date in this field must be after {minValue}').
18324      */
18325     minText : "The date in this field must be equal to or after {0}",
18326     /**
18327      * @cfg {String} maxTextf
18328      * The error text to display when the date in the cell is after maxValue (defaults to
18329      * 'The date in this field must be before {maxValue}').
18330      */
18331     maxText : "The date in this field must be equal to or before {0}",
18332     /**
18333      * @cfg {String} invalidText
18334      * The error text to display when the date in the field is invalid (defaults to
18335      * '{value} is not a valid date - it must be in the format {format}').
18336      */
18337     invalidText : "{0} is not a valid date - it must be in the format {1}",
18338     /**
18339      * @cfg {String} triggerClass
18340      * An additional CSS class used to style the trigger button.  The trigger will always get the
18341      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18342      * which displays a calendar icon).
18343      */
18344     triggerClass : 'x-form-date-trigger',
18345     
18346
18347     /**
18348      * @cfg {Boolean} useIso
18349      * if enabled, then the date field will use a hidden field to store the 
18350      * real value as iso formated date. default (true)
18351      */ 
18352     useIso : true,
18353     /**
18354      * @cfg {String/Object} autoCreate
18355      * A DomHelper element spec, or true for a default element spec (defaults to
18356      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18357      */ 
18358     // private
18359     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
18360     
18361     // private
18362     hiddenField: false,
18363     
18364     hideMonthPicker : false,
18365     
18366     onRender : function(ct, position)
18367     {
18368         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
18369         if (this.useIso) {
18370             this.el.dom.removeAttribute('name'); 
18371             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18372                     'before', true);
18373             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18374             // prevent input submission
18375             this.hiddenName = this.name;
18376         }
18377             
18378             
18379     },
18380     
18381     // private
18382     validateValue : function(value)
18383     {
18384         value = this.formatDate(value);
18385         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
18386             return false;
18387         }
18388         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18389              return true;
18390         }
18391         var svalue = value;
18392         value = this.parseDate(value);
18393         if(!value){
18394             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18395             return false;
18396         }
18397         var time = value.getTime();
18398         if(this.minValue && time < this.minValue.getTime()){
18399             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18400             return false;
18401         }
18402         if(this.maxValue && time > this.maxValue.getTime()){
18403             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18404             return false;
18405         }
18406         /*if(this.disabledDays){
18407             var day = value.getDay();
18408             for(var i = 0; i < this.disabledDays.length; i++) {
18409                 if(day === this.disabledDays[i]){
18410                     this.markInvalid(this.disabledDaysText);
18411                     return false;
18412                 }
18413             }
18414         }
18415         */
18416         var fvalue = this.formatDate(value);
18417         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
18418             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18419             return false;
18420         }
18421         */
18422         return true;
18423     },
18424
18425     // private
18426     // Provides logic to override the default TriggerField.validateBlur which just returns true
18427     validateBlur : function(){
18428         return !this.menu || !this.menu.isVisible();
18429     },
18430
18431     /**
18432      * Returns the current date value of the date field.
18433      * @return {Date} The date value
18434      */
18435     getValue : function(){
18436         
18437         
18438         
18439         return  this.hiddenField ?
18440                 this.hiddenField.value :
18441                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
18442     },
18443
18444     /**
18445      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18446      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
18447      * (the default format used is "m/d/y").
18448      * <br />Usage:
18449      * <pre><code>
18450 //All of these calls set the same date value (May 4, 2006)
18451
18452 //Pass a date object:
18453 var dt = new Date('5/4/06');
18454 monthField.setValue(dt);
18455
18456 //Pass a date string (default format):
18457 monthField.setValue('5/4/06');
18458
18459 //Pass a date string (custom format):
18460 monthField.format = 'Y-m-d';
18461 monthField.setValue('2006-5-4');
18462 </code></pre>
18463      * @param {String/Date} date The date or valid date string
18464      */
18465     setValue : function(date){
18466         Roo.log('month setValue' + date);
18467         // can only be first of month..
18468         
18469         var val = this.parseDate(date);
18470         
18471         if (this.hiddenField) {
18472             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18473         }
18474         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18475         this.value = this.parseDate(date);
18476     },
18477
18478     // private
18479     parseDate : function(value){
18480         if(!value || value instanceof Date){
18481             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
18482             return value;
18483         }
18484         var v = Date.parseDate(value, this.format);
18485         if (!v && this.useIso) {
18486             v = Date.parseDate(value, 'Y-m-d');
18487         }
18488         if (v) {
18489             // 
18490             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
18491         }
18492         
18493         
18494         if(!v && this.altFormats){
18495             if(!this.altFormatsArray){
18496                 this.altFormatsArray = this.altFormats.split("|");
18497             }
18498             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18499                 v = Date.parseDate(value, this.altFormatsArray[i]);
18500             }
18501         }
18502         return v;
18503     },
18504
18505     // private
18506     formatDate : function(date, fmt){
18507         return (!date || !(date instanceof Date)) ?
18508                date : date.dateFormat(fmt || this.format);
18509     },
18510
18511     // private
18512     menuListeners : {
18513         select: function(m, d){
18514             this.setValue(d);
18515             this.fireEvent('select', this, d);
18516         },
18517         show : function(){ // retain focus styling
18518             this.onFocus();
18519         },
18520         hide : function(){
18521             this.focus.defer(10, this);
18522             var ml = this.menuListeners;
18523             this.menu.un("select", ml.select,  this);
18524             this.menu.un("show", ml.show,  this);
18525             this.menu.un("hide", ml.hide,  this);
18526         }
18527     },
18528     // private
18529     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18530     onTriggerClick : function(){
18531         if(this.disabled){
18532             return;
18533         }
18534         if(this.menu == null){
18535             this.menu = new Roo.menu.DateMenu();
18536            
18537         }
18538         
18539         Roo.apply(this.menu.picker,  {
18540             
18541             showClear: this.allowBlank,
18542             minDate : this.minValue,
18543             maxDate : this.maxValue,
18544             disabledDatesRE : this.ddMatch,
18545             disabledDatesText : this.disabledDatesText,
18546             
18547             format : this.useIso ? 'Y-m-d' : this.format,
18548             minText : String.format(this.minText, this.formatDate(this.minValue)),
18549             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18550             
18551         });
18552          this.menu.on(Roo.apply({}, this.menuListeners, {
18553             scope:this
18554         }));
18555        
18556         
18557         var m = this.menu;
18558         var p = m.picker;
18559         
18560         // hide month picker get's called when we called by 'before hide';
18561         
18562         var ignorehide = true;
18563         p.hideMonthPicker  = function(disableAnim){
18564             if (ignorehide) {
18565                 return;
18566             }
18567              if(this.monthPicker){
18568                 Roo.log("hideMonthPicker called");
18569                 if(disableAnim === true){
18570                     this.monthPicker.hide();
18571                 }else{
18572                     this.monthPicker.slideOut('t', {duration:.2});
18573                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
18574                     p.fireEvent("select", this, this.value);
18575                     m.hide();
18576                 }
18577             }
18578         }
18579         
18580         Roo.log('picker set value');
18581         Roo.log(this.getValue());
18582         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
18583         m.show(this.el, 'tl-bl?');
18584         ignorehide  = false;
18585         // this will trigger hideMonthPicker..
18586         
18587         
18588         // hidden the day picker
18589         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
18590         
18591         
18592         
18593       
18594         
18595         p.showMonthPicker.defer(100, p);
18596     
18597         
18598        
18599     },
18600
18601     beforeBlur : function(){
18602         var v = this.parseDate(this.getRawValue());
18603         if(v){
18604             this.setValue(v);
18605         }
18606     }
18607
18608     /** @cfg {Boolean} grow @hide */
18609     /** @cfg {Number} growMin @hide */
18610     /** @cfg {Number} growMax @hide */
18611     /**
18612      * @hide
18613      * @method autoSize
18614      */
18615 });/*
18616  * Based on:
18617  * Ext JS Library 1.1.1
18618  * Copyright(c) 2006-2007, Ext JS, LLC.
18619  *
18620  * Originally Released Under LGPL - original licence link has changed is not relivant.
18621  *
18622  * Fork - LGPL
18623  * <script type="text/javascript">
18624  */
18625  
18626
18627 /**
18628  * @class Roo.form.ComboBox
18629  * @extends Roo.form.TriggerField
18630  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
18631  * @constructor
18632  * Create a new ComboBox.
18633  * @param {Object} config Configuration options
18634  */
18635 Roo.form.ComboBox = function(config){
18636     Roo.form.ComboBox.superclass.constructor.call(this, config);
18637     this.addEvents({
18638         /**
18639          * @event expand
18640          * Fires when the dropdown list is expanded
18641              * @param {Roo.form.ComboBox} combo This combo box
18642              */
18643         'expand' : true,
18644         /**
18645          * @event collapse
18646          * Fires when the dropdown list is collapsed
18647              * @param {Roo.form.ComboBox} combo This combo box
18648              */
18649         'collapse' : true,
18650         /**
18651          * @event beforeselect
18652          * Fires before a list item is selected. Return false to cancel the selection.
18653              * @param {Roo.form.ComboBox} combo This combo box
18654              * @param {Roo.data.Record} record The data record returned from the underlying store
18655              * @param {Number} index The index of the selected item in the dropdown list
18656              */
18657         'beforeselect' : true,
18658         /**
18659          * @event select
18660          * Fires when a list item is selected
18661              * @param {Roo.form.ComboBox} combo This combo box
18662              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
18663              * @param {Number} index The index of the selected item in the dropdown list
18664              */
18665         'select' : true,
18666         /**
18667          * @event beforequery
18668          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
18669          * The event object passed has these properties:
18670              * @param {Roo.form.ComboBox} combo This combo box
18671              * @param {String} query The query
18672              * @param {Boolean} forceAll true to force "all" query
18673              * @param {Boolean} cancel true to cancel the query
18674              * @param {Object} e The query event object
18675              */
18676         'beforequery': true,
18677          /**
18678          * @event add
18679          * Fires when the 'add' icon is pressed (add a listener to enable add button)
18680              * @param {Roo.form.ComboBox} combo This combo box
18681              */
18682         'add' : true,
18683         /**
18684          * @event edit
18685          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
18686              * @param {Roo.form.ComboBox} combo This combo box
18687              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
18688              */
18689         'edit' : true
18690         
18691         
18692     });
18693     if(this.transform){
18694         this.allowDomMove = false;
18695         var s = Roo.getDom(this.transform);
18696         if(!this.hiddenName){
18697             this.hiddenName = s.name;
18698         }
18699         if(!this.store){
18700             this.mode = 'local';
18701             var d = [], opts = s.options;
18702             for(var i = 0, len = opts.length;i < len; i++){
18703                 var o = opts[i];
18704                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
18705                 if(o.selected) {
18706                     this.value = value;
18707                 }
18708                 d.push([value, o.text]);
18709             }
18710             this.store = new Roo.data.SimpleStore({
18711                 'id': 0,
18712                 fields: ['value', 'text'],
18713                 data : d
18714             });
18715             this.valueField = 'value';
18716             this.displayField = 'text';
18717         }
18718         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
18719         if(!this.lazyRender){
18720             this.target = true;
18721             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
18722             s.parentNode.removeChild(s); // remove it
18723             this.render(this.el.parentNode);
18724         }else{
18725             s.parentNode.removeChild(s); // remove it
18726         }
18727
18728     }
18729     if (this.store) {
18730         this.store = Roo.factory(this.store, Roo.data);
18731     }
18732     
18733     this.selectedIndex = -1;
18734     if(this.mode == 'local'){
18735         if(config.queryDelay === undefined){
18736             this.queryDelay = 10;
18737         }
18738         if(config.minChars === undefined){
18739             this.minChars = 0;
18740         }
18741     }
18742 };
18743
18744 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
18745     /**
18746      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
18747      */
18748     /**
18749      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
18750      * rendering into an Roo.Editor, defaults to false)
18751      */
18752     /**
18753      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
18754      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
18755      */
18756     /**
18757      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
18758      */
18759     /**
18760      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
18761      * the dropdown list (defaults to undefined, with no header element)
18762      */
18763
18764      /**
18765      * @cfg {String/Roo.Template} tpl The template to use to render the output
18766      */
18767      
18768     // private
18769     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
18770     /**
18771      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
18772      */
18773     listWidth: undefined,
18774     /**
18775      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
18776      * mode = 'remote' or 'text' if mode = 'local')
18777      */
18778     displayField: undefined,
18779     /**
18780      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
18781      * mode = 'remote' or 'value' if mode = 'local'). 
18782      * Note: use of a valueField requires the user make a selection
18783      * in order for a value to be mapped.
18784      */
18785     valueField: undefined,
18786     
18787     
18788     /**
18789      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
18790      * field's data value (defaults to the underlying DOM element's name)
18791      */
18792     hiddenName: undefined,
18793     /**
18794      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
18795      */
18796     listClass: '',
18797     /**
18798      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
18799      */
18800     selectedClass: 'x-combo-selected',
18801     /**
18802      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
18803      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
18804      * which displays a downward arrow icon).
18805      */
18806     triggerClass : 'x-form-arrow-trigger',
18807     /**
18808      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
18809      */
18810     shadow:'sides',
18811     /**
18812      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
18813      * anchor positions (defaults to 'tl-bl')
18814      */
18815     listAlign: 'tl-bl?',
18816     /**
18817      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
18818      */
18819     maxHeight: 300,
18820     /**
18821      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
18822      * query specified by the allQuery config option (defaults to 'query')
18823      */
18824     triggerAction: 'query',
18825     /**
18826      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
18827      * (defaults to 4, does not apply if editable = false)
18828      */
18829     minChars : 4,
18830     /**
18831      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
18832      * delay (typeAheadDelay) if it matches a known value (defaults to false)
18833      */
18834     typeAhead: false,
18835     /**
18836      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
18837      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
18838      */
18839     queryDelay: 500,
18840     /**
18841      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
18842      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
18843      */
18844     pageSize: 0,
18845     /**
18846      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
18847      * when editable = true (defaults to false)
18848      */
18849     selectOnFocus:false,
18850     /**
18851      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
18852      */
18853     queryParam: 'query',
18854     /**
18855      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
18856      * when mode = 'remote' (defaults to 'Loading...')
18857      */
18858     loadingText: 'Loading...',
18859     /**
18860      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
18861      */
18862     resizable: false,
18863     /**
18864      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
18865      */
18866     handleHeight : 8,
18867     /**
18868      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
18869      * traditional select (defaults to true)
18870      */
18871     editable: true,
18872     /**
18873      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
18874      */
18875     allQuery: '',
18876     /**
18877      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
18878      */
18879     mode: 'remote',
18880     /**
18881      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
18882      * listWidth has a higher value)
18883      */
18884     minListWidth : 70,
18885     /**
18886      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
18887      * allow the user to set arbitrary text into the field (defaults to false)
18888      */
18889     forceSelection:false,
18890     /**
18891      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
18892      * if typeAhead = true (defaults to 250)
18893      */
18894     typeAheadDelay : 250,
18895     /**
18896      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
18897      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
18898      */
18899     valueNotFoundText : undefined,
18900     /**
18901      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
18902      */
18903     blockFocus : false,
18904     
18905     /**
18906      * @cfg {Boolean} disableClear Disable showing of clear button.
18907      */
18908     disableClear : false,
18909     /**
18910      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
18911      */
18912     alwaysQuery : false,
18913     
18914     //private
18915     addicon : false,
18916     editicon: false,
18917     
18918     // element that contains real text value.. (when hidden is used..)
18919      
18920     // private
18921     onRender : function(ct, position)
18922     {
18923         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
18924         
18925         if(this.hiddenName){
18926             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
18927                     'before', true);
18928             this.hiddenField.value =
18929                 this.hiddenValue !== undefined ? this.hiddenValue :
18930                 this.value !== undefined ? this.value : '';
18931
18932             // prevent input submission
18933             this.el.dom.removeAttribute('name');
18934              
18935              
18936         }
18937         
18938         if(Roo.isGecko){
18939             this.el.dom.setAttribute('autocomplete', 'off');
18940         }
18941
18942         var cls = 'x-combo-list';
18943
18944         this.list = new Roo.Layer({
18945             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
18946         });
18947
18948         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
18949         this.list.setWidth(lw);
18950         this.list.swallowEvent('mousewheel');
18951         this.assetHeight = 0;
18952
18953         if(this.title){
18954             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
18955             this.assetHeight += this.header.getHeight();
18956         }
18957
18958         this.innerList = this.list.createChild({cls:cls+'-inner'});
18959         this.innerList.on('mouseover', this.onViewOver, this);
18960         this.innerList.on('mousemove', this.onViewMove, this);
18961         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18962         
18963         if(this.allowBlank && !this.pageSize && !this.disableClear){
18964             this.footer = this.list.createChild({cls:cls+'-ft'});
18965             this.pageTb = new Roo.Toolbar(this.footer);
18966            
18967         }
18968         if(this.pageSize){
18969             this.footer = this.list.createChild({cls:cls+'-ft'});
18970             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
18971                     {pageSize: this.pageSize});
18972             
18973         }
18974         
18975         if (this.pageTb && this.allowBlank && !this.disableClear) {
18976             var _this = this;
18977             this.pageTb.add(new Roo.Toolbar.Fill(), {
18978                 cls: 'x-btn-icon x-btn-clear',
18979                 text: '&#160;',
18980                 handler: function()
18981                 {
18982                     _this.collapse();
18983                     _this.clearValue();
18984                     _this.onSelect(false, -1);
18985                 }
18986             });
18987         }
18988         if (this.footer) {
18989             this.assetHeight += this.footer.getHeight();
18990         }
18991         
18992
18993         if(!this.tpl){
18994             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
18995         }
18996
18997         this.view = new Roo.View(this.innerList, this.tpl, {
18998             singleSelect:true,
18999             store: this.store,
19000             selectedClass: this.selectedClass
19001         });
19002
19003         this.view.on('click', this.onViewClick, this);
19004
19005         this.store.on('beforeload', this.onBeforeLoad, this);
19006         this.store.on('load', this.onLoad, this);
19007         this.store.on('loadexception', this.onLoadException, this);
19008
19009         if(this.resizable){
19010             this.resizer = new Roo.Resizable(this.list,  {
19011                pinned:true, handles:'se'
19012             });
19013             this.resizer.on('resize', function(r, w, h){
19014                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
19015                 this.listWidth = w;
19016                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
19017                 this.restrictHeight();
19018             }, this);
19019             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
19020         }
19021         if(!this.editable){
19022             this.editable = true;
19023             this.setEditable(false);
19024         }  
19025         
19026         
19027         if (typeof(this.events.add.listeners) != 'undefined') {
19028             
19029             this.addicon = this.wrap.createChild(
19030                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
19031        
19032             this.addicon.on('click', function(e) {
19033                 this.fireEvent('add', this);
19034             }, this);
19035         }
19036         if (typeof(this.events.edit.listeners) != 'undefined') {
19037             
19038             this.editicon = this.wrap.createChild(
19039                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
19040             if (this.addicon) {
19041                 this.editicon.setStyle('margin-left', '40px');
19042             }
19043             this.editicon.on('click', function(e) {
19044                 
19045                 // we fire even  if inothing is selected..
19046                 this.fireEvent('edit', this, this.lastData );
19047                 
19048             }, this);
19049         }
19050         
19051         
19052         
19053     },
19054
19055     // private
19056     initEvents : function(){
19057         Roo.form.ComboBox.superclass.initEvents.call(this);
19058
19059         this.keyNav = new Roo.KeyNav(this.el, {
19060             "up" : function(e){
19061                 this.inKeyMode = true;
19062                 this.selectPrev();
19063             },
19064
19065             "down" : function(e){
19066                 if(!this.isExpanded()){
19067                     this.onTriggerClick();
19068                 }else{
19069                     this.inKeyMode = true;
19070                     this.selectNext();
19071                 }
19072             },
19073
19074             "enter" : function(e){
19075                 this.onViewClick();
19076                 //return true;
19077             },
19078
19079             "esc" : function(e){
19080                 this.collapse();
19081             },
19082
19083             "tab" : function(e){
19084                 this.onViewClick(false);
19085                 this.fireEvent("specialkey", this, e);
19086                 return true;
19087             },
19088
19089             scope : this,
19090
19091             doRelay : function(foo, bar, hname){
19092                 if(hname == 'down' || this.scope.isExpanded()){
19093                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
19094                 }
19095                 return true;
19096             },
19097
19098             forceKeyDown: true
19099         });
19100         this.queryDelay = Math.max(this.queryDelay || 10,
19101                 this.mode == 'local' ? 10 : 250);
19102         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
19103         if(this.typeAhead){
19104             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
19105         }
19106         if(this.editable !== false){
19107             this.el.on("keyup", this.onKeyUp, this);
19108         }
19109         if(this.forceSelection){
19110             this.on('blur', this.doForce, this);
19111         }
19112     },
19113
19114     onDestroy : function(){
19115         if(this.view){
19116             this.view.setStore(null);
19117             this.view.el.removeAllListeners();
19118             this.view.el.remove();
19119             this.view.purgeListeners();
19120         }
19121         if(this.list){
19122             this.list.destroy();
19123         }
19124         if(this.store){
19125             this.store.un('beforeload', this.onBeforeLoad, this);
19126             this.store.un('load', this.onLoad, this);
19127             this.store.un('loadexception', this.onLoadException, this);
19128         }
19129         Roo.form.ComboBox.superclass.onDestroy.call(this);
19130     },
19131
19132     // private
19133     fireKey : function(e){
19134         if(e.isNavKeyPress() && !this.list.isVisible()){
19135             this.fireEvent("specialkey", this, e);
19136         }
19137     },
19138
19139     // private
19140     onResize: function(w, h){
19141         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
19142         
19143         if(typeof w != 'number'){
19144             // we do not handle it!?!?
19145             return;
19146         }
19147         var tw = this.trigger.getWidth();
19148         tw += this.addicon ? this.addicon.getWidth() : 0;
19149         tw += this.editicon ? this.editicon.getWidth() : 0;
19150         var x = w - tw;
19151         this.el.setWidth( this.adjustWidth('input', x));
19152             
19153         this.trigger.setStyle('left', x+'px');
19154         
19155         if(this.list && this.listWidth === undefined){
19156             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
19157             this.list.setWidth(lw);
19158             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19159         }
19160         
19161     
19162         
19163     },
19164
19165     /**
19166      * Allow or prevent the user from directly editing the field text.  If false is passed,
19167      * the user will only be able to select from the items defined in the dropdown list.  This method
19168      * is the runtime equivalent of setting the 'editable' config option at config time.
19169      * @param {Boolean} value True to allow the user to directly edit the field text
19170      */
19171     setEditable : function(value){
19172         if(value == this.editable){
19173             return;
19174         }
19175         this.editable = value;
19176         if(!value){
19177             this.el.dom.setAttribute('readOnly', true);
19178             this.el.on('mousedown', this.onTriggerClick,  this);
19179             this.el.addClass('x-combo-noedit');
19180         }else{
19181             this.el.dom.setAttribute('readOnly', false);
19182             this.el.un('mousedown', this.onTriggerClick,  this);
19183             this.el.removeClass('x-combo-noedit');
19184         }
19185     },
19186
19187     // private
19188     onBeforeLoad : function(){
19189         if(!this.hasFocus){
19190             return;
19191         }
19192         this.innerList.update(this.loadingText ?
19193                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
19194         this.restrictHeight();
19195         this.selectedIndex = -1;
19196     },
19197
19198     // private
19199     onLoad : function(){
19200         if(!this.hasFocus){
19201             return;
19202         }
19203         if(this.store.getCount() > 0){
19204             this.expand();
19205             this.restrictHeight();
19206             if(this.lastQuery == this.allQuery){
19207                 if(this.editable){
19208                     this.el.dom.select();
19209                 }
19210                 if(!this.selectByValue(this.value, true)){
19211                     this.select(0, true);
19212                 }
19213             }else{
19214                 this.selectNext();
19215                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
19216                     this.taTask.delay(this.typeAheadDelay);
19217                 }
19218             }
19219         }else{
19220             this.onEmptyResults();
19221         }
19222         //this.el.focus();
19223     },
19224     // private
19225     onLoadException : function()
19226     {
19227         this.collapse();
19228         Roo.log(this.store.reader.jsonData);
19229         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
19230             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
19231         }
19232         
19233         
19234     },
19235     // private
19236     onTypeAhead : function(){
19237         if(this.store.getCount() > 0){
19238             var r = this.store.getAt(0);
19239             var newValue = r.data[this.displayField];
19240             var len = newValue.length;
19241             var selStart = this.getRawValue().length;
19242             if(selStart != len){
19243                 this.setRawValue(newValue);
19244                 this.selectText(selStart, newValue.length);
19245             }
19246         }
19247     },
19248
19249     // private
19250     onSelect : function(record, index){
19251         if(this.fireEvent('beforeselect', this, record, index) !== false){
19252             this.setFromData(index > -1 ? record.data : false);
19253             this.collapse();
19254             this.fireEvent('select', this, record, index);
19255         }
19256     },
19257
19258     /**
19259      * Returns the currently selected field value or empty string if no value is set.
19260      * @return {String} value The selected value
19261      */
19262     getValue : function(){
19263         if(this.valueField){
19264             return typeof this.value != 'undefined' ? this.value : '';
19265         }
19266         return Roo.form.ComboBox.superclass.getValue.call(this);
19267     },
19268
19269     /**
19270      * Clears any text/value currently set in the field
19271      */
19272     clearValue : function(){
19273         if(this.hiddenField){
19274             this.hiddenField.value = '';
19275         }
19276         this.value = '';
19277         this.setRawValue('');
19278         this.lastSelectionText = '';
19279         
19280     },
19281
19282     /**
19283      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
19284      * will be displayed in the field.  If the value does not match the data value of an existing item,
19285      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
19286      * Otherwise the field will be blank (although the value will still be set).
19287      * @param {String} value The value to match
19288      */
19289     setValue : function(v){
19290         var text = v;
19291         if(this.valueField){
19292             var r = this.findRecord(this.valueField, v);
19293             if(r){
19294                 text = r.data[this.displayField];
19295             }else if(this.valueNotFoundText !== undefined){
19296                 text = this.valueNotFoundText;
19297             }
19298         }
19299         this.lastSelectionText = text;
19300         if(this.hiddenField){
19301             this.hiddenField.value = v;
19302         }
19303         Roo.form.ComboBox.superclass.setValue.call(this, text);
19304         this.value = v;
19305     },
19306     /**
19307      * @property {Object} the last set data for the element
19308      */
19309     
19310     lastData : false,
19311     /**
19312      * Sets the value of the field based on a object which is related to the record format for the store.
19313      * @param {Object} value the value to set as. or false on reset?
19314      */
19315     setFromData : function(o){
19316         var dv = ''; // display value
19317         var vv = ''; // value value..
19318         this.lastData = o;
19319         if (this.displayField) {
19320             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19321         } else {
19322             // this is an error condition!!!
19323             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19324         }
19325         
19326         if(this.valueField){
19327             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
19328         }
19329         if(this.hiddenField){
19330             this.hiddenField.value = vv;
19331             
19332             this.lastSelectionText = dv;
19333             Roo.form.ComboBox.superclass.setValue.call(this, dv);
19334             this.value = vv;
19335             return;
19336         }
19337         // no hidden field.. - we store the value in 'value', but still display
19338         // display field!!!!
19339         this.lastSelectionText = dv;
19340         Roo.form.ComboBox.superclass.setValue.call(this, dv);
19341         this.value = vv;
19342         
19343         
19344     },
19345     // private
19346     reset : function(){
19347         // overridden so that last data is reset..
19348         this.setValue(this.resetValue);
19349         this.originalValue = this.getValue();
19350         this.clearInvalid();
19351         this.lastData = false;
19352         if (this.view) {
19353             this.view.clearSelections();
19354         }
19355     },
19356     // private
19357     findRecord : function(prop, value){
19358         var record;
19359         if(this.store.getCount() > 0){
19360             this.store.each(function(r){
19361                 if(r.data[prop] == value){
19362                     record = r;
19363                     return false;
19364                 }
19365                 return true;
19366             });
19367         }
19368         return record;
19369     },
19370     
19371     getName: function()
19372     {
19373         // returns hidden if it's set..
19374         if (!this.rendered) {return ''};
19375         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
19376         
19377     },
19378     // private
19379     onViewMove : function(e, t){
19380         this.inKeyMode = false;
19381     },
19382
19383     // private
19384     onViewOver : function(e, t){
19385         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
19386             return;
19387         }
19388         var item = this.view.findItemFromChild(t);
19389         if(item){
19390             var index = this.view.indexOf(item);
19391             this.select(index, false);
19392         }
19393     },
19394
19395     // private
19396     onViewClick : function(doFocus)
19397     {
19398         var index = this.view.getSelectedIndexes()[0];
19399         var r = this.store.getAt(index);
19400         if(r){
19401             this.onSelect(r, index);
19402         }
19403         if(doFocus !== false && !this.blockFocus){
19404             this.el.focus();
19405         }
19406     },
19407
19408     // private
19409     restrictHeight : function(){
19410         this.innerList.dom.style.height = '';
19411         var inner = this.innerList.dom;
19412         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
19413         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
19414         this.list.beginUpdate();
19415         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
19416         this.list.alignTo(this.el, this.listAlign);
19417         this.list.endUpdate();
19418     },
19419
19420     // private
19421     onEmptyResults : function(){
19422         this.collapse();
19423     },
19424
19425     /**
19426      * Returns true if the dropdown list is expanded, else false.
19427      */
19428     isExpanded : function(){
19429         return this.list.isVisible();
19430     },
19431
19432     /**
19433      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
19434      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19435      * @param {String} value The data value of the item to select
19436      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19437      * selected item if it is not currently in view (defaults to true)
19438      * @return {Boolean} True if the value matched an item in the list, else false
19439      */
19440     selectByValue : function(v, scrollIntoView){
19441         if(v !== undefined && v !== null){
19442             var r = this.findRecord(this.valueField || this.displayField, v);
19443             if(r){
19444                 this.select(this.store.indexOf(r), scrollIntoView);
19445                 return true;
19446             }
19447         }
19448         return false;
19449     },
19450
19451     /**
19452      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
19453      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19454      * @param {Number} index The zero-based index of the list item to select
19455      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19456      * selected item if it is not currently in view (defaults to true)
19457      */
19458     select : function(index, scrollIntoView){
19459         this.selectedIndex = index;
19460         this.view.select(index);
19461         if(scrollIntoView !== false){
19462             var el = this.view.getNode(index);
19463             if(el){
19464                 this.innerList.scrollChildIntoView(el, false);
19465             }
19466         }
19467     },
19468
19469     // private
19470     selectNext : function(){
19471         var ct = this.store.getCount();
19472         if(ct > 0){
19473             if(this.selectedIndex == -1){
19474                 this.select(0);
19475             }else if(this.selectedIndex < ct-1){
19476                 this.select(this.selectedIndex+1);
19477             }
19478         }
19479     },
19480
19481     // private
19482     selectPrev : function(){
19483         var ct = this.store.getCount();
19484         if(ct > 0){
19485             if(this.selectedIndex == -1){
19486                 this.select(0);
19487             }else if(this.selectedIndex != 0){
19488                 this.select(this.selectedIndex-1);
19489             }
19490         }
19491     },
19492
19493     // private
19494     onKeyUp : function(e){
19495         if(this.editable !== false && !e.isSpecialKey()){
19496             this.lastKey = e.getKey();
19497             this.dqTask.delay(this.queryDelay);
19498         }
19499     },
19500
19501     // private
19502     validateBlur : function(){
19503         return !this.list || !this.list.isVisible();   
19504     },
19505
19506     // private
19507     initQuery : function(){
19508         this.doQuery(this.getRawValue());
19509     },
19510
19511     // private
19512     doForce : function(){
19513         if(this.el.dom.value.length > 0){
19514             this.el.dom.value =
19515                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
19516              
19517         }
19518     },
19519
19520     /**
19521      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
19522      * query allowing the query action to be canceled if needed.
19523      * @param {String} query The SQL query to execute
19524      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
19525      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
19526      * saved in the current store (defaults to false)
19527      */
19528     doQuery : function(q, forceAll){
19529         if(q === undefined || q === null){
19530             q = '';
19531         }
19532         var qe = {
19533             query: q,
19534             forceAll: forceAll,
19535             combo: this,
19536             cancel:false
19537         };
19538         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
19539             return false;
19540         }
19541         q = qe.query;
19542         forceAll = qe.forceAll;
19543         if(forceAll === true || (q.length >= this.minChars)){
19544             if(this.lastQuery != q || this.alwaysQuery){
19545                 this.lastQuery = q;
19546                 if(this.mode == 'local'){
19547                     this.selectedIndex = -1;
19548                     if(forceAll){
19549                         this.store.clearFilter();
19550                     }else{
19551                         this.store.filter(this.displayField, q);
19552                     }
19553                     this.onLoad();
19554                 }else{
19555                     this.store.baseParams[this.queryParam] = q;
19556                     this.store.load({
19557                         params: this.getParams(q)
19558                     });
19559                     this.expand();
19560                 }
19561             }else{
19562                 this.selectedIndex = -1;
19563                 this.onLoad();   
19564             }
19565         }
19566     },
19567
19568     // private
19569     getParams : function(q){
19570         var p = {};
19571         //p[this.queryParam] = q;
19572         if(this.pageSize){
19573             p.start = 0;
19574             p.limit = this.pageSize;
19575         }
19576         return p;
19577     },
19578
19579     /**
19580      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
19581      */
19582     collapse : function(){
19583         if(!this.isExpanded()){
19584             return;
19585         }
19586         this.list.hide();
19587         Roo.get(document).un('mousedown', this.collapseIf, this);
19588         Roo.get(document).un('mousewheel', this.collapseIf, this);
19589         if (!this.editable) {
19590             Roo.get(document).un('keydown', this.listKeyPress, this);
19591         }
19592         this.fireEvent('collapse', this);
19593     },
19594
19595     // private
19596     collapseIf : function(e){
19597         if(!e.within(this.wrap) && !e.within(this.list)){
19598             this.collapse();
19599         }
19600     },
19601
19602     /**
19603      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
19604      */
19605     expand : function(){
19606         if(this.isExpanded() || !this.hasFocus){
19607             return;
19608         }
19609         this.list.alignTo(this.el, this.listAlign);
19610         this.list.show();
19611         Roo.get(document).on('mousedown', this.collapseIf, this);
19612         Roo.get(document).on('mousewheel', this.collapseIf, this);
19613         if (!this.editable) {
19614             Roo.get(document).on('keydown', this.listKeyPress, this);
19615         }
19616         
19617         this.fireEvent('expand', this);
19618     },
19619
19620     // private
19621     // Implements the default empty TriggerField.onTriggerClick function
19622     onTriggerClick : function(){
19623         if(this.disabled){
19624             return;
19625         }
19626         if(this.isExpanded()){
19627             this.collapse();
19628             if (!this.blockFocus) {
19629                 this.el.focus();
19630             }
19631             
19632         }else {
19633             this.hasFocus = true;
19634             if(this.triggerAction == 'all') {
19635                 this.doQuery(this.allQuery, true);
19636             } else {
19637                 this.doQuery(this.getRawValue());
19638             }
19639             if (!this.blockFocus) {
19640                 this.el.focus();
19641             }
19642         }
19643     },
19644     listKeyPress : function(e)
19645     {
19646         //Roo.log('listkeypress');
19647         // scroll to first matching element based on key pres..
19648         if (e.isSpecialKey()) {
19649             return false;
19650         }
19651         var k = String.fromCharCode(e.getKey()).toUpperCase();
19652         //Roo.log(k);
19653         var match  = false;
19654         var csel = this.view.getSelectedNodes();
19655         var cselitem = false;
19656         if (csel.length) {
19657             var ix = this.view.indexOf(csel[0]);
19658             cselitem  = this.store.getAt(ix);
19659             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19660                 cselitem = false;
19661             }
19662             
19663         }
19664         
19665         this.store.each(function(v) { 
19666             if (cselitem) {
19667                 // start at existing selection.
19668                 if (cselitem.id == v.id) {
19669                     cselitem = false;
19670                 }
19671                 return;
19672             }
19673                 
19674             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19675                 match = this.store.indexOf(v);
19676                 return false;
19677             }
19678         }, this);
19679         
19680         if (match === false) {
19681             return true; // no more action?
19682         }
19683         // scroll to?
19684         this.view.select(match);
19685         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19686         sn.scrollIntoView(sn.dom.parentNode, false);
19687     } 
19688
19689     /** 
19690     * @cfg {Boolean} grow 
19691     * @hide 
19692     */
19693     /** 
19694     * @cfg {Number} growMin 
19695     * @hide 
19696     */
19697     /** 
19698     * @cfg {Number} growMax 
19699     * @hide 
19700     */
19701     /**
19702      * @hide
19703      * @method autoSize
19704      */
19705 });/*
19706  * Copyright(c) 2010-2012, Roo J Solutions Limited
19707  *
19708  * Licence LGPL
19709  *
19710  */
19711
19712 /**
19713  * @class Roo.form.ComboBoxArray
19714  * @extends Roo.form.TextField
19715  * A facebook style adder... for lists of email / people / countries  etc...
19716  * pick multiple items from a combo box, and shows each one.
19717  *
19718  *  Fred [x]  Brian [x]  [Pick another |v]
19719  *
19720  *
19721  *  For this to work: it needs various extra information
19722  *    - normal combo problay has
19723  *      name, hiddenName
19724  *    + displayField, valueField
19725  *
19726  *    For our purpose...
19727  *
19728  *
19729  *   If we change from 'extends' to wrapping...
19730  *   
19731  *  
19732  *
19733  
19734  
19735  * @constructor
19736  * Create a new ComboBoxArray.
19737  * @param {Object} config Configuration options
19738  */
19739  
19740
19741 Roo.form.ComboBoxArray = function(config)
19742 {
19743     this.addEvents({
19744         /**
19745          * @event beforeremove
19746          * Fires before remove the value from the list
19747              * @param {Roo.form.ComboBoxArray} _self This combo box array
19748              * @param {Roo.form.ComboBoxArray.Item} item removed item
19749              */
19750         'beforeremove' : true,
19751         /**
19752          * @event remove
19753          * Fires when remove the value from the list
19754              * @param {Roo.form.ComboBoxArray} _self This combo box array
19755              * @param {Roo.form.ComboBoxArray.Item} item removed item
19756              */
19757         'remove' : true
19758         
19759         
19760     });
19761     
19762     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
19763     
19764     this.items = new Roo.util.MixedCollection(false);
19765     
19766     // construct the child combo...
19767     
19768     
19769     
19770     
19771    
19772     
19773 }
19774
19775  
19776 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
19777
19778     /**
19779      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
19780      */
19781     
19782     lastData : false,
19783     
19784     // behavies liek a hiddne field
19785     inputType:      'hidden',
19786     /**
19787      * @cfg {Number} width The width of the box that displays the selected element
19788      */ 
19789     width:          300,
19790
19791     
19792     
19793     /**
19794      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
19795      */
19796     name : false,
19797     /**
19798      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
19799      */
19800     hiddenName : false,
19801     
19802     
19803     // private the array of items that are displayed..
19804     items  : false,
19805     // private - the hidden field el.
19806     hiddenEl : false,
19807     // private - the filed el..
19808     el : false,
19809     
19810     //validateValue : function() { return true; }, // all values are ok!
19811     //onAddClick: function() { },
19812     
19813     onRender : function(ct, position) 
19814     {
19815         
19816         // create the standard hidden element
19817         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
19818         
19819         
19820         // give fake names to child combo;
19821         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
19822         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
19823         
19824         this.combo = Roo.factory(this.combo, Roo.form);
19825         this.combo.onRender(ct, position);
19826         if (typeof(this.combo.width) != 'undefined') {
19827             this.combo.onResize(this.combo.width,0);
19828         }
19829         
19830         this.combo.initEvents();
19831         
19832         // assigned so form know we need to do this..
19833         this.store          = this.combo.store;
19834         this.valueField     = this.combo.valueField;
19835         this.displayField   = this.combo.displayField ;
19836         
19837         
19838         this.combo.wrap.addClass('x-cbarray-grp');
19839         
19840         var cbwrap = this.combo.wrap.createChild(
19841             {tag: 'div', cls: 'x-cbarray-cb'},
19842             this.combo.el.dom
19843         );
19844         
19845              
19846         this.hiddenEl = this.combo.wrap.createChild({
19847             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
19848         });
19849         this.el = this.combo.wrap.createChild({
19850             tag: 'input',  type:'hidden' , name: this.name, value : ''
19851         });
19852          //   this.el.dom.removeAttribute("name");
19853         
19854         
19855         this.outerWrap = this.combo.wrap;
19856         this.wrap = cbwrap;
19857         
19858         this.outerWrap.setWidth(this.width);
19859         this.outerWrap.dom.removeChild(this.el.dom);
19860         
19861         this.wrap.dom.appendChild(this.el.dom);
19862         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
19863         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
19864         
19865         this.combo.trigger.setStyle('position','relative');
19866         this.combo.trigger.setStyle('left', '0px');
19867         this.combo.trigger.setStyle('top', '2px');
19868         
19869         this.combo.el.setStyle('vertical-align', 'text-bottom');
19870         
19871         //this.trigger.setStyle('vertical-align', 'top');
19872         
19873         // this should use the code from combo really... on('add' ....)
19874         if (this.adder) {
19875             
19876         
19877             this.adder = this.outerWrap.createChild(
19878                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
19879             var _t = this;
19880             this.adder.on('click', function(e) {
19881                 _t.fireEvent('adderclick', this, e);
19882             }, _t);
19883         }
19884         //var _t = this;
19885         //this.adder.on('click', this.onAddClick, _t);
19886         
19887         
19888         this.combo.on('select', function(cb, rec, ix) {
19889             this.addItem(rec.data);
19890             
19891             cb.setValue('');
19892             cb.el.dom.value = '';
19893             //cb.lastData = rec.data;
19894             // add to list
19895             
19896         }, this);
19897         
19898         
19899     },
19900     
19901     
19902     getName: function()
19903     {
19904         // returns hidden if it's set..
19905         if (!this.rendered) {return ''};
19906         return  this.hiddenName ? this.hiddenName : this.name;
19907         
19908     },
19909     
19910     
19911     onResize: function(w, h){
19912         
19913         return;
19914         // not sure if this is needed..
19915         //this.combo.onResize(w,h);
19916         
19917         if(typeof w != 'number'){
19918             // we do not handle it!?!?
19919             return;
19920         }
19921         var tw = this.combo.trigger.getWidth();
19922         tw += this.addicon ? this.addicon.getWidth() : 0;
19923         tw += this.editicon ? this.editicon.getWidth() : 0;
19924         var x = w - tw;
19925         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
19926             
19927         this.combo.trigger.setStyle('left', '0px');
19928         
19929         if(this.list && this.listWidth === undefined){
19930             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
19931             this.list.setWidth(lw);
19932             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19933         }
19934         
19935     
19936         
19937     },
19938     
19939     addItem: function(rec)
19940     {
19941         var valueField = this.combo.valueField;
19942         var displayField = this.combo.displayField;
19943         
19944         if (this.items.indexOfKey(rec[valueField]) > -1) {
19945             //console.log("GOT " + rec.data.id);
19946             return;
19947         }
19948         
19949         var x = new Roo.form.ComboBoxArray.Item({
19950             //id : rec[this.idField],
19951             data : rec,
19952             displayField : displayField ,
19953             tipField : displayField ,
19954             cb : this
19955         });
19956         // use the 
19957         this.items.add(rec[valueField],x);
19958         // add it before the element..
19959         this.updateHiddenEl();
19960         x.render(this.outerWrap, this.wrap.dom);
19961         // add the image handler..
19962     },
19963     
19964     updateHiddenEl : function()
19965     {
19966         this.validate();
19967         if (!this.hiddenEl) {
19968             return;
19969         }
19970         var ar = [];
19971         var idField = this.combo.valueField;
19972         
19973         this.items.each(function(f) {
19974             ar.push(f.data[idField]);
19975         });
19976         this.hiddenEl.dom.value = ar.join(',');
19977         this.validate();
19978     },
19979     
19980     reset : function()
19981     {
19982         this.items.clear();
19983         
19984         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
19985            el.remove();
19986         });
19987         
19988         this.el.dom.value = '';
19989         if (this.hiddenEl) {
19990             this.hiddenEl.dom.value = '';
19991         }
19992         
19993     },
19994     getValue: function()
19995     {
19996         return this.hiddenEl ? this.hiddenEl.dom.value : '';
19997     },
19998     setValue: function(v) // not a valid action - must use addItems..
19999     {
20000         
20001         this.reset();
20002          
20003         if (this.store.isLocal && (typeof(v) == 'string')) {
20004             // then we can use the store to find the values..
20005             // comma seperated at present.. this needs to allow JSON based encoding..
20006             this.hiddenEl.value  = v;
20007             var v_ar = [];
20008             Roo.each(v.split(','), function(k) {
20009                 Roo.log("CHECK " + this.valueField + ',' + k);
20010                 var li = this.store.query(this.valueField, k);
20011                 if (!li.length) {
20012                     return;
20013                 }
20014                 var add = {};
20015                 add[this.valueField] = k;
20016                 add[this.displayField] = li.item(0).data[this.displayField];
20017                 
20018                 this.addItem(add);
20019             }, this) 
20020              
20021         }
20022         if (typeof(v) == 'object' ) {
20023             // then let's assume it's an array of objects..
20024             Roo.each(v, function(l) {
20025                 this.addItem(l);
20026             }, this);
20027              
20028         }
20029         
20030         
20031     },
20032     setFromData: function(v)
20033     {
20034         // this recieves an object, if setValues is called.
20035         this.reset();
20036         this.el.dom.value = v[this.displayField];
20037         this.hiddenEl.dom.value = v[this.valueField];
20038         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
20039             return;
20040         }
20041         var kv = v[this.valueField];
20042         var dv = v[this.displayField];
20043         kv = typeof(kv) != 'string' ? '' : kv;
20044         dv = typeof(dv) != 'string' ? '' : dv;
20045         
20046         
20047         var keys = kv.split(',');
20048         var display = dv.split(',');
20049         for (var i = 0 ; i < keys.length; i++) {
20050             
20051             add = {};
20052             add[this.valueField] = keys[i];
20053             add[this.displayField] = display[i];
20054             this.addItem(add);
20055         }
20056       
20057         
20058     },
20059     
20060     /**
20061      * Validates the combox array value
20062      * @return {Boolean} True if the value is valid, else false
20063      */
20064     validate : function(){
20065         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
20066             this.clearInvalid();
20067             return true;
20068         }
20069         return false;
20070     },
20071     
20072     validateValue : function(value){
20073         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
20074         
20075     },
20076     
20077     /*@
20078      * overide
20079      * 
20080      */
20081     isDirty : function() {
20082         if(this.disabled) {
20083             return false;
20084         }
20085         
20086         try {
20087             var d = Roo.decode(String(this.originalValue));
20088         } catch (e) {
20089             return String(this.getValue()) !== String(this.originalValue);
20090         }
20091         
20092         var originalValue = [];
20093         
20094         for (var i = 0; i < d.length; i++){
20095             originalValue.push(d[i][this.valueField]);
20096         }
20097         
20098         return String(this.getValue()) !== String(originalValue.join(','));
20099         
20100     }
20101     
20102 });
20103
20104
20105
20106 /**
20107  * @class Roo.form.ComboBoxArray.Item
20108  * @extends Roo.BoxComponent
20109  * A selected item in the list
20110  *  Fred [x]  Brian [x]  [Pick another |v]
20111  * 
20112  * @constructor
20113  * Create a new item.
20114  * @param {Object} config Configuration options
20115  */
20116  
20117 Roo.form.ComboBoxArray.Item = function(config) {
20118     config.id = Roo.id();
20119     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
20120 }
20121
20122 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
20123     data : {},
20124     cb: false,
20125     displayField : false,
20126     tipField : false,
20127     
20128     
20129     defaultAutoCreate : {
20130         tag: 'div',
20131         cls: 'x-cbarray-item',
20132         cn : [ 
20133             { tag: 'div' },
20134             {
20135                 tag: 'img',
20136                 width:16,
20137                 height : 16,
20138                 src : Roo.BLANK_IMAGE_URL ,
20139                 align: 'center'
20140             }
20141         ]
20142         
20143     },
20144     
20145  
20146     onRender : function(ct, position)
20147     {
20148         Roo.form.Field.superclass.onRender.call(this, ct, position);
20149         
20150         if(!this.el){
20151             var cfg = this.getAutoCreate();
20152             this.el = ct.createChild(cfg, position);
20153         }
20154         
20155         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
20156         
20157         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
20158             this.cb.renderer(this.data) :
20159             String.format('{0}',this.data[this.displayField]);
20160         
20161             
20162         this.el.child('div').dom.setAttribute('qtip',
20163                         String.format('{0}',this.data[this.tipField])
20164         );
20165         
20166         this.el.child('img').on('click', this.remove, this);
20167         
20168     },
20169    
20170     remove : function()
20171     {
20172         if(this.cb.disabled){
20173             return;
20174         }
20175         
20176         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
20177             this.cb.items.remove(this);
20178             this.el.child('img').un('click', this.remove, this);
20179             this.el.remove();
20180             this.cb.updateHiddenEl();
20181
20182             this.cb.fireEvent('remove', this.cb, this);
20183         }
20184         
20185     }
20186 });/*
20187  * RooJS Library 1.1.1
20188  * Copyright(c) 2008-2011  Alan Knowles
20189  *
20190  * License - LGPL
20191  */
20192  
20193
20194 /**
20195  * @class Roo.form.ComboNested
20196  * @extends Roo.form.ComboBox
20197  * A combobox for that allows selection of nested items in a list,
20198  * eg.
20199  *
20200  *  Book
20201  *    -> red
20202  *    -> green
20203  *  Table
20204  *    -> square
20205  *      ->red
20206  *      ->green
20207  *    -> rectangle
20208  *      ->green
20209  *      
20210  * 
20211  * @constructor
20212  * Create a new ComboNested
20213  * @param {Object} config Configuration options
20214  */
20215 Roo.form.ComboNested = function(config){
20216     Roo.form.ComboCheck.superclass.constructor.call(this, config);
20217     // should verify some data...
20218     // like
20219     // hiddenName = required..
20220     // displayField = required
20221     // valudField == required
20222     var req= [ 'hiddenName', 'displayField', 'valueField' ];
20223     var _t = this;
20224     Roo.each(req, function(e) {
20225         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
20226             throw "Roo.form.ComboNested : missing value for: " + e;
20227         }
20228     });
20229      
20230     
20231 };
20232
20233 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
20234    
20235    
20236     list : null, // the outermost div..
20237     innerLists : null, // the
20238     views : null,
20239     stores : null,
20240     // private
20241     onRender : function(ct, position)
20242     {
20243         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
20244         
20245         if(this.hiddenName){
20246             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
20247                     'before', true);
20248             this.hiddenField.value =
20249                 this.hiddenValue !== undefined ? this.hiddenValue :
20250                 this.value !== undefined ? this.value : '';
20251
20252             // prevent input submission
20253             this.el.dom.removeAttribute('name');
20254              
20255              
20256         }
20257         
20258         if(Roo.isGecko){
20259             this.el.dom.setAttribute('autocomplete', 'off');
20260         }
20261
20262         var cls = 'x-combo-list';
20263
20264         this.list = new Roo.Layer({
20265             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
20266         });
20267
20268         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
20269         this.list.setWidth(lw);
20270         this.list.swallowEvent('mousewheel');
20271         this.assetHeight = 0;
20272
20273         if(this.title){
20274             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
20275             this.assetHeight += this.header.getHeight();
20276         }
20277         this.innerLists = [];
20278         this.views = [];
20279         this.stores = [];
20280         for (var i =0 ; i < 3; i++) {
20281             this.onRenderList( cls, i);
20282         }
20283         
20284         // always needs footer, as we are going to have an 'OK' button.
20285         this.footer = this.list.createChild({cls:cls+'-ft'});
20286         this.pageTb = new Roo.Toolbar(this.footer);  
20287         var _this = this;
20288         this.pageTb.add(  {
20289             
20290             text: 'Done',
20291             handler: function()
20292             {
20293                 _this.collapse();
20294             }
20295         });
20296         
20297         if ( this.allowBlank && !this.disableClear) {
20298             
20299             this.pageTb.add(new Roo.Toolbar.Fill(), {
20300                 cls: 'x-btn-icon x-btn-clear',
20301                 text: '&#160;',
20302                 handler: function()
20303                 {
20304                     _this.collapse();
20305                     _this.clearValue();
20306                     _this.onSelect(false, -1);
20307                 }
20308             });
20309         }
20310         if (this.footer) {
20311             this.assetHeight += this.footer.getHeight();
20312         }
20313         
20314     },
20315     onRenderList : function (  cls, i)
20316     {
20317         
20318         var lw = Math.floor(
20319                 ((this.listWidth * 3 || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / 3
20320         );
20321         
20322         this.list.setWidth(lw); // default to '1'
20323
20324         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
20325         //il.on('mouseover', this.onViewOver, this, { list:  i });
20326         //il.on('mousemove', this.onViewMove, this, { list:  i });
20327         il.setWidth(lw);
20328         il.setStyle({ 'overflow-x' : 'hidden'});
20329
20330         if(!this.tpl){
20331             this.tpl = new Roo.Template({
20332                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
20333                 isEmpty: function (value, allValues) {
20334                     return value && value.length ? 'has-children' : 'no-children'
20335                 }
20336             });
20337         }
20338         
20339         var store  = this.store;
20340         if (i > 0) {
20341             store  = new Roo.data.SimpleStore({
20342                 fields : this.store.reader.meta.fields,
20343                 data : [ ]
20344             });
20345         }
20346         this.stores[i]  = store;
20347                 
20348         
20349         
20350         var view = this.views[i] = new Roo.View(
20351             il,
20352             this.tpl,
20353             {
20354                 singleSelect:true,
20355                 store: store,
20356                 selectedClass: this.selectedClass
20357             }
20358         );
20359         view.getEl().setWidth(lw);
20360         view.getEl().setStyle({
20361             position: i < 1 ? 'relative' : 'absolute',
20362             top: 0,
20363             left: (i * lw ) + 'px',
20364             display : i > 0 ? 'none' : 'block'
20365         });
20366         view.on('selectionchange', this.onSelectChange, this, {list : i });
20367         view.on('dblclick', this.onDoubleClick, this, {list : i });
20368         //view.on('click', this.onViewClick, this, { list : i });
20369
20370         store.on('beforeload', this.onBeforeLoad, this);
20371         store.on('load',  this.onLoad, this, { list  : i});
20372         store.on('loadexception', this.onLoadException, this);
20373
20374         // hide the other vies..
20375         
20376         
20377         
20378     },
20379     onResize : function()  {},
20380     
20381     restrictHeight : function()
20382     {
20383         var mh = 0;
20384         Roo.each(this.innerLists, function(il,i) {
20385             var el = this.views[i].getEl();
20386             el.dom.style.height = '';
20387             var inner = el.dom;
20388             var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
20389             // only adjust heights on other ones..
20390             if (i < 1) {
20391                 
20392                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20393                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20394                 mh = Math.max(el.getHeight(), mh);
20395             }
20396             
20397             
20398         }, this);
20399         
20400         this.list.beginUpdate();
20401         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
20402         this.list.alignTo(this.el, this.listAlign);
20403         this.list.endUpdate();
20404         
20405     },
20406      
20407     
20408     // -- store handlers..
20409     // private
20410     onBeforeLoad : function()
20411     {
20412         if(!this.hasFocus){
20413             return;
20414         }
20415         this.innerLists[0].update(this.loadingText ?
20416                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
20417         this.restrictHeight();
20418         this.selectedIndex = -1;
20419     },
20420     // private
20421     onLoad : function(a,b,c,d)
20422     {
20423         
20424         if(!this.hasFocus){
20425             return;
20426         }
20427         
20428         if(this.store.getCount() > 0) {
20429             this.expand();
20430             this.restrictHeight();   
20431         } else {
20432             this.onEmptyResults();
20433         }
20434         /*
20435         this.stores[1].loadData([]);
20436         this.stores[2].loadData([]);
20437         this.views
20438         */    
20439     
20440         //this.el.focus();
20441     },
20442     
20443     
20444     // private
20445     onLoadException : function()
20446     {
20447         this.collapse();
20448         Roo.log(this.store.reader.jsonData);
20449         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
20450             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
20451         }
20452         
20453         
20454     } ,
20455      
20456      
20457
20458     onSelectChange : function (view, sels, opts )
20459     {
20460         var ix = view.getSelectedIndexes();
20461         
20462         
20463         if (opts.list > 1) {
20464              
20465             this.setFromData(ix.length ? view.store.getAt(ix[0]).data : {});
20466             return;
20467         }
20468         
20469         if (!ix.length) {
20470             this.setFromData({});
20471             this.stores[opts.list+1].loadData( [] );
20472             return;
20473         }
20474         
20475         var rec = view.store.getAt(ix[0]);
20476         this.setFromData(rec.data);
20477         
20478         var lw = Math.floor(
20479                 ((this.listWidth * 3 || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / 3
20480         );
20481         var data =  typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
20482         this.stores[opts.list+1].loadData( data );
20483         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
20484         this.views[opts.list+1].getEl().setStyle({ display : data .length ? 'block' : 'none' });
20485         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
20486         this.list.setWidth(lw * (opts.list + (data.length ? 2 : 1))); 
20487     },
20488     onDoubleClick : function()
20489     {
20490         this.collapse(); //??
20491     },
20492     
20493      
20494     
20495     findRecord : function (prop,value)
20496     {
20497         return this.findRecordInStore(this.store, prop,value);
20498     },
20499     
20500      // private
20501     findRecordInStore : function(store, prop, value)
20502     {
20503         var cstore = new Roo.data.SimpleStore({
20504             fields : this.store.reader.meta.fields, // we need array reader.. for 
20505             data : [ ]
20506         });
20507         var _this = this;
20508         var record  = false;
20509         if(store.getCount() > 0){
20510            store.each(function(r){
20511                 if(r.data[prop] == value){
20512                     record = r;
20513                     return false;
20514                 }
20515                 if (r.data.cn && r.data.cn.length) {
20516                     cstore.loadData( r.data.cn);
20517                     var cret = _this.findRecordInStore(cstore, prop, value);
20518                     if (cret !== false) {
20519                         record = cret;
20520                         return false;
20521                     }
20522                 }
20523                 
20524                 return true;
20525             });
20526         }
20527         return record;
20528     }
20529     
20530     
20531     
20532     
20533 });/*
20534  * Based on:
20535  * Ext JS Library 1.1.1
20536  * Copyright(c) 2006-2007, Ext JS, LLC.
20537  *
20538  * Originally Released Under LGPL - original licence link has changed is not relivant.
20539  *
20540  * Fork - LGPL
20541  * <script type="text/javascript">
20542  */
20543 /**
20544  * @class Roo.form.Checkbox
20545  * @extends Roo.form.Field
20546  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
20547  * @constructor
20548  * Creates a new Checkbox
20549  * @param {Object} config Configuration options
20550  */
20551 Roo.form.Checkbox = function(config){
20552     Roo.form.Checkbox.superclass.constructor.call(this, config);
20553     this.addEvents({
20554         /**
20555          * @event check
20556          * Fires when the checkbox is checked or unchecked.
20557              * @param {Roo.form.Checkbox} this This checkbox
20558              * @param {Boolean} checked The new checked value
20559              */
20560         check : true
20561     });
20562 };
20563
20564 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
20565     /**
20566      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20567      */
20568     focusClass : undefined,
20569     /**
20570      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
20571      */
20572     fieldClass: "x-form-field",
20573     /**
20574      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
20575      */
20576     checked: false,
20577     /**
20578      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20579      * {tag: "input", type: "checkbox", autocomplete: "off"})
20580      */
20581     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
20582     /**
20583      * @cfg {String} boxLabel The text that appears beside the checkbox
20584      */
20585     boxLabel : "",
20586     /**
20587      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
20588      */  
20589     inputValue : '1',
20590     /**
20591      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20592      */
20593      valueOff: '0', // value when not checked..
20594
20595     actionMode : 'viewEl', 
20596     //
20597     // private
20598     itemCls : 'x-menu-check-item x-form-item',
20599     groupClass : 'x-menu-group-item',
20600     inputType : 'hidden',
20601     
20602     
20603     inSetChecked: false, // check that we are not calling self...
20604     
20605     inputElement: false, // real input element?
20606     basedOn: false, // ????
20607     
20608     isFormField: true, // not sure where this is needed!!!!
20609
20610     onResize : function(){
20611         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
20612         if(!this.boxLabel){
20613             this.el.alignTo(this.wrap, 'c-c');
20614         }
20615     },
20616
20617     initEvents : function(){
20618         Roo.form.Checkbox.superclass.initEvents.call(this);
20619         this.el.on("click", this.onClick,  this);
20620         this.el.on("change", this.onClick,  this);
20621     },
20622
20623
20624     getResizeEl : function(){
20625         return this.wrap;
20626     },
20627
20628     getPositionEl : function(){
20629         return this.wrap;
20630     },
20631
20632     // private
20633     onRender : function(ct, position){
20634         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20635         /*
20636         if(this.inputValue !== undefined){
20637             this.el.dom.value = this.inputValue;
20638         }
20639         */
20640         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20641         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20642         var viewEl = this.wrap.createChild({ 
20643             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20644         this.viewEl = viewEl;   
20645         this.wrap.on('click', this.onClick,  this); 
20646         
20647         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20648         this.el.on('propertychange', this.setFromHidden,  this);  //ie
20649         
20650         
20651         
20652         if(this.boxLabel){
20653             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20654         //    viewEl.on('click', this.onClick,  this); 
20655         }
20656         //if(this.checked){
20657             this.setChecked(this.checked);
20658         //}else{
20659             //this.checked = this.el.dom;
20660         //}
20661
20662     },
20663
20664     // private
20665     initValue : Roo.emptyFn,
20666
20667     /**
20668      * Returns the checked state of the checkbox.
20669      * @return {Boolean} True if checked, else false
20670      */
20671     getValue : function(){
20672         if(this.el){
20673             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
20674         }
20675         return this.valueOff;
20676         
20677     },
20678
20679         // private
20680     onClick : function(){ 
20681         if (this.disabled) {
20682             return;
20683         }
20684         this.setChecked(!this.checked);
20685
20686         //if(this.el.dom.checked != this.checked){
20687         //    this.setValue(this.el.dom.checked);
20688        // }
20689     },
20690
20691     /**
20692      * Sets the checked state of the checkbox.
20693      * On is always based on a string comparison between inputValue and the param.
20694      * @param {Boolean/String} value - the value to set 
20695      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20696      */
20697     setValue : function(v,suppressEvent){
20698         
20699         
20700         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20701         //if(this.el && this.el.dom){
20702         //    this.el.dom.checked = this.checked;
20703         //    this.el.dom.defaultChecked = this.checked;
20704         //}
20705         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20706         //this.fireEvent("check", this, this.checked);
20707     },
20708     // private..
20709     setChecked : function(state,suppressEvent)
20710     {
20711         if (this.inSetChecked) {
20712             this.checked = state;
20713             return;
20714         }
20715         
20716     
20717         if(this.wrap){
20718             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20719         }
20720         this.checked = state;
20721         if(suppressEvent !== true){
20722             this.fireEvent('check', this, state);
20723         }
20724         this.inSetChecked = true;
20725         this.el.dom.value = state ? this.inputValue : this.valueOff;
20726         this.inSetChecked = false;
20727         
20728     },
20729     // handle setting of hidden value by some other method!!?!?
20730     setFromHidden: function()
20731     {
20732         if(!this.el){
20733             return;
20734         }
20735         //console.log("SET FROM HIDDEN");
20736         //alert('setFrom hidden');
20737         this.setValue(this.el.dom.value);
20738     },
20739     
20740     onDestroy : function()
20741     {
20742         if(this.viewEl){
20743             Roo.get(this.viewEl).remove();
20744         }
20745          
20746         Roo.form.Checkbox.superclass.onDestroy.call(this);
20747     },
20748     
20749     setBoxLabel : function(str)
20750     {
20751         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
20752     }
20753
20754 });/*
20755  * Based on:
20756  * Ext JS Library 1.1.1
20757  * Copyright(c) 2006-2007, Ext JS, LLC.
20758  *
20759  * Originally Released Under LGPL - original licence link has changed is not relivant.
20760  *
20761  * Fork - LGPL
20762  * <script type="text/javascript">
20763  */
20764  
20765 /**
20766  * @class Roo.form.Radio
20767  * @extends Roo.form.Checkbox
20768  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
20769  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
20770  * @constructor
20771  * Creates a new Radio
20772  * @param {Object} config Configuration options
20773  */
20774 Roo.form.Radio = function(){
20775     Roo.form.Radio.superclass.constructor.apply(this, arguments);
20776 };
20777 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
20778     inputType: 'radio',
20779
20780     /**
20781      * If this radio is part of a group, it will return the selected value
20782      * @return {String}
20783      */
20784     getGroupValue : function(){
20785         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
20786     },
20787     
20788     
20789     onRender : function(ct, position){
20790         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20791         
20792         if(this.inputValue !== undefined){
20793             this.el.dom.value = this.inputValue;
20794         }
20795          
20796         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20797         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20798         //var viewEl = this.wrap.createChild({ 
20799         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20800         //this.viewEl = viewEl;   
20801         //this.wrap.on('click', this.onClick,  this); 
20802         
20803         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20804         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
20805         
20806         
20807         
20808         if(this.boxLabel){
20809             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20810         //    viewEl.on('click', this.onClick,  this); 
20811         }
20812          if(this.checked){
20813             this.el.dom.checked =   'checked' ;
20814         }
20815          
20816     } 
20817     
20818     
20819 });//<script type="text/javascript">
20820
20821 /*
20822  * Based  Ext JS Library 1.1.1
20823  * Copyright(c) 2006-2007, Ext JS, LLC.
20824  * LGPL
20825  *
20826  */
20827  
20828 /**
20829  * @class Roo.HtmlEditorCore
20830  * @extends Roo.Component
20831  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
20832  *
20833  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
20834  */
20835
20836 Roo.HtmlEditorCore = function(config){
20837     
20838     
20839     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
20840     
20841     
20842     this.addEvents({
20843         /**
20844          * @event initialize
20845          * Fires when the editor is fully initialized (including the iframe)
20846          * @param {Roo.HtmlEditorCore} this
20847          */
20848         initialize: true,
20849         /**
20850          * @event activate
20851          * Fires when the editor is first receives the focus. Any insertion must wait
20852          * until after this event.
20853          * @param {Roo.HtmlEditorCore} this
20854          */
20855         activate: true,
20856          /**
20857          * @event beforesync
20858          * Fires before the textarea is updated with content from the editor iframe. Return false
20859          * to cancel the sync.
20860          * @param {Roo.HtmlEditorCore} this
20861          * @param {String} html
20862          */
20863         beforesync: true,
20864          /**
20865          * @event beforepush
20866          * Fires before the iframe editor is updated with content from the textarea. Return false
20867          * to cancel the push.
20868          * @param {Roo.HtmlEditorCore} this
20869          * @param {String} html
20870          */
20871         beforepush: true,
20872          /**
20873          * @event sync
20874          * Fires when the textarea is updated with content from the editor iframe.
20875          * @param {Roo.HtmlEditorCore} this
20876          * @param {String} html
20877          */
20878         sync: true,
20879          /**
20880          * @event push
20881          * Fires when the iframe editor is updated with content from the textarea.
20882          * @param {Roo.HtmlEditorCore} this
20883          * @param {String} html
20884          */
20885         push: true,
20886         
20887         /**
20888          * @event editorevent
20889          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
20890          * @param {Roo.HtmlEditorCore} this
20891          */
20892         editorevent: true
20893         
20894     });
20895     
20896     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
20897     
20898     // defaults : white / black...
20899     this.applyBlacklists();
20900     
20901     
20902     
20903 };
20904
20905
20906 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
20907
20908
20909      /**
20910      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
20911      */
20912     
20913     owner : false,
20914     
20915      /**
20916      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
20917      *                        Roo.resizable.
20918      */
20919     resizable : false,
20920      /**
20921      * @cfg {Number} height (in pixels)
20922      */   
20923     height: 300,
20924    /**
20925      * @cfg {Number} width (in pixels)
20926      */   
20927     width: 500,
20928     
20929     /**
20930      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
20931      * 
20932      */
20933     stylesheets: false,
20934     
20935     // id of frame..
20936     frameId: false,
20937     
20938     // private properties
20939     validationEvent : false,
20940     deferHeight: true,
20941     initialized : false,
20942     activated : false,
20943     sourceEditMode : false,
20944     onFocus : Roo.emptyFn,
20945     iframePad:3,
20946     hideMode:'offsets',
20947     
20948     clearUp: true,
20949     
20950     // blacklist + whitelisted elements..
20951     black: false,
20952     white: false,
20953      
20954     bodyCls : '',
20955
20956     /**
20957      * Protected method that will not generally be called directly. It
20958      * is called when the editor initializes the iframe with HTML contents. Override this method if you
20959      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
20960      */
20961     getDocMarkup : function(){
20962         // body styles..
20963         var st = '';
20964         
20965         // inherit styels from page...?? 
20966         if (this.stylesheets === false) {
20967             
20968             Roo.get(document.head).select('style').each(function(node) {
20969                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
20970             });
20971             
20972             Roo.get(document.head).select('link').each(function(node) { 
20973                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
20974             });
20975             
20976         } else if (!this.stylesheets.length) {
20977                 // simple..
20978                 st = '<style type="text/css">' +
20979                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
20980                    '</style>';
20981         } else { 
20982             st = '<style type="text/css">' +
20983                     this.stylesheets +
20984                 '</style>';
20985         }
20986         
20987         st +=  '<style type="text/css">' +
20988             'IMG { cursor: pointer } ' +
20989         '</style>';
20990
20991         var cls = 'roo-htmleditor-body';
20992         
20993         if(this.bodyCls.length){
20994             cls += ' ' + this.bodyCls;
20995         }
20996         
20997         return '<html><head>' + st  +
20998             //<style type="text/css">' +
20999             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
21000             //'</style>' +
21001             ' </head><body class="' +  cls + '"></body></html>';
21002     },
21003
21004     // private
21005     onRender : function(ct, position)
21006     {
21007         var _t = this;
21008         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
21009         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
21010         
21011         
21012         this.el.dom.style.border = '0 none';
21013         this.el.dom.setAttribute('tabIndex', -1);
21014         this.el.addClass('x-hidden hide');
21015         
21016         
21017         
21018         if(Roo.isIE){ // fix IE 1px bogus margin
21019             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
21020         }
21021        
21022         
21023         this.frameId = Roo.id();
21024         
21025          
21026         
21027         var iframe = this.owner.wrap.createChild({
21028             tag: 'iframe',
21029             cls: 'form-control', // bootstrap..
21030             id: this.frameId,
21031             name: this.frameId,
21032             frameBorder : 'no',
21033             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
21034         }, this.el
21035         );
21036         
21037         
21038         this.iframe = iframe.dom;
21039
21040          this.assignDocWin();
21041         
21042         this.doc.designMode = 'on';
21043        
21044         this.doc.open();
21045         this.doc.write(this.getDocMarkup());
21046         this.doc.close();
21047
21048         
21049         var task = { // must defer to wait for browser to be ready
21050             run : function(){
21051                 //console.log("run task?" + this.doc.readyState);
21052                 this.assignDocWin();
21053                 if(this.doc.body || this.doc.readyState == 'complete'){
21054                     try {
21055                         this.doc.designMode="on";
21056                     } catch (e) {
21057                         return;
21058                     }
21059                     Roo.TaskMgr.stop(task);
21060                     this.initEditor.defer(10, this);
21061                 }
21062             },
21063             interval : 10,
21064             duration: 10000,
21065             scope: this
21066         };
21067         Roo.TaskMgr.start(task);
21068
21069     },
21070
21071     // private
21072     onResize : function(w, h)
21073     {
21074          Roo.log('resize: ' +w + ',' + h );
21075         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
21076         if(!this.iframe){
21077             return;
21078         }
21079         if(typeof w == 'number'){
21080             
21081             this.iframe.style.width = w + 'px';
21082         }
21083         if(typeof h == 'number'){
21084             
21085             this.iframe.style.height = h + 'px';
21086             if(this.doc){
21087                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
21088             }
21089         }
21090         
21091     },
21092
21093     /**
21094      * Toggles the editor between standard and source edit mode.
21095      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
21096      */
21097     toggleSourceEdit : function(sourceEditMode){
21098         
21099         this.sourceEditMode = sourceEditMode === true;
21100         
21101         if(this.sourceEditMode){
21102  
21103             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
21104             
21105         }else{
21106             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
21107             //this.iframe.className = '';
21108             this.deferFocus();
21109         }
21110         //this.setSize(this.owner.wrap.getSize());
21111         //this.fireEvent('editmodechange', this, this.sourceEditMode);
21112     },
21113
21114     
21115   
21116
21117     /**
21118      * Protected method that will not generally be called directly. If you need/want
21119      * custom HTML cleanup, this is the method you should override.
21120      * @param {String} html The HTML to be cleaned
21121      * return {String} The cleaned HTML
21122      */
21123     cleanHtml : function(html){
21124         html = String(html);
21125         if(html.length > 5){
21126             if(Roo.isSafari){ // strip safari nonsense
21127                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
21128             }
21129         }
21130         if(html == '&nbsp;'){
21131             html = '';
21132         }
21133         return html;
21134     },
21135
21136     /**
21137      * HTML Editor -> Textarea
21138      * Protected method that will not generally be called directly. Syncs the contents
21139      * of the editor iframe with the textarea.
21140      */
21141     syncValue : function(){
21142         if(this.initialized){
21143             var bd = (this.doc.body || this.doc.documentElement);
21144             //this.cleanUpPaste(); -- this is done else where and causes havoc..
21145             var html = bd.innerHTML;
21146             if(Roo.isSafari){
21147                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
21148                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
21149                 if(m && m[1]){
21150                     html = '<div style="'+m[0]+'">' + html + '</div>';
21151                 }
21152             }
21153             html = this.cleanHtml(html);
21154             // fix up the special chars.. normaly like back quotes in word...
21155             // however we do not want to do this with chinese..
21156             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
21157                 
21158                 var cc = match.charCodeAt();
21159
21160                 // Get the character value, handling surrogate pairs
21161                 if (match.length == 2) {
21162                     // It's a surrogate pair, calculate the Unicode code point
21163                     var high = match.charCodeAt(0) - 0xD800;
21164                     var low  = match.charCodeAt(1) - 0xDC00;
21165                     cc = (high * 0x400) + low + 0x10000;
21166                 }  else if (
21167                     (cc >= 0x4E00 && cc < 0xA000 ) ||
21168                     (cc >= 0x3400 && cc < 0x4E00 ) ||
21169                     (cc >= 0xf900 && cc < 0xfb00 )
21170                 ) {
21171                         return match;
21172                 }  
21173          
21174                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
21175                 return "&#" + cc + ";";
21176                 
21177                 
21178             });
21179             
21180             
21181              
21182             if(this.owner.fireEvent('beforesync', this, html) !== false){
21183                 this.el.dom.value = html;
21184                 this.owner.fireEvent('sync', this, html);
21185             }
21186         }
21187     },
21188
21189     /**
21190      * Protected method that will not generally be called directly. Pushes the value of the textarea
21191      * into the iframe editor.
21192      */
21193     pushValue : function(){
21194         if(this.initialized){
21195             var v = this.el.dom.value.trim();
21196             
21197 //            if(v.length < 1){
21198 //                v = '&#160;';
21199 //            }
21200             
21201             if(this.owner.fireEvent('beforepush', this, v) !== false){
21202                 var d = (this.doc.body || this.doc.documentElement);
21203                 d.innerHTML = v;
21204                 this.cleanUpPaste();
21205                 this.el.dom.value = d.innerHTML;
21206                 this.owner.fireEvent('push', this, v);
21207             }
21208         }
21209     },
21210
21211     // private
21212     deferFocus : function(){
21213         this.focus.defer(10, this);
21214     },
21215
21216     // doc'ed in Field
21217     focus : function(){
21218         if(this.win && !this.sourceEditMode){
21219             this.win.focus();
21220         }else{
21221             this.el.focus();
21222         }
21223     },
21224     
21225     assignDocWin: function()
21226     {
21227         var iframe = this.iframe;
21228         
21229          if(Roo.isIE){
21230             this.doc = iframe.contentWindow.document;
21231             this.win = iframe.contentWindow;
21232         } else {
21233 //            if (!Roo.get(this.frameId)) {
21234 //                return;
21235 //            }
21236 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
21237 //            this.win = Roo.get(this.frameId).dom.contentWindow;
21238             
21239             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
21240                 return;
21241             }
21242             
21243             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
21244             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
21245         }
21246     },
21247     
21248     // private
21249     initEditor : function(){
21250         //console.log("INIT EDITOR");
21251         this.assignDocWin();
21252         
21253         
21254         
21255         this.doc.designMode="on";
21256         this.doc.open();
21257         this.doc.write(this.getDocMarkup());
21258         this.doc.close();
21259         
21260         var dbody = (this.doc.body || this.doc.documentElement);
21261         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
21262         // this copies styles from the containing element into thsi one..
21263         // not sure why we need all of this..
21264         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
21265         
21266         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
21267         //ss['background-attachment'] = 'fixed'; // w3c
21268         dbody.bgProperties = 'fixed'; // ie
21269         //Roo.DomHelper.applyStyles(dbody, ss);
21270         Roo.EventManager.on(this.doc, {
21271             //'mousedown': this.onEditorEvent,
21272             'mouseup': this.onEditorEvent,
21273             'dblclick': this.onEditorEvent,
21274             'click': this.onEditorEvent,
21275             'keyup': this.onEditorEvent,
21276             buffer:100,
21277             scope: this
21278         });
21279         if(Roo.isGecko){
21280             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
21281         }
21282         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
21283             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
21284         }
21285         this.initialized = true;
21286
21287         this.owner.fireEvent('initialize', this);
21288         this.pushValue();
21289     },
21290
21291     // private
21292     onDestroy : function(){
21293         
21294         
21295         
21296         if(this.rendered){
21297             
21298             //for (var i =0; i < this.toolbars.length;i++) {
21299             //    // fixme - ask toolbars for heights?
21300             //    this.toolbars[i].onDestroy();
21301            // }
21302             
21303             //this.wrap.dom.innerHTML = '';
21304             //this.wrap.remove();
21305         }
21306     },
21307
21308     // private
21309     onFirstFocus : function(){
21310         
21311         this.assignDocWin();
21312         
21313         
21314         this.activated = true;
21315          
21316     
21317         if(Roo.isGecko){ // prevent silly gecko errors
21318             this.win.focus();
21319             var s = this.win.getSelection();
21320             if(!s.focusNode || s.focusNode.nodeType != 3){
21321                 var r = s.getRangeAt(0);
21322                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
21323                 r.collapse(true);
21324                 this.deferFocus();
21325             }
21326             try{
21327                 this.execCmd('useCSS', true);
21328                 this.execCmd('styleWithCSS', false);
21329             }catch(e){}
21330         }
21331         this.owner.fireEvent('activate', this);
21332     },
21333
21334     // private
21335     adjustFont: function(btn){
21336         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
21337         //if(Roo.isSafari){ // safari
21338         //    adjust *= 2;
21339        // }
21340         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
21341         if(Roo.isSafari){ // safari
21342             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
21343             v =  (v < 10) ? 10 : v;
21344             v =  (v > 48) ? 48 : v;
21345             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
21346             
21347         }
21348         
21349         
21350         v = Math.max(1, v+adjust);
21351         
21352         this.execCmd('FontSize', v  );
21353     },
21354
21355     onEditorEvent : function(e)
21356     {
21357         this.owner.fireEvent('editorevent', this, e);
21358       //  this.updateToolbar();
21359         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
21360     },
21361
21362     insertTag : function(tg)
21363     {
21364         // could be a bit smarter... -> wrap the current selected tRoo..
21365         if (tg.toLowerCase() == 'span' ||
21366             tg.toLowerCase() == 'code' ||
21367             tg.toLowerCase() == 'sup' ||
21368             tg.toLowerCase() == 'sub' 
21369             ) {
21370             
21371             range = this.createRange(this.getSelection());
21372             var wrappingNode = this.doc.createElement(tg.toLowerCase());
21373             wrappingNode.appendChild(range.extractContents());
21374             range.insertNode(wrappingNode);
21375
21376             return;
21377             
21378             
21379             
21380         }
21381         this.execCmd("formatblock",   tg);
21382         
21383     },
21384     
21385     insertText : function(txt)
21386     {
21387         
21388         
21389         var range = this.createRange();
21390         range.deleteContents();
21391                //alert(Sender.getAttribute('label'));
21392                
21393         range.insertNode(this.doc.createTextNode(txt));
21394     } ,
21395     
21396      
21397
21398     /**
21399      * Executes a Midas editor command on the editor document and performs necessary focus and
21400      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
21401      * @param {String} cmd The Midas command
21402      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21403      */
21404     relayCmd : function(cmd, value){
21405         this.win.focus();
21406         this.execCmd(cmd, value);
21407         this.owner.fireEvent('editorevent', this);
21408         //this.updateToolbar();
21409         this.owner.deferFocus();
21410     },
21411
21412     /**
21413      * Executes a Midas editor command directly on the editor document.
21414      * For visual commands, you should use {@link #relayCmd} instead.
21415      * <b>This should only be called after the editor is initialized.</b>
21416      * @param {String} cmd The Midas command
21417      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
21418      */
21419     execCmd : function(cmd, value){
21420         this.doc.execCommand(cmd, false, value === undefined ? null : value);
21421         this.syncValue();
21422     },
21423  
21424  
21425    
21426     /**
21427      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
21428      * to insert tRoo.
21429      * @param {String} text | dom node.. 
21430      */
21431     insertAtCursor : function(text)
21432     {
21433         
21434         if(!this.activated){
21435             return;
21436         }
21437         /*
21438         if(Roo.isIE){
21439             this.win.focus();
21440             var r = this.doc.selection.createRange();
21441             if(r){
21442                 r.collapse(true);
21443                 r.pasteHTML(text);
21444                 this.syncValue();
21445                 this.deferFocus();
21446             
21447             }
21448             return;
21449         }
21450         */
21451         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
21452             this.win.focus();
21453             
21454             
21455             // from jquery ui (MIT licenced)
21456             var range, node;
21457             var win = this.win;
21458             
21459             if (win.getSelection && win.getSelection().getRangeAt) {
21460                 range = win.getSelection().getRangeAt(0);
21461                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
21462                 range.insertNode(node);
21463             } else if (win.document.selection && win.document.selection.createRange) {
21464                 // no firefox support
21465                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21466                 win.document.selection.createRange().pasteHTML(txt);
21467             } else {
21468                 // no firefox support
21469                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
21470                 this.execCmd('InsertHTML', txt);
21471             } 
21472             
21473             this.syncValue();
21474             
21475             this.deferFocus();
21476         }
21477     },
21478  // private
21479     mozKeyPress : function(e){
21480         if(e.ctrlKey){
21481             var c = e.getCharCode(), cmd;
21482           
21483             if(c > 0){
21484                 c = String.fromCharCode(c).toLowerCase();
21485                 switch(c){
21486                     case 'b':
21487                         cmd = 'bold';
21488                         break;
21489                     case 'i':
21490                         cmd = 'italic';
21491                         break;
21492                     
21493                     case 'u':
21494                         cmd = 'underline';
21495                         break;
21496                     
21497                     case 'v':
21498                         this.cleanUpPaste.defer(100, this);
21499                         return;
21500                         
21501                 }
21502                 if(cmd){
21503                     this.win.focus();
21504                     this.execCmd(cmd);
21505                     this.deferFocus();
21506                     e.preventDefault();
21507                 }
21508                 
21509             }
21510         }
21511     },
21512
21513     // private
21514     fixKeys : function(){ // load time branching for fastest keydown performance
21515         if(Roo.isIE){
21516             return function(e){
21517                 var k = e.getKey(), r;
21518                 if(k == e.TAB){
21519                     e.stopEvent();
21520                     r = this.doc.selection.createRange();
21521                     if(r){
21522                         r.collapse(true);
21523                         r.pasteHTML('&#160;&#160;&#160;&#160;');
21524                         this.deferFocus();
21525                     }
21526                     return;
21527                 }
21528                 
21529                 if(k == e.ENTER){
21530                     r = this.doc.selection.createRange();
21531                     if(r){
21532                         var target = r.parentElement();
21533                         if(!target || target.tagName.toLowerCase() != 'li'){
21534                             e.stopEvent();
21535                             r.pasteHTML('<br />');
21536                             r.collapse(false);
21537                             r.select();
21538                         }
21539                     }
21540                 }
21541                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21542                     this.cleanUpPaste.defer(100, this);
21543                     return;
21544                 }
21545                 
21546                 
21547             };
21548         }else if(Roo.isOpera){
21549             return function(e){
21550                 var k = e.getKey();
21551                 if(k == e.TAB){
21552                     e.stopEvent();
21553                     this.win.focus();
21554                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
21555                     this.deferFocus();
21556                 }
21557                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21558                     this.cleanUpPaste.defer(100, this);
21559                     return;
21560                 }
21561                 
21562             };
21563         }else if(Roo.isSafari){
21564             return function(e){
21565                 var k = e.getKey();
21566                 
21567                 if(k == e.TAB){
21568                     e.stopEvent();
21569                     this.execCmd('InsertText','\t');
21570                     this.deferFocus();
21571                     return;
21572                 }
21573                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
21574                     this.cleanUpPaste.defer(100, this);
21575                     return;
21576                 }
21577                 
21578              };
21579         }
21580     }(),
21581     
21582     getAllAncestors: function()
21583     {
21584         var p = this.getSelectedNode();
21585         var a = [];
21586         if (!p) {
21587             a.push(p); // push blank onto stack..
21588             p = this.getParentElement();
21589         }
21590         
21591         
21592         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
21593             a.push(p);
21594             p = p.parentNode;
21595         }
21596         a.push(this.doc.body);
21597         return a;
21598     },
21599     lastSel : false,
21600     lastSelNode : false,
21601     
21602     
21603     getSelection : function() 
21604     {
21605         this.assignDocWin();
21606         return Roo.isIE ? this.doc.selection : this.win.getSelection();
21607     },
21608     
21609     getSelectedNode: function() 
21610     {
21611         // this may only work on Gecko!!!
21612         
21613         // should we cache this!!!!
21614         
21615         
21616         
21617          
21618         var range = this.createRange(this.getSelection()).cloneRange();
21619         
21620         if (Roo.isIE) {
21621             var parent = range.parentElement();
21622             while (true) {
21623                 var testRange = range.duplicate();
21624                 testRange.moveToElementText(parent);
21625                 if (testRange.inRange(range)) {
21626                     break;
21627                 }
21628                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
21629                     break;
21630                 }
21631                 parent = parent.parentElement;
21632             }
21633             return parent;
21634         }
21635         
21636         // is ancestor a text element.
21637         var ac =  range.commonAncestorContainer;
21638         if (ac.nodeType == 3) {
21639             ac = ac.parentNode;
21640         }
21641         
21642         var ar = ac.childNodes;
21643          
21644         var nodes = [];
21645         var other_nodes = [];
21646         var has_other_nodes = false;
21647         for (var i=0;i<ar.length;i++) {
21648             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
21649                 continue;
21650             }
21651             // fullly contained node.
21652             
21653             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
21654                 nodes.push(ar[i]);
21655                 continue;
21656             }
21657             
21658             // probably selected..
21659             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
21660                 other_nodes.push(ar[i]);
21661                 continue;
21662             }
21663             // outer..
21664             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
21665                 continue;
21666             }
21667             
21668             
21669             has_other_nodes = true;
21670         }
21671         if (!nodes.length && other_nodes.length) {
21672             nodes= other_nodes;
21673         }
21674         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
21675             return false;
21676         }
21677         
21678         return nodes[0];
21679     },
21680     createRange: function(sel)
21681     {
21682         // this has strange effects when using with 
21683         // top toolbar - not sure if it's a great idea.
21684         //this.editor.contentWindow.focus();
21685         if (typeof sel != "undefined") {
21686             try {
21687                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
21688             } catch(e) {
21689                 return this.doc.createRange();
21690             }
21691         } else {
21692             return this.doc.createRange();
21693         }
21694     },
21695     getParentElement: function()
21696     {
21697         
21698         this.assignDocWin();
21699         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
21700         
21701         var range = this.createRange(sel);
21702          
21703         try {
21704             var p = range.commonAncestorContainer;
21705             while (p.nodeType == 3) { // text node
21706                 p = p.parentNode;
21707             }
21708             return p;
21709         } catch (e) {
21710             return null;
21711         }
21712     
21713     },
21714     /***
21715      *
21716      * Range intersection.. the hard stuff...
21717      *  '-1' = before
21718      *  '0' = hits..
21719      *  '1' = after.
21720      *         [ -- selected range --- ]
21721      *   [fail]                        [fail]
21722      *
21723      *    basically..
21724      *      if end is before start or  hits it. fail.
21725      *      if start is after end or hits it fail.
21726      *
21727      *   if either hits (but other is outside. - then it's not 
21728      *   
21729      *    
21730      **/
21731     
21732     
21733     // @see http://www.thismuchiknow.co.uk/?p=64.
21734     rangeIntersectsNode : function(range, node)
21735     {
21736         var nodeRange = node.ownerDocument.createRange();
21737         try {
21738             nodeRange.selectNode(node);
21739         } catch (e) {
21740             nodeRange.selectNodeContents(node);
21741         }
21742     
21743         var rangeStartRange = range.cloneRange();
21744         rangeStartRange.collapse(true);
21745     
21746         var rangeEndRange = range.cloneRange();
21747         rangeEndRange.collapse(false);
21748     
21749         var nodeStartRange = nodeRange.cloneRange();
21750         nodeStartRange.collapse(true);
21751     
21752         var nodeEndRange = nodeRange.cloneRange();
21753         nodeEndRange.collapse(false);
21754     
21755         return rangeStartRange.compareBoundaryPoints(
21756                  Range.START_TO_START, nodeEndRange) == -1 &&
21757                rangeEndRange.compareBoundaryPoints(
21758                  Range.START_TO_START, nodeStartRange) == 1;
21759         
21760          
21761     },
21762     rangeCompareNode : function(range, node)
21763     {
21764         var nodeRange = node.ownerDocument.createRange();
21765         try {
21766             nodeRange.selectNode(node);
21767         } catch (e) {
21768             nodeRange.selectNodeContents(node);
21769         }
21770         
21771         
21772         range.collapse(true);
21773     
21774         nodeRange.collapse(true);
21775      
21776         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
21777         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
21778          
21779         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
21780         
21781         var nodeIsBefore   =  ss == 1;
21782         var nodeIsAfter    = ee == -1;
21783         
21784         if (nodeIsBefore && nodeIsAfter) {
21785             return 0; // outer
21786         }
21787         if (!nodeIsBefore && nodeIsAfter) {
21788             return 1; //right trailed.
21789         }
21790         
21791         if (nodeIsBefore && !nodeIsAfter) {
21792             return 2;  // left trailed.
21793         }
21794         // fully contined.
21795         return 3;
21796     },
21797
21798     // private? - in a new class?
21799     cleanUpPaste :  function()
21800     {
21801         // cleans up the whole document..
21802         Roo.log('cleanuppaste');
21803         
21804         this.cleanUpChildren(this.doc.body);
21805         var clean = this.cleanWordChars(this.doc.body.innerHTML);
21806         if (clean != this.doc.body.innerHTML) {
21807             this.doc.body.innerHTML = clean;
21808         }
21809         
21810     },
21811     
21812     cleanWordChars : function(input) {// change the chars to hex code
21813         var he = Roo.HtmlEditorCore;
21814         
21815         var output = input;
21816         Roo.each(he.swapCodes, function(sw) { 
21817             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
21818             
21819             output = output.replace(swapper, sw[1]);
21820         });
21821         
21822         return output;
21823     },
21824     
21825     
21826     cleanUpChildren : function (n)
21827     {
21828         if (!n.childNodes.length) {
21829             return;
21830         }
21831         for (var i = n.childNodes.length-1; i > -1 ; i--) {
21832            this.cleanUpChild(n.childNodes[i]);
21833         }
21834     },
21835     
21836     
21837         
21838     
21839     cleanUpChild : function (node)
21840     {
21841         var ed = this;
21842         //console.log(node);
21843         if (node.nodeName == "#text") {
21844             // clean up silly Windows -- stuff?
21845             return; 
21846         }
21847         if (node.nodeName == "#comment") {
21848             node.parentNode.removeChild(node);
21849             // clean up silly Windows -- stuff?
21850             return; 
21851         }
21852         var lcname = node.tagName.toLowerCase();
21853         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
21854         // whitelist of tags..
21855         
21856         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
21857             // remove node.
21858             node.parentNode.removeChild(node);
21859             return;
21860             
21861         }
21862         
21863         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
21864         
21865         // spans with no attributes - just remove them..
21866         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
21867             remove_keep_children = true;
21868         }
21869         
21870         // remove <a name=....> as rendering on yahoo mailer is borked with this.
21871         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
21872         
21873         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
21874         //    remove_keep_children = true;
21875         //}
21876         
21877         if (remove_keep_children) {
21878             this.cleanUpChildren(node);
21879             // inserts everything just before this node...
21880             while (node.childNodes.length) {
21881                 var cn = node.childNodes[0];
21882                 node.removeChild(cn);
21883                 node.parentNode.insertBefore(cn, node);
21884             }
21885             node.parentNode.removeChild(node);
21886             return;
21887         }
21888         
21889         if (!node.attributes || !node.attributes.length) {
21890             
21891           
21892             
21893             
21894             this.cleanUpChildren(node);
21895             return;
21896         }
21897         
21898         function cleanAttr(n,v)
21899         {
21900             
21901             if (v.match(/^\./) || v.match(/^\//)) {
21902                 return;
21903             }
21904             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
21905                 return;
21906             }
21907             if (v.match(/^#/)) {
21908                 return;
21909             }
21910 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
21911             node.removeAttribute(n);
21912             
21913         }
21914         
21915         var cwhite = this.cwhite;
21916         var cblack = this.cblack;
21917             
21918         function cleanStyle(n,v)
21919         {
21920             if (v.match(/expression/)) { //XSS?? should we even bother..
21921                 node.removeAttribute(n);
21922                 return;
21923             }
21924             
21925             var parts = v.split(/;/);
21926             var clean = [];
21927             
21928             Roo.each(parts, function(p) {
21929                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
21930                 if (!p.length) {
21931                     return true;
21932                 }
21933                 var l = p.split(':').shift().replace(/\s+/g,'');
21934                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
21935                 
21936                 if ( cwhite.length && cblack.indexOf(l) > -1) {
21937 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
21938                     //node.removeAttribute(n);
21939                     return true;
21940                 }
21941                 //Roo.log()
21942                 // only allow 'c whitelisted system attributes'
21943                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
21944 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
21945                     //node.removeAttribute(n);
21946                     return true;
21947                 }
21948                 
21949                 
21950                  
21951                 
21952                 clean.push(p);
21953                 return true;
21954             });
21955             if (clean.length) { 
21956                 node.setAttribute(n, clean.join(';'));
21957             } else {
21958                 node.removeAttribute(n);
21959             }
21960             
21961         }
21962         
21963         
21964         for (var i = node.attributes.length-1; i > -1 ; i--) {
21965             var a = node.attributes[i];
21966             //console.log(a);
21967             
21968             if (a.name.toLowerCase().substr(0,2)=='on')  {
21969                 node.removeAttribute(a.name);
21970                 continue;
21971             }
21972             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
21973                 node.removeAttribute(a.name);
21974                 continue;
21975             }
21976             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
21977                 cleanAttr(a.name,a.value); // fixme..
21978                 continue;
21979             }
21980             if (a.name == 'style') {
21981                 cleanStyle(a.name,a.value);
21982                 continue;
21983             }
21984             /// clean up MS crap..
21985             // tecnically this should be a list of valid class'es..
21986             
21987             
21988             if (a.name == 'class') {
21989                 if (a.value.match(/^Mso/)) {
21990                     node.removeAttribute('class');
21991                 }
21992                 
21993                 if (a.value.match(/^body$/)) {
21994                     node.removeAttribute('class');
21995                 }
21996                 continue;
21997             }
21998             
21999             // style cleanup!?
22000             // class cleanup?
22001             
22002         }
22003         
22004         
22005         this.cleanUpChildren(node);
22006         
22007         
22008     },
22009     
22010     /**
22011      * Clean up MS wordisms...
22012      */
22013     cleanWord : function(node)
22014     {
22015         if (!node) {
22016             this.cleanWord(this.doc.body);
22017             return;
22018         }
22019         
22020         if(
22021                 node.nodeName == 'SPAN' &&
22022                 !node.hasAttributes() &&
22023                 node.childNodes.length == 1 &&
22024                 node.firstChild.nodeName == "#text"  
22025         ) {
22026             var textNode = node.firstChild;
22027             node.removeChild(textNode);
22028             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
22029                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
22030             }
22031             node.parentNode.insertBefore(textNode, node);
22032             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
22033                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
22034             }
22035             node.parentNode.removeChild(node);
22036         }
22037         
22038         if (node.nodeName == "#text") {
22039             // clean up silly Windows -- stuff?
22040             return; 
22041         }
22042         if (node.nodeName == "#comment") {
22043             node.parentNode.removeChild(node);
22044             // clean up silly Windows -- stuff?
22045             return; 
22046         }
22047         
22048         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
22049             node.parentNode.removeChild(node);
22050             return;
22051         }
22052         //Roo.log(node.tagName);
22053         // remove - but keep children..
22054         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
22055             //Roo.log('-- removed');
22056             while (node.childNodes.length) {
22057                 var cn = node.childNodes[0];
22058                 node.removeChild(cn);
22059                 node.parentNode.insertBefore(cn, node);
22060                 // move node to parent - and clean it..
22061                 this.cleanWord(cn);
22062             }
22063             node.parentNode.removeChild(node);
22064             /// no need to iterate chidlren = it's got none..
22065             //this.iterateChildren(node, this.cleanWord);
22066             return;
22067         }
22068         // clean styles
22069         if (node.className.length) {
22070             
22071             var cn = node.className.split(/\W+/);
22072             var cna = [];
22073             Roo.each(cn, function(cls) {
22074                 if (cls.match(/Mso[a-zA-Z]+/)) {
22075                     return;
22076                 }
22077                 cna.push(cls);
22078             });
22079             node.className = cna.length ? cna.join(' ') : '';
22080             if (!cna.length) {
22081                 node.removeAttribute("class");
22082             }
22083         }
22084         
22085         if (node.hasAttribute("lang")) {
22086             node.removeAttribute("lang");
22087         }
22088         
22089         if (node.hasAttribute("style")) {
22090             
22091             var styles = node.getAttribute("style").split(";");
22092             var nstyle = [];
22093             Roo.each(styles, function(s) {
22094                 if (!s.match(/:/)) {
22095                     return;
22096                 }
22097                 var kv = s.split(":");
22098                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
22099                     return;
22100                 }
22101                 // what ever is left... we allow.
22102                 nstyle.push(s);
22103             });
22104             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
22105             if (!nstyle.length) {
22106                 node.removeAttribute('style');
22107             }
22108         }
22109         this.iterateChildren(node, this.cleanWord);
22110         
22111         
22112         
22113     },
22114     /**
22115      * iterateChildren of a Node, calling fn each time, using this as the scole..
22116      * @param {DomNode} node node to iterate children of.
22117      * @param {Function} fn method of this class to call on each item.
22118      */
22119     iterateChildren : function(node, fn)
22120     {
22121         if (!node.childNodes.length) {
22122                 return;
22123         }
22124         for (var i = node.childNodes.length-1; i > -1 ; i--) {
22125            fn.call(this, node.childNodes[i])
22126         }
22127     },
22128     
22129     
22130     /**
22131      * cleanTableWidths.
22132      *
22133      * Quite often pasting from word etc.. results in tables with column and widths.
22134      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
22135      *
22136      */
22137     cleanTableWidths : function(node)
22138     {
22139          
22140          
22141         if (!node) {
22142             this.cleanTableWidths(this.doc.body);
22143             return;
22144         }
22145         
22146         // ignore list...
22147         if (node.nodeName == "#text" || node.nodeName == "#comment") {
22148             return; 
22149         }
22150         Roo.log(node.tagName);
22151         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
22152             this.iterateChildren(node, this.cleanTableWidths);
22153             return;
22154         }
22155         if (node.hasAttribute('width')) {
22156             node.removeAttribute('width');
22157         }
22158         
22159          
22160         if (node.hasAttribute("style")) {
22161             // pretty basic...
22162             
22163             var styles = node.getAttribute("style").split(";");
22164             var nstyle = [];
22165             Roo.each(styles, function(s) {
22166                 if (!s.match(/:/)) {
22167                     return;
22168                 }
22169                 var kv = s.split(":");
22170                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
22171                     return;
22172                 }
22173                 // what ever is left... we allow.
22174                 nstyle.push(s);
22175             });
22176             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
22177             if (!nstyle.length) {
22178                 node.removeAttribute('style');
22179             }
22180         }
22181         
22182         this.iterateChildren(node, this.cleanTableWidths);
22183         
22184         
22185     },
22186     
22187     
22188     
22189     
22190     domToHTML : function(currentElement, depth, nopadtext) {
22191         
22192         depth = depth || 0;
22193         nopadtext = nopadtext || false;
22194     
22195         if (!currentElement) {
22196             return this.domToHTML(this.doc.body);
22197         }
22198         
22199         //Roo.log(currentElement);
22200         var j;
22201         var allText = false;
22202         var nodeName = currentElement.nodeName;
22203         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
22204         
22205         if  (nodeName == '#text') {
22206             
22207             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
22208         }
22209         
22210         
22211         var ret = '';
22212         if (nodeName != 'BODY') {
22213              
22214             var i = 0;
22215             // Prints the node tagName, such as <A>, <IMG>, etc
22216             if (tagName) {
22217                 var attr = [];
22218                 for(i = 0; i < currentElement.attributes.length;i++) {
22219                     // quoting?
22220                     var aname = currentElement.attributes.item(i).name;
22221                     if (!currentElement.attributes.item(i).value.length) {
22222                         continue;
22223                     }
22224                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
22225                 }
22226                 
22227                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
22228             } 
22229             else {
22230                 
22231                 // eack
22232             }
22233         } else {
22234             tagName = false;
22235         }
22236         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
22237             return ret;
22238         }
22239         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
22240             nopadtext = true;
22241         }
22242         
22243         
22244         // Traverse the tree
22245         i = 0;
22246         var currentElementChild = currentElement.childNodes.item(i);
22247         var allText = true;
22248         var innerHTML  = '';
22249         lastnode = '';
22250         while (currentElementChild) {
22251             // Formatting code (indent the tree so it looks nice on the screen)
22252             var nopad = nopadtext;
22253             if (lastnode == 'SPAN') {
22254                 nopad  = true;
22255             }
22256             // text
22257             if  (currentElementChild.nodeName == '#text') {
22258                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
22259                 toadd = nopadtext ? toadd : toadd.trim();
22260                 if (!nopad && toadd.length > 80) {
22261                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
22262                 }
22263                 innerHTML  += toadd;
22264                 
22265                 i++;
22266                 currentElementChild = currentElement.childNodes.item(i);
22267                 lastNode = '';
22268                 continue;
22269             }
22270             allText = false;
22271             
22272             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
22273                 
22274             // Recursively traverse the tree structure of the child node
22275             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
22276             lastnode = currentElementChild.nodeName;
22277             i++;
22278             currentElementChild=currentElement.childNodes.item(i);
22279         }
22280         
22281         ret += innerHTML;
22282         
22283         if (!allText) {
22284                 // The remaining code is mostly for formatting the tree
22285             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
22286         }
22287         
22288         
22289         if (tagName) {
22290             ret+= "</"+tagName+">";
22291         }
22292         return ret;
22293         
22294     },
22295         
22296     applyBlacklists : function()
22297     {
22298         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
22299         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
22300         
22301         this.white = [];
22302         this.black = [];
22303         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
22304             if (b.indexOf(tag) > -1) {
22305                 return;
22306             }
22307             this.white.push(tag);
22308             
22309         }, this);
22310         
22311         Roo.each(w, function(tag) {
22312             if (b.indexOf(tag) > -1) {
22313                 return;
22314             }
22315             if (this.white.indexOf(tag) > -1) {
22316                 return;
22317             }
22318             this.white.push(tag);
22319             
22320         }, this);
22321         
22322         
22323         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
22324             if (w.indexOf(tag) > -1) {
22325                 return;
22326             }
22327             this.black.push(tag);
22328             
22329         }, this);
22330         
22331         Roo.each(b, function(tag) {
22332             if (w.indexOf(tag) > -1) {
22333                 return;
22334             }
22335             if (this.black.indexOf(tag) > -1) {
22336                 return;
22337             }
22338             this.black.push(tag);
22339             
22340         }, this);
22341         
22342         
22343         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
22344         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
22345         
22346         this.cwhite = [];
22347         this.cblack = [];
22348         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
22349             if (b.indexOf(tag) > -1) {
22350                 return;
22351             }
22352             this.cwhite.push(tag);
22353             
22354         }, this);
22355         
22356         Roo.each(w, function(tag) {
22357             if (b.indexOf(tag) > -1) {
22358                 return;
22359             }
22360             if (this.cwhite.indexOf(tag) > -1) {
22361                 return;
22362             }
22363             this.cwhite.push(tag);
22364             
22365         }, this);
22366         
22367         
22368         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
22369             if (w.indexOf(tag) > -1) {
22370                 return;
22371             }
22372             this.cblack.push(tag);
22373             
22374         }, this);
22375         
22376         Roo.each(b, function(tag) {
22377             if (w.indexOf(tag) > -1) {
22378                 return;
22379             }
22380             if (this.cblack.indexOf(tag) > -1) {
22381                 return;
22382             }
22383             this.cblack.push(tag);
22384             
22385         }, this);
22386     },
22387     
22388     setStylesheets : function(stylesheets)
22389     {
22390         if(typeof(stylesheets) == 'string'){
22391             Roo.get(this.iframe.contentDocument.head).createChild({
22392                 tag : 'link',
22393                 rel : 'stylesheet',
22394                 type : 'text/css',
22395                 href : stylesheets
22396             });
22397             
22398             return;
22399         }
22400         var _this = this;
22401      
22402         Roo.each(stylesheets, function(s) {
22403             if(!s.length){
22404                 return;
22405             }
22406             
22407             Roo.get(_this.iframe.contentDocument.head).createChild({
22408                 tag : 'link',
22409                 rel : 'stylesheet',
22410                 type : 'text/css',
22411                 href : s
22412             });
22413         });
22414
22415         
22416     },
22417     
22418     removeStylesheets : function()
22419     {
22420         var _this = this;
22421         
22422         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
22423             s.remove();
22424         });
22425     },
22426     
22427     setStyle : function(style)
22428     {
22429         Roo.get(this.iframe.contentDocument.head).createChild({
22430             tag : 'style',
22431             type : 'text/css',
22432             html : style
22433         });
22434
22435         return;
22436     }
22437     
22438     // hide stuff that is not compatible
22439     /**
22440      * @event blur
22441      * @hide
22442      */
22443     /**
22444      * @event change
22445      * @hide
22446      */
22447     /**
22448      * @event focus
22449      * @hide
22450      */
22451     /**
22452      * @event specialkey
22453      * @hide
22454      */
22455     /**
22456      * @cfg {String} fieldClass @hide
22457      */
22458     /**
22459      * @cfg {String} focusClass @hide
22460      */
22461     /**
22462      * @cfg {String} autoCreate @hide
22463      */
22464     /**
22465      * @cfg {String} inputType @hide
22466      */
22467     /**
22468      * @cfg {String} invalidClass @hide
22469      */
22470     /**
22471      * @cfg {String} invalidText @hide
22472      */
22473     /**
22474      * @cfg {String} msgFx @hide
22475      */
22476     /**
22477      * @cfg {String} validateOnBlur @hide
22478      */
22479 });
22480
22481 Roo.HtmlEditorCore.white = [
22482         'area', 'br', 'img', 'input', 'hr', 'wbr',
22483         
22484        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
22485        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
22486        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
22487        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
22488        'table',   'ul',         'xmp', 
22489        
22490        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
22491       'thead',   'tr', 
22492      
22493       'dir', 'menu', 'ol', 'ul', 'dl',
22494        
22495       'embed',  'object'
22496 ];
22497
22498
22499 Roo.HtmlEditorCore.black = [
22500     //    'embed',  'object', // enable - backend responsiblity to clean thiese
22501         'applet', // 
22502         'base',   'basefont', 'bgsound', 'blink',  'body', 
22503         'frame',  'frameset', 'head',    'html',   'ilayer', 
22504         'iframe', 'layer',  'link',     'meta',    'object',   
22505         'script', 'style' ,'title',  'xml' // clean later..
22506 ];
22507 Roo.HtmlEditorCore.clean = [
22508     'script', 'style', 'title', 'xml'
22509 ];
22510 Roo.HtmlEditorCore.remove = [
22511     'font'
22512 ];
22513 // attributes..
22514
22515 Roo.HtmlEditorCore.ablack = [
22516     'on'
22517 ];
22518     
22519 Roo.HtmlEditorCore.aclean = [ 
22520     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
22521 ];
22522
22523 // protocols..
22524 Roo.HtmlEditorCore.pwhite= [
22525         'http',  'https',  'mailto'
22526 ];
22527
22528 // white listed style attributes.
22529 Roo.HtmlEditorCore.cwhite= [
22530       //  'text-align', /// default is to allow most things..
22531       
22532          
22533 //        'font-size'//??
22534 ];
22535
22536 // black listed style attributes.
22537 Roo.HtmlEditorCore.cblack= [
22538       //  'font-size' -- this can be set by the project 
22539 ];
22540
22541
22542 Roo.HtmlEditorCore.swapCodes   =[ 
22543     [    8211, "--" ], 
22544     [    8212, "--" ], 
22545     [    8216,  "'" ],  
22546     [    8217, "'" ],  
22547     [    8220, '"' ],  
22548     [    8221, '"' ],  
22549     [    8226, "*" ],  
22550     [    8230, "..." ]
22551 ]; 
22552
22553     //<script type="text/javascript">
22554
22555 /*
22556  * Ext JS Library 1.1.1
22557  * Copyright(c) 2006-2007, Ext JS, LLC.
22558  * Licence LGPL
22559  * 
22560  */
22561  
22562  
22563 Roo.form.HtmlEditor = function(config){
22564     
22565     
22566     
22567     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
22568     
22569     if (!this.toolbars) {
22570         this.toolbars = [];
22571     }
22572     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
22573     
22574     
22575 };
22576
22577 /**
22578  * @class Roo.form.HtmlEditor
22579  * @extends Roo.form.Field
22580  * Provides a lightweight HTML Editor component.
22581  *
22582  * This has been tested on Fireforx / Chrome.. IE may not be so great..
22583  * 
22584  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
22585  * supported by this editor.</b><br/><br/>
22586  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
22587  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22588  */
22589 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
22590     /**
22591      * @cfg {Boolean} clearUp
22592      */
22593     clearUp : true,
22594       /**
22595      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
22596      */
22597     toolbars : false,
22598    
22599      /**
22600      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22601      *                        Roo.resizable.
22602      */
22603     resizable : false,
22604      /**
22605      * @cfg {Number} height (in pixels)
22606      */   
22607     height: 300,
22608    /**
22609      * @cfg {Number} width (in pixels)
22610      */   
22611     width: 500,
22612     
22613     /**
22614      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22615      * 
22616      */
22617     stylesheets: false,
22618     
22619     
22620      /**
22621      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
22622      * 
22623      */
22624     cblack: false,
22625     /**
22626      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
22627      * 
22628      */
22629     cwhite: false,
22630     
22631      /**
22632      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
22633      * 
22634      */
22635     black: false,
22636     /**
22637      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
22638      * 
22639      */
22640     white: false,
22641     
22642     // id of frame..
22643     frameId: false,
22644     
22645     // private properties
22646     validationEvent : false,
22647     deferHeight: true,
22648     initialized : false,
22649     activated : false,
22650     
22651     onFocus : Roo.emptyFn,
22652     iframePad:3,
22653     hideMode:'offsets',
22654     
22655     actionMode : 'container', // defaults to hiding it...
22656     
22657     defaultAutoCreate : { // modified by initCompnoent..
22658         tag: "textarea",
22659         style:"width:500px;height:300px;",
22660         autocomplete: "new-password"
22661     },
22662
22663     // private
22664     initComponent : function(){
22665         this.addEvents({
22666             /**
22667              * @event initialize
22668              * Fires when the editor is fully initialized (including the iframe)
22669              * @param {HtmlEditor} this
22670              */
22671             initialize: true,
22672             /**
22673              * @event activate
22674              * Fires when the editor is first receives the focus. Any insertion must wait
22675              * until after this event.
22676              * @param {HtmlEditor} this
22677              */
22678             activate: true,
22679              /**
22680              * @event beforesync
22681              * Fires before the textarea is updated with content from the editor iframe. Return false
22682              * to cancel the sync.
22683              * @param {HtmlEditor} this
22684              * @param {String} html
22685              */
22686             beforesync: true,
22687              /**
22688              * @event beforepush
22689              * Fires before the iframe editor is updated with content from the textarea. Return false
22690              * to cancel the push.
22691              * @param {HtmlEditor} this
22692              * @param {String} html
22693              */
22694             beforepush: true,
22695              /**
22696              * @event sync
22697              * Fires when the textarea is updated with content from the editor iframe.
22698              * @param {HtmlEditor} this
22699              * @param {String} html
22700              */
22701             sync: true,
22702              /**
22703              * @event push
22704              * Fires when the iframe editor is updated with content from the textarea.
22705              * @param {HtmlEditor} this
22706              * @param {String} html
22707              */
22708             push: true,
22709              /**
22710              * @event editmodechange
22711              * Fires when the editor switches edit modes
22712              * @param {HtmlEditor} this
22713              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
22714              */
22715             editmodechange: true,
22716             /**
22717              * @event editorevent
22718              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22719              * @param {HtmlEditor} this
22720              */
22721             editorevent: true,
22722             /**
22723              * @event firstfocus
22724              * Fires when on first focus - needed by toolbars..
22725              * @param {HtmlEditor} this
22726              */
22727             firstfocus: true,
22728             /**
22729              * @event autosave
22730              * Auto save the htmlEditor value as a file into Events
22731              * @param {HtmlEditor} this
22732              */
22733             autosave: true,
22734             /**
22735              * @event savedpreview
22736              * preview the saved version of htmlEditor
22737              * @param {HtmlEditor} this
22738              */
22739             savedpreview: true,
22740             
22741             /**
22742             * @event stylesheetsclick
22743             * Fires when press the Sytlesheets button
22744             * @param {Roo.HtmlEditorCore} this
22745             */
22746             stylesheetsclick: true
22747         });
22748         this.defaultAutoCreate =  {
22749             tag: "textarea",
22750             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
22751             autocomplete: "new-password"
22752         };
22753     },
22754
22755     /**
22756      * Protected method that will not generally be called directly. It
22757      * is called when the editor creates its toolbar. Override this method if you need to
22758      * add custom toolbar buttons.
22759      * @param {HtmlEditor} editor
22760      */
22761     createToolbar : function(editor){
22762         Roo.log("create toolbars");
22763         if (!editor.toolbars || !editor.toolbars.length) {
22764             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
22765         }
22766         
22767         for (var i =0 ; i < editor.toolbars.length;i++) {
22768             editor.toolbars[i] = Roo.factory(
22769                     typeof(editor.toolbars[i]) == 'string' ?
22770                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
22771                 Roo.form.HtmlEditor);
22772             editor.toolbars[i].init(editor);
22773         }
22774          
22775         
22776     },
22777
22778      
22779     // private
22780     onRender : function(ct, position)
22781     {
22782         var _t = this;
22783         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
22784         
22785         this.wrap = this.el.wrap({
22786             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
22787         });
22788         
22789         this.editorcore.onRender(ct, position);
22790          
22791         if (this.resizable) {
22792             this.resizeEl = new Roo.Resizable(this.wrap, {
22793                 pinned : true,
22794                 wrap: true,
22795                 dynamic : true,
22796                 minHeight : this.height,
22797                 height: this.height,
22798                 handles : this.resizable,
22799                 width: this.width,
22800                 listeners : {
22801                     resize : function(r, w, h) {
22802                         _t.onResize(w,h); // -something
22803                     }
22804                 }
22805             });
22806             
22807         }
22808         this.createToolbar(this);
22809        
22810         
22811         if(!this.width){
22812             this.setSize(this.wrap.getSize());
22813         }
22814         if (this.resizeEl) {
22815             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
22816             // should trigger onReize..
22817         }
22818         
22819         this.keyNav = new Roo.KeyNav(this.el, {
22820             
22821             "tab" : function(e){
22822                 e.preventDefault();
22823                 
22824                 var value = this.getValue();
22825                 
22826                 var start = this.el.dom.selectionStart;
22827                 var end = this.el.dom.selectionEnd;
22828                 
22829                 if(!e.shiftKey){
22830                     
22831                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
22832                     this.el.dom.setSelectionRange(end + 1, end + 1);
22833                     return;
22834                 }
22835                 
22836                 var f = value.substring(0, start).split("\t");
22837                 
22838                 if(f.pop().length != 0){
22839                     return;
22840                 }
22841                 
22842                 this.setValue(f.join("\t") + value.substring(end));
22843                 this.el.dom.setSelectionRange(start - 1, start - 1);
22844                 
22845             },
22846             
22847             "home" : function(e){
22848                 e.preventDefault();
22849                 
22850                 var curr = this.el.dom.selectionStart;
22851                 var lines = this.getValue().split("\n");
22852                 
22853                 if(!lines.length){
22854                     return;
22855                 }
22856                 
22857                 if(e.ctrlKey){
22858                     this.el.dom.setSelectionRange(0, 0);
22859                     return;
22860                 }
22861                 
22862                 var pos = 0;
22863                 
22864                 for (var i = 0; i < lines.length;i++) {
22865                     pos += lines[i].length;
22866                     
22867                     if(i != 0){
22868                         pos += 1;
22869                     }
22870                     
22871                     if(pos < curr){
22872                         continue;
22873                     }
22874                     
22875                     pos -= lines[i].length;
22876                     
22877                     break;
22878                 }
22879                 
22880                 if(!e.shiftKey){
22881                     this.el.dom.setSelectionRange(pos, pos);
22882                     return;
22883                 }
22884                 
22885                 this.el.dom.selectionStart = pos;
22886                 this.el.dom.selectionEnd = curr;
22887             },
22888             
22889             "end" : function(e){
22890                 e.preventDefault();
22891                 
22892                 var curr = this.el.dom.selectionStart;
22893                 var lines = this.getValue().split("\n");
22894                 
22895                 if(!lines.length){
22896                     return;
22897                 }
22898                 
22899                 if(e.ctrlKey){
22900                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
22901                     return;
22902                 }
22903                 
22904                 var pos = 0;
22905                 
22906                 for (var i = 0; i < lines.length;i++) {
22907                     
22908                     pos += lines[i].length;
22909                     
22910                     if(i != 0){
22911                         pos += 1;
22912                     }
22913                     
22914                     if(pos < curr){
22915                         continue;
22916                     }
22917                     
22918                     break;
22919                 }
22920                 
22921                 if(!e.shiftKey){
22922                     this.el.dom.setSelectionRange(pos, pos);
22923                     return;
22924                 }
22925                 
22926                 this.el.dom.selectionStart = curr;
22927                 this.el.dom.selectionEnd = pos;
22928             },
22929
22930             scope : this,
22931
22932             doRelay : function(foo, bar, hname){
22933                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
22934             },
22935
22936             forceKeyDown: true
22937         });
22938         
22939 //        if(this.autosave && this.w){
22940 //            this.autoSaveFn = setInterval(this.autosave, 1000);
22941 //        }
22942     },
22943
22944     // private
22945     onResize : function(w, h)
22946     {
22947         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
22948         var ew = false;
22949         var eh = false;
22950         
22951         if(this.el ){
22952             if(typeof w == 'number'){
22953                 var aw = w - this.wrap.getFrameWidth('lr');
22954                 this.el.setWidth(this.adjustWidth('textarea', aw));
22955                 ew = aw;
22956             }
22957             if(typeof h == 'number'){
22958                 var tbh = 0;
22959                 for (var i =0; i < this.toolbars.length;i++) {
22960                     // fixme - ask toolbars for heights?
22961                     tbh += this.toolbars[i].tb.el.getHeight();
22962                     if (this.toolbars[i].footer) {
22963                         tbh += this.toolbars[i].footer.el.getHeight();
22964                     }
22965                 }
22966                 
22967                 
22968                 
22969                 
22970                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
22971                 ah -= 5; // knock a few pixes off for look..
22972 //                Roo.log(ah);
22973                 this.el.setHeight(this.adjustWidth('textarea', ah));
22974                 var eh = ah;
22975             }
22976         }
22977         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
22978         this.editorcore.onResize(ew,eh);
22979         
22980     },
22981
22982     /**
22983      * Toggles the editor between standard and source edit mode.
22984      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22985      */
22986     toggleSourceEdit : function(sourceEditMode)
22987     {
22988         this.editorcore.toggleSourceEdit(sourceEditMode);
22989         
22990         if(this.editorcore.sourceEditMode){
22991             Roo.log('editor - showing textarea');
22992             
22993 //            Roo.log('in');
22994 //            Roo.log(this.syncValue());
22995             this.editorcore.syncValue();
22996             this.el.removeClass('x-hidden');
22997             this.el.dom.removeAttribute('tabIndex');
22998             this.el.focus();
22999             
23000             for (var i = 0; i < this.toolbars.length; i++) {
23001                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
23002                     this.toolbars[i].tb.hide();
23003                     this.toolbars[i].footer.hide();
23004                 }
23005             }
23006             
23007         }else{
23008             Roo.log('editor - hiding textarea');
23009 //            Roo.log('out')
23010 //            Roo.log(this.pushValue()); 
23011             this.editorcore.pushValue();
23012             
23013             this.el.addClass('x-hidden');
23014             this.el.dom.setAttribute('tabIndex', -1);
23015             
23016             for (var i = 0; i < this.toolbars.length; i++) {
23017                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
23018                     this.toolbars[i].tb.show();
23019                     this.toolbars[i].footer.show();
23020                 }
23021             }
23022             
23023             //this.deferFocus();
23024         }
23025         
23026         this.setSize(this.wrap.getSize());
23027         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
23028         
23029         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
23030     },
23031  
23032     // private (for BoxComponent)
23033     adjustSize : Roo.BoxComponent.prototype.adjustSize,
23034
23035     // private (for BoxComponent)
23036     getResizeEl : function(){
23037         return this.wrap;
23038     },
23039
23040     // private (for BoxComponent)
23041     getPositionEl : function(){
23042         return this.wrap;
23043     },
23044
23045     // private
23046     initEvents : function(){
23047         this.originalValue = this.getValue();
23048     },
23049
23050     /**
23051      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23052      * @method
23053      */
23054     markInvalid : Roo.emptyFn,
23055     /**
23056      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23057      * @method
23058      */
23059     clearInvalid : Roo.emptyFn,
23060
23061     setValue : function(v){
23062         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
23063         this.editorcore.pushValue();
23064     },
23065
23066      
23067     // private
23068     deferFocus : function(){
23069         this.focus.defer(10, this);
23070     },
23071
23072     // doc'ed in Field
23073     focus : function(){
23074         this.editorcore.focus();
23075         
23076     },
23077       
23078
23079     // private
23080     onDestroy : function(){
23081         
23082         
23083         
23084         if(this.rendered){
23085             
23086             for (var i =0; i < this.toolbars.length;i++) {
23087                 // fixme - ask toolbars for heights?
23088                 this.toolbars[i].onDestroy();
23089             }
23090             
23091             this.wrap.dom.innerHTML = '';
23092             this.wrap.remove();
23093         }
23094     },
23095
23096     // private
23097     onFirstFocus : function(){
23098         //Roo.log("onFirstFocus");
23099         this.editorcore.onFirstFocus();
23100          for (var i =0; i < this.toolbars.length;i++) {
23101             this.toolbars[i].onFirstFocus();
23102         }
23103         
23104     },
23105     
23106     // private
23107     syncValue : function()
23108     {
23109         this.editorcore.syncValue();
23110     },
23111     
23112     pushValue : function()
23113     {
23114         this.editorcore.pushValue();
23115     },
23116     
23117     setStylesheets : function(stylesheets)
23118     {
23119         this.editorcore.setStylesheets(stylesheets);
23120     },
23121     
23122     removeStylesheets : function()
23123     {
23124         this.editorcore.removeStylesheets();
23125     }
23126      
23127     
23128     // hide stuff that is not compatible
23129     /**
23130      * @event blur
23131      * @hide
23132      */
23133     /**
23134      * @event change
23135      * @hide
23136      */
23137     /**
23138      * @event focus
23139      * @hide
23140      */
23141     /**
23142      * @event specialkey
23143      * @hide
23144      */
23145     /**
23146      * @cfg {String} fieldClass @hide
23147      */
23148     /**
23149      * @cfg {String} focusClass @hide
23150      */
23151     /**
23152      * @cfg {String} autoCreate @hide
23153      */
23154     /**
23155      * @cfg {String} inputType @hide
23156      */
23157     /**
23158      * @cfg {String} invalidClass @hide
23159      */
23160     /**
23161      * @cfg {String} invalidText @hide
23162      */
23163     /**
23164      * @cfg {String} msgFx @hide
23165      */
23166     /**
23167      * @cfg {String} validateOnBlur @hide
23168      */
23169 });
23170  
23171     // <script type="text/javascript">
23172 /*
23173  * Based on
23174  * Ext JS Library 1.1.1
23175  * Copyright(c) 2006-2007, Ext JS, LLC.
23176  *  
23177  
23178  */
23179
23180 /**
23181  * @class Roo.form.HtmlEditorToolbar1
23182  * Basic Toolbar
23183  * 
23184  * Usage:
23185  *
23186  new Roo.form.HtmlEditor({
23187     ....
23188     toolbars : [
23189         new Roo.form.HtmlEditorToolbar1({
23190             disable : { fonts: 1 , format: 1, ..., ... , ...],
23191             btns : [ .... ]
23192         })
23193     }
23194      
23195  * 
23196  * @cfg {Object} disable List of elements to disable..
23197  * @cfg {Array} btns List of additional buttons.
23198  * 
23199  * 
23200  * NEEDS Extra CSS? 
23201  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
23202  */
23203  
23204 Roo.form.HtmlEditor.ToolbarStandard = function(config)
23205 {
23206     
23207     Roo.apply(this, config);
23208     
23209     // default disabled, based on 'good practice'..
23210     this.disable = this.disable || {};
23211     Roo.applyIf(this.disable, {
23212         fontSize : true,
23213         colors : true,
23214         specialElements : true
23215     });
23216     
23217     
23218     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
23219     // dont call parent... till later.
23220 }
23221
23222 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
23223     
23224     tb: false,
23225     
23226     rendered: false,
23227     
23228     editor : false,
23229     editorcore : false,
23230     /**
23231      * @cfg {Object} disable  List of toolbar elements to disable
23232          
23233      */
23234     disable : false,
23235     
23236     
23237      /**
23238      * @cfg {String} createLinkText The default text for the create link prompt
23239      */
23240     createLinkText : 'Please enter the URL for the link:',
23241     /**
23242      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
23243      */
23244     defaultLinkValue : 'http:/'+'/',
23245    
23246     
23247       /**
23248      * @cfg {Array} fontFamilies An array of available font families
23249      */
23250     fontFamilies : [
23251         'Arial',
23252         'Courier New',
23253         'Tahoma',
23254         'Times New Roman',
23255         'Verdana'
23256     ],
23257     
23258     specialChars : [
23259            "&#169;",
23260           "&#174;",     
23261           "&#8482;",    
23262           "&#163;" ,    
23263          // "&#8212;",    
23264           "&#8230;",    
23265           "&#247;" ,    
23266         //  "&#225;" ,     ?? a acute?
23267            "&#8364;"    , //Euro
23268        //   "&#8220;"    ,
23269         //  "&#8221;"    ,
23270         //  "&#8226;"    ,
23271           "&#176;"  //   , // degrees
23272
23273          // "&#233;"     , // e ecute
23274          // "&#250;"     , // u ecute?
23275     ],
23276     
23277     specialElements : [
23278         {
23279             text: "Insert Table",
23280             xtype: 'MenuItem',
23281             xns : Roo.Menu,
23282             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
23283                 
23284         },
23285         {    
23286             text: "Insert Image",
23287             xtype: 'MenuItem',
23288             xns : Roo.Menu,
23289             ihtml : '<img src="about:blank"/>'
23290             
23291         }
23292         
23293          
23294     ],
23295     
23296     
23297     inputElements : [ 
23298             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
23299             "input:submit", "input:button", "select", "textarea", "label" ],
23300     formats : [
23301         ["p"] ,  
23302         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
23303         ["pre"],[ "code"], 
23304         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
23305         ['div'],['span'],
23306         ['sup'],['sub']
23307     ],
23308     
23309     cleanStyles : [
23310         "font-size"
23311     ],
23312      /**
23313      * @cfg {String} defaultFont default font to use.
23314      */
23315     defaultFont: 'tahoma',
23316    
23317     fontSelect : false,
23318     
23319     
23320     formatCombo : false,
23321     
23322     init : function(editor)
23323     {
23324         this.editor = editor;
23325         this.editorcore = editor.editorcore ? editor.editorcore : editor;
23326         var editorcore = this.editorcore;
23327         
23328         var _t = this;
23329         
23330         var fid = editorcore.frameId;
23331         var etb = this;
23332         function btn(id, toggle, handler){
23333             var xid = fid + '-'+ id ;
23334             return {
23335                 id : xid,
23336                 cmd : id,
23337                 cls : 'x-btn-icon x-edit-'+id,
23338                 enableToggle:toggle !== false,
23339                 scope: _t, // was editor...
23340                 handler:handler||_t.relayBtnCmd,
23341                 clickEvent:'mousedown',
23342                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
23343                 tabIndex:-1
23344             };
23345         }
23346         
23347         
23348         
23349         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
23350         this.tb = tb;
23351          // stop form submits
23352         tb.el.on('click', function(e){
23353             e.preventDefault(); // what does this do?
23354         });
23355
23356         if(!this.disable.font) { // && !Roo.isSafari){
23357             /* why no safari for fonts 
23358             editor.fontSelect = tb.el.createChild({
23359                 tag:'select',
23360                 tabIndex: -1,
23361                 cls:'x-font-select',
23362                 html: this.createFontOptions()
23363             });
23364             
23365             editor.fontSelect.on('change', function(){
23366                 var font = editor.fontSelect.dom.value;
23367                 editor.relayCmd('fontname', font);
23368                 editor.deferFocus();
23369             }, editor);
23370             
23371             tb.add(
23372                 editor.fontSelect.dom,
23373                 '-'
23374             );
23375             */
23376             
23377         };
23378         if(!this.disable.formats){
23379             this.formatCombo = new Roo.form.ComboBox({
23380                 store: new Roo.data.SimpleStore({
23381                     id : 'tag',
23382                     fields: ['tag'],
23383                     data : this.formats // from states.js
23384                 }),
23385                 blockFocus : true,
23386                 name : '',
23387                 //autoCreate : {tag: "div",  size: "20"},
23388                 displayField:'tag',
23389                 typeAhead: false,
23390                 mode: 'local',
23391                 editable : false,
23392                 triggerAction: 'all',
23393                 emptyText:'Add tag',
23394                 selectOnFocus:true,
23395                 width:135,
23396                 listeners : {
23397                     'select': function(c, r, i) {
23398                         editorcore.insertTag(r.get('tag'));
23399                         editor.focus();
23400                     }
23401                 }
23402
23403             });
23404             tb.addField(this.formatCombo);
23405             
23406         }
23407         
23408         if(!this.disable.format){
23409             tb.add(
23410                 btn('bold'),
23411                 btn('italic'),
23412                 btn('underline'),
23413                 btn('strikethrough')
23414             );
23415         };
23416         if(!this.disable.fontSize){
23417             tb.add(
23418                 '-',
23419                 
23420                 
23421                 btn('increasefontsize', false, editorcore.adjustFont),
23422                 btn('decreasefontsize', false, editorcore.adjustFont)
23423             );
23424         };
23425         
23426         
23427         if(!this.disable.colors){
23428             tb.add(
23429                 '-', {
23430                     id:editorcore.frameId +'-forecolor',
23431                     cls:'x-btn-icon x-edit-forecolor',
23432                     clickEvent:'mousedown',
23433                     tooltip: this.buttonTips['forecolor'] || undefined,
23434                     tabIndex:-1,
23435                     menu : new Roo.menu.ColorMenu({
23436                         allowReselect: true,
23437                         focus: Roo.emptyFn,
23438                         value:'000000',
23439                         plain:true,
23440                         selectHandler: function(cp, color){
23441                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
23442                             editor.deferFocus();
23443                         },
23444                         scope: editorcore,
23445                         clickEvent:'mousedown'
23446                     })
23447                 }, {
23448                     id:editorcore.frameId +'backcolor',
23449                     cls:'x-btn-icon x-edit-backcolor',
23450                     clickEvent:'mousedown',
23451                     tooltip: this.buttonTips['backcolor'] || undefined,
23452                     tabIndex:-1,
23453                     menu : new Roo.menu.ColorMenu({
23454                         focus: Roo.emptyFn,
23455                         value:'FFFFFF',
23456                         plain:true,
23457                         allowReselect: true,
23458                         selectHandler: function(cp, color){
23459                             if(Roo.isGecko){
23460                                 editorcore.execCmd('useCSS', false);
23461                                 editorcore.execCmd('hilitecolor', color);
23462                                 editorcore.execCmd('useCSS', true);
23463                                 editor.deferFocus();
23464                             }else{
23465                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
23466                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
23467                                 editor.deferFocus();
23468                             }
23469                         },
23470                         scope:editorcore,
23471                         clickEvent:'mousedown'
23472                     })
23473                 }
23474             );
23475         };
23476         // now add all the items...
23477         
23478
23479         if(!this.disable.alignments){
23480             tb.add(
23481                 '-',
23482                 btn('justifyleft'),
23483                 btn('justifycenter'),
23484                 btn('justifyright')
23485             );
23486         };
23487
23488         //if(!Roo.isSafari){
23489             if(!this.disable.links){
23490                 tb.add(
23491                     '-',
23492                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
23493                 );
23494             };
23495
23496             if(!this.disable.lists){
23497                 tb.add(
23498                     '-',
23499                     btn('insertorderedlist'),
23500                     btn('insertunorderedlist')
23501                 );
23502             }
23503             if(!this.disable.sourceEdit){
23504                 tb.add(
23505                     '-',
23506                     btn('sourceedit', true, function(btn){
23507                         this.toggleSourceEdit(btn.pressed);
23508                     })
23509                 );
23510             }
23511         //}
23512         
23513         var smenu = { };
23514         // special menu.. - needs to be tidied up..
23515         if (!this.disable.special) {
23516             smenu = {
23517                 text: "&#169;",
23518                 cls: 'x-edit-none',
23519                 
23520                 menu : {
23521                     items : []
23522                 }
23523             };
23524             for (var i =0; i < this.specialChars.length; i++) {
23525                 smenu.menu.items.push({
23526                     
23527                     html: this.specialChars[i],
23528                     handler: function(a,b) {
23529                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
23530                         //editor.insertAtCursor(a.html);
23531                         
23532                     },
23533                     tabIndex:-1
23534                 });
23535             }
23536             
23537             
23538             tb.add(smenu);
23539             
23540             
23541         }
23542         
23543         var cmenu = { };
23544         if (!this.disable.cleanStyles) {
23545             cmenu = {
23546                 cls: 'x-btn-icon x-btn-clear',
23547                 
23548                 menu : {
23549                     items : []
23550                 }
23551             };
23552             for (var i =0; i < this.cleanStyles.length; i++) {
23553                 cmenu.menu.items.push({
23554                     actiontype : this.cleanStyles[i],
23555                     html: 'Remove ' + this.cleanStyles[i],
23556                     handler: function(a,b) {
23557 //                        Roo.log(a);
23558 //                        Roo.log(b);
23559                         var c = Roo.get(editorcore.doc.body);
23560                         c.select('[style]').each(function(s) {
23561                             s.dom.style.removeProperty(a.actiontype);
23562                         });
23563                         editorcore.syncValue();
23564                     },
23565                     tabIndex:-1
23566                 });
23567             }
23568              cmenu.menu.items.push({
23569                 actiontype : 'tablewidths',
23570                 html: 'Remove Table Widths',
23571                 handler: function(a,b) {
23572                     editorcore.cleanTableWidths();
23573                     editorcore.syncValue();
23574                 },
23575                 tabIndex:-1
23576             });
23577             cmenu.menu.items.push({
23578                 actiontype : 'word',
23579                 html: 'Remove MS Word Formating',
23580                 handler: function(a,b) {
23581                     editorcore.cleanWord();
23582                     editorcore.syncValue();
23583                 },
23584                 tabIndex:-1
23585             });
23586             
23587             cmenu.menu.items.push({
23588                 actiontype : 'all',
23589                 html: 'Remove All Styles',
23590                 handler: function(a,b) {
23591                     
23592                     var c = Roo.get(editorcore.doc.body);
23593                     c.select('[style]').each(function(s) {
23594                         s.dom.removeAttribute('style');
23595                     });
23596                     editorcore.syncValue();
23597                 },
23598                 tabIndex:-1
23599             });
23600             
23601             cmenu.menu.items.push({
23602                 actiontype : 'all',
23603                 html: 'Remove All CSS Classes',
23604                 handler: function(a,b) {
23605                     
23606                     var c = Roo.get(editorcore.doc.body);
23607                     c.select('[class]').each(function(s) {
23608                         s.dom.removeAttribute('class');
23609                     });
23610                     editorcore.cleanWord();
23611                     editorcore.syncValue();
23612                 },
23613                 tabIndex:-1
23614             });
23615             
23616              cmenu.menu.items.push({
23617                 actiontype : 'tidy',
23618                 html: 'Tidy HTML Source',
23619                 handler: function(a,b) {
23620                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
23621                     editorcore.syncValue();
23622                 },
23623                 tabIndex:-1
23624             });
23625             
23626             
23627             tb.add(cmenu);
23628         }
23629          
23630         if (!this.disable.specialElements) {
23631             var semenu = {
23632                 text: "Other;",
23633                 cls: 'x-edit-none',
23634                 menu : {
23635                     items : []
23636                 }
23637             };
23638             for (var i =0; i < this.specialElements.length; i++) {
23639                 semenu.menu.items.push(
23640                     Roo.apply({ 
23641                         handler: function(a,b) {
23642                             editor.insertAtCursor(this.ihtml);
23643                         }
23644                     }, this.specialElements[i])
23645                 );
23646                     
23647             }
23648             
23649             tb.add(semenu);
23650             
23651             
23652         }
23653          
23654         
23655         if (this.btns) {
23656             for(var i =0; i< this.btns.length;i++) {
23657                 var b = Roo.factory(this.btns[i],Roo.form);
23658                 b.cls =  'x-edit-none';
23659                 
23660                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
23661                     b.cls += ' x-init-enable';
23662                 }
23663                 
23664                 b.scope = editorcore;
23665                 tb.add(b);
23666             }
23667         
23668         }
23669         
23670         
23671         
23672         // disable everything...
23673         
23674         this.tb.items.each(function(item){
23675             
23676            if(
23677                 item.id != editorcore.frameId+ '-sourceedit' && 
23678                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
23679             ){
23680                 
23681                 item.disable();
23682             }
23683         });
23684         this.rendered = true;
23685         
23686         // the all the btns;
23687         editor.on('editorevent', this.updateToolbar, this);
23688         // other toolbars need to implement this..
23689         //editor.on('editmodechange', this.updateToolbar, this);
23690     },
23691     
23692     
23693     relayBtnCmd : function(btn) {
23694         this.editorcore.relayCmd(btn.cmd);
23695     },
23696     // private used internally
23697     createLink : function(){
23698         Roo.log("create link?");
23699         var url = prompt(this.createLinkText, this.defaultLinkValue);
23700         if(url && url != 'http:/'+'/'){
23701             this.editorcore.relayCmd('createlink', url);
23702         }
23703     },
23704
23705     
23706     /**
23707      * Protected method that will not generally be called directly. It triggers
23708      * a toolbar update by reading the markup state of the current selection in the editor.
23709      */
23710     updateToolbar: function(){
23711
23712         if(!this.editorcore.activated){
23713             this.editor.onFirstFocus();
23714             return;
23715         }
23716
23717         var btns = this.tb.items.map, 
23718             doc = this.editorcore.doc,
23719             frameId = this.editorcore.frameId;
23720
23721         if(!this.disable.font && !Roo.isSafari){
23722             /*
23723             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
23724             if(name != this.fontSelect.dom.value){
23725                 this.fontSelect.dom.value = name;
23726             }
23727             */
23728         }
23729         if(!this.disable.format){
23730             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
23731             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
23732             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
23733             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
23734         }
23735         if(!this.disable.alignments){
23736             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
23737             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
23738             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
23739         }
23740         if(!Roo.isSafari && !this.disable.lists){
23741             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
23742             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
23743         }
23744         
23745         var ans = this.editorcore.getAllAncestors();
23746         if (this.formatCombo) {
23747             
23748             
23749             var store = this.formatCombo.store;
23750             this.formatCombo.setValue("");
23751             for (var i =0; i < ans.length;i++) {
23752                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
23753                     // select it..
23754                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
23755                     break;
23756                 }
23757             }
23758         }
23759         
23760         
23761         
23762         // hides menus... - so this cant be on a menu...
23763         Roo.menu.MenuMgr.hideAll();
23764
23765         //this.editorsyncValue();
23766     },
23767    
23768     
23769     createFontOptions : function(){
23770         var buf = [], fs = this.fontFamilies, ff, lc;
23771         
23772         
23773         
23774         for(var i = 0, len = fs.length; i< len; i++){
23775             ff = fs[i];
23776             lc = ff.toLowerCase();
23777             buf.push(
23778                 '<option value="',lc,'" style="font-family:',ff,';"',
23779                     (this.defaultFont == lc ? ' selected="true">' : '>'),
23780                     ff,
23781                 '</option>'
23782             );
23783         }
23784         return buf.join('');
23785     },
23786     
23787     toggleSourceEdit : function(sourceEditMode){
23788         
23789         Roo.log("toolbar toogle");
23790         if(sourceEditMode === undefined){
23791             sourceEditMode = !this.sourceEditMode;
23792         }
23793         this.sourceEditMode = sourceEditMode === true;
23794         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
23795         // just toggle the button?
23796         if(btn.pressed !== this.sourceEditMode){
23797             btn.toggle(this.sourceEditMode);
23798             return;
23799         }
23800         
23801         if(sourceEditMode){
23802             Roo.log("disabling buttons");
23803             this.tb.items.each(function(item){
23804                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
23805                     item.disable();
23806                 }
23807             });
23808           
23809         }else{
23810             Roo.log("enabling buttons");
23811             if(this.editorcore.initialized){
23812                 this.tb.items.each(function(item){
23813                     item.enable();
23814                 });
23815             }
23816             
23817         }
23818         Roo.log("calling toggole on editor");
23819         // tell the editor that it's been pressed..
23820         this.editor.toggleSourceEdit(sourceEditMode);
23821        
23822     },
23823      /**
23824      * Object collection of toolbar tooltips for the buttons in the editor. The key
23825      * is the command id associated with that button and the value is a valid QuickTips object.
23826      * For example:
23827 <pre><code>
23828 {
23829     bold : {
23830         title: 'Bold (Ctrl+B)',
23831         text: 'Make the selected text bold.',
23832         cls: 'x-html-editor-tip'
23833     },
23834     italic : {
23835         title: 'Italic (Ctrl+I)',
23836         text: 'Make the selected text italic.',
23837         cls: 'x-html-editor-tip'
23838     },
23839     ...
23840 </code></pre>
23841     * @type Object
23842      */
23843     buttonTips : {
23844         bold : {
23845             title: 'Bold (Ctrl+B)',
23846             text: 'Make the selected text bold.',
23847             cls: 'x-html-editor-tip'
23848         },
23849         italic : {
23850             title: 'Italic (Ctrl+I)',
23851             text: 'Make the selected text italic.',
23852             cls: 'x-html-editor-tip'
23853         },
23854         underline : {
23855             title: 'Underline (Ctrl+U)',
23856             text: 'Underline the selected text.',
23857             cls: 'x-html-editor-tip'
23858         },
23859         strikethrough : {
23860             title: 'Strikethrough',
23861             text: 'Strikethrough the selected text.',
23862             cls: 'x-html-editor-tip'
23863         },
23864         increasefontsize : {
23865             title: 'Grow Text',
23866             text: 'Increase the font size.',
23867             cls: 'x-html-editor-tip'
23868         },
23869         decreasefontsize : {
23870             title: 'Shrink Text',
23871             text: 'Decrease the font size.',
23872             cls: 'x-html-editor-tip'
23873         },
23874         backcolor : {
23875             title: 'Text Highlight Color',
23876             text: 'Change the background color of the selected text.',
23877             cls: 'x-html-editor-tip'
23878         },
23879         forecolor : {
23880             title: 'Font Color',
23881             text: 'Change the color of the selected text.',
23882             cls: 'x-html-editor-tip'
23883         },
23884         justifyleft : {
23885             title: 'Align Text Left',
23886             text: 'Align text to the left.',
23887             cls: 'x-html-editor-tip'
23888         },
23889         justifycenter : {
23890             title: 'Center Text',
23891             text: 'Center text in the editor.',
23892             cls: 'x-html-editor-tip'
23893         },
23894         justifyright : {
23895             title: 'Align Text Right',
23896             text: 'Align text to the right.',
23897             cls: 'x-html-editor-tip'
23898         },
23899         insertunorderedlist : {
23900             title: 'Bullet List',
23901             text: 'Start a bulleted list.',
23902             cls: 'x-html-editor-tip'
23903         },
23904         insertorderedlist : {
23905             title: 'Numbered List',
23906             text: 'Start a numbered list.',
23907             cls: 'x-html-editor-tip'
23908         },
23909         createlink : {
23910             title: 'Hyperlink',
23911             text: 'Make the selected text a hyperlink.',
23912             cls: 'x-html-editor-tip'
23913         },
23914         sourceedit : {
23915             title: 'Source Edit',
23916             text: 'Switch to source editing mode.',
23917             cls: 'x-html-editor-tip'
23918         }
23919     },
23920     // private
23921     onDestroy : function(){
23922         if(this.rendered){
23923             
23924             this.tb.items.each(function(item){
23925                 if(item.menu){
23926                     item.menu.removeAll();
23927                     if(item.menu.el){
23928                         item.menu.el.destroy();
23929                     }
23930                 }
23931                 item.destroy();
23932             });
23933              
23934         }
23935     },
23936     onFirstFocus: function() {
23937         this.tb.items.each(function(item){
23938            item.enable();
23939         });
23940     }
23941 });
23942
23943
23944
23945
23946 // <script type="text/javascript">
23947 /*
23948  * Based on
23949  * Ext JS Library 1.1.1
23950  * Copyright(c) 2006-2007, Ext JS, LLC.
23951  *  
23952  
23953  */
23954
23955  
23956 /**
23957  * @class Roo.form.HtmlEditor.ToolbarContext
23958  * Context Toolbar
23959  * 
23960  * Usage:
23961  *
23962  new Roo.form.HtmlEditor({
23963     ....
23964     toolbars : [
23965         { xtype: 'ToolbarStandard', styles : {} }
23966         { xtype: 'ToolbarContext', disable : {} }
23967     ]
23968 })
23969
23970      
23971  * 
23972  * @config : {Object} disable List of elements to disable.. (not done yet.)
23973  * @config : {Object} styles  Map of styles available.
23974  * 
23975  */
23976
23977 Roo.form.HtmlEditor.ToolbarContext = function(config)
23978 {
23979     
23980     Roo.apply(this, config);
23981     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
23982     // dont call parent... till later.
23983     this.styles = this.styles || {};
23984 }
23985
23986  
23987
23988 Roo.form.HtmlEditor.ToolbarContext.types = {
23989     'IMG' : {
23990         width : {
23991             title: "Width",
23992             width: 40
23993         },
23994         height:  {
23995             title: "Height",
23996             width: 40
23997         },
23998         align: {
23999             title: "Align",
24000             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
24001             width : 80
24002             
24003         },
24004         border: {
24005             title: "Border",
24006             width: 40
24007         },
24008         alt: {
24009             title: "Alt",
24010             width: 120
24011         },
24012         src : {
24013             title: "Src",
24014             width: 220
24015         }
24016         
24017     },
24018     'A' : {
24019         name : {
24020             title: "Name",
24021             width: 50
24022         },
24023         target:  {
24024             title: "Target",
24025             width: 120
24026         },
24027         href:  {
24028             title: "Href",
24029             width: 220
24030         } // border?
24031         
24032     },
24033     'TABLE' : {
24034         rows : {
24035             title: "Rows",
24036             width: 20
24037         },
24038         cols : {
24039             title: "Cols",
24040             width: 20
24041         },
24042         width : {
24043             title: "Width",
24044             width: 40
24045         },
24046         height : {
24047             title: "Height",
24048             width: 40
24049         },
24050         border : {
24051             title: "Border",
24052             width: 20
24053         }
24054     },
24055     'TD' : {
24056         width : {
24057             title: "Width",
24058             width: 40
24059         },
24060         height : {
24061             title: "Height",
24062             width: 40
24063         },   
24064         align: {
24065             title: "Align",
24066             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
24067             width: 80
24068         },
24069         valign: {
24070             title: "Valign",
24071             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
24072             width: 80
24073         },
24074         colspan: {
24075             title: "Colspan",
24076             width: 20
24077             
24078         },
24079          'font-family'  : {
24080             title : "Font",
24081             style : 'fontFamily',
24082             displayField: 'display',
24083             optname : 'font-family',
24084             width: 140
24085         }
24086     },
24087     'INPUT' : {
24088         name : {
24089             title: "name",
24090             width: 120
24091         },
24092         value : {
24093             title: "Value",
24094             width: 120
24095         },
24096         width : {
24097             title: "Width",
24098             width: 40
24099         }
24100     },
24101     'LABEL' : {
24102         'for' : {
24103             title: "For",
24104             width: 120
24105         }
24106     },
24107     'TEXTAREA' : {
24108           name : {
24109             title: "name",
24110             width: 120
24111         },
24112         rows : {
24113             title: "Rows",
24114             width: 20
24115         },
24116         cols : {
24117             title: "Cols",
24118             width: 20
24119         }
24120     },
24121     'SELECT' : {
24122         name : {
24123             title: "name",
24124             width: 120
24125         },
24126         selectoptions : {
24127             title: "Options",
24128             width: 200
24129         }
24130     },
24131     
24132     // should we really allow this??
24133     // should this just be 
24134     'BODY' : {
24135         title : {
24136             title: "Title",
24137             width: 200,
24138             disabled : true
24139         }
24140     },
24141     'SPAN' : {
24142         'font-family'  : {
24143             title : "Font",
24144             style : 'fontFamily',
24145             displayField: 'display',
24146             optname : 'font-family',
24147             width: 140
24148         }
24149     },
24150     'DIV' : {
24151         'font-family'  : {
24152             title : "Font",
24153             style : 'fontFamily',
24154             displayField: 'display',
24155             optname : 'font-family',
24156             width: 140
24157         }
24158     },
24159      'P' : {
24160         'font-family'  : {
24161             title : "Font",
24162             style : 'fontFamily',
24163             displayField: 'display',
24164             optname : 'font-family',
24165             width: 140
24166         }
24167     },
24168     
24169     '*' : {
24170         // empty..
24171     }
24172
24173 };
24174
24175 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
24176 Roo.form.HtmlEditor.ToolbarContext.stores = false;
24177
24178 Roo.form.HtmlEditor.ToolbarContext.options = {
24179         'font-family'  : [ 
24180                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
24181                 [ 'Courier New', 'Courier New'],
24182                 [ 'Tahoma', 'Tahoma'],
24183                 [ 'Times New Roman,serif', 'Times'],
24184                 [ 'Verdana','Verdana' ]
24185         ]
24186 };
24187
24188 // fixme - these need to be configurable..
24189  
24190
24191 //Roo.form.HtmlEditor.ToolbarContext.types
24192
24193
24194 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
24195     
24196     tb: false,
24197     
24198     rendered: false,
24199     
24200     editor : false,
24201     editorcore : false,
24202     /**
24203      * @cfg {Object} disable  List of toolbar elements to disable
24204          
24205      */
24206     disable : false,
24207     /**
24208      * @cfg {Object} styles List of styles 
24209      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
24210      *
24211      * These must be defined in the page, so they get rendered correctly..
24212      * .headline { }
24213      * TD.underline { }
24214      * 
24215      */
24216     styles : false,
24217     
24218     options: false,
24219     
24220     toolbars : false,
24221     
24222     init : function(editor)
24223     {
24224         this.editor = editor;
24225         this.editorcore = editor.editorcore ? editor.editorcore : editor;
24226         var editorcore = this.editorcore;
24227         
24228         var fid = editorcore.frameId;
24229         var etb = this;
24230         function btn(id, toggle, handler){
24231             var xid = fid + '-'+ id ;
24232             return {
24233                 id : xid,
24234                 cmd : id,
24235                 cls : 'x-btn-icon x-edit-'+id,
24236                 enableToggle:toggle !== false,
24237                 scope: editorcore, // was editor...
24238                 handler:handler||editorcore.relayBtnCmd,
24239                 clickEvent:'mousedown',
24240                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
24241                 tabIndex:-1
24242             };
24243         }
24244         // create a new element.
24245         var wdiv = editor.wrap.createChild({
24246                 tag: 'div'
24247             }, editor.wrap.dom.firstChild.nextSibling, true);
24248         
24249         // can we do this more than once??
24250         
24251          // stop form submits
24252       
24253  
24254         // disable everything...
24255         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
24256         this.toolbars = {};
24257            
24258         for (var i in  ty) {
24259           
24260             this.toolbars[i] = this.buildToolbar(ty[i],i);
24261         }
24262         this.tb = this.toolbars.BODY;
24263         this.tb.el.show();
24264         this.buildFooter();
24265         this.footer.show();
24266         editor.on('hide', function( ) { this.footer.hide() }, this);
24267         editor.on('show', function( ) { this.footer.show() }, this);
24268         
24269          
24270         this.rendered = true;
24271         
24272         // the all the btns;
24273         editor.on('editorevent', this.updateToolbar, this);
24274         // other toolbars need to implement this..
24275         //editor.on('editmodechange', this.updateToolbar, this);
24276     },
24277     
24278     
24279     
24280     /**
24281      * Protected method that will not generally be called directly. It triggers
24282      * a toolbar update by reading the markup state of the current selection in the editor.
24283      *
24284      * Note you can force an update by calling on('editorevent', scope, false)
24285      */
24286     updateToolbar: function(editor,ev,sel){
24287
24288         //Roo.log(ev);
24289         // capture mouse up - this is handy for selecting images..
24290         // perhaps should go somewhere else...
24291         if(!this.editorcore.activated){
24292              this.editor.onFirstFocus();
24293             return;
24294         }
24295         
24296         
24297         
24298         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
24299         // selectNode - might want to handle IE?
24300         if (ev &&
24301             (ev.type == 'mouseup' || ev.type == 'click' ) &&
24302             ev.target && ev.target.tagName == 'IMG') {
24303             // they have click on an image...
24304             // let's see if we can change the selection...
24305             sel = ev.target;
24306          
24307               var nodeRange = sel.ownerDocument.createRange();
24308             try {
24309                 nodeRange.selectNode(sel);
24310             } catch (e) {
24311                 nodeRange.selectNodeContents(sel);
24312             }
24313             //nodeRange.collapse(true);
24314             var s = this.editorcore.win.getSelection();
24315             s.removeAllRanges();
24316             s.addRange(nodeRange);
24317         }  
24318         
24319       
24320         var updateFooter = sel ? false : true;
24321         
24322         
24323         var ans = this.editorcore.getAllAncestors();
24324         
24325         // pick
24326         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
24327         
24328         if (!sel) { 
24329             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
24330             sel = sel ? sel : this.editorcore.doc.body;
24331             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
24332             
24333         }
24334         // pick a menu that exists..
24335         var tn = sel.tagName.toUpperCase();
24336         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
24337         
24338         tn = sel.tagName.toUpperCase();
24339         
24340         var lastSel = this.tb.selectedNode;
24341         
24342         this.tb.selectedNode = sel;
24343         
24344         // if current menu does not match..
24345         
24346         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
24347                 
24348             this.tb.el.hide();
24349             ///console.log("show: " + tn);
24350             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
24351             this.tb.el.show();
24352             // update name
24353             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
24354             
24355             
24356             // update attributes
24357             if (this.tb.fields) {
24358                 this.tb.fields.each(function(e) {
24359                     if (e.stylename) {
24360                         e.setValue(sel.style[e.stylename]);
24361                         return;
24362                     } 
24363                    e.setValue(sel.getAttribute(e.attrname));
24364                 });
24365             }
24366             
24367             var hasStyles = false;
24368             for(var i in this.styles) {
24369                 hasStyles = true;
24370                 break;
24371             }
24372             
24373             // update styles
24374             if (hasStyles) { 
24375                 var st = this.tb.fields.item(0);
24376                 
24377                 st.store.removeAll();
24378                
24379                 
24380                 var cn = sel.className.split(/\s+/);
24381                 
24382                 var avs = [];
24383                 if (this.styles['*']) {
24384                     
24385                     Roo.each(this.styles['*'], function(v) {
24386                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
24387                     });
24388                 }
24389                 if (this.styles[tn]) { 
24390                     Roo.each(this.styles[tn], function(v) {
24391                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
24392                     });
24393                 }
24394                 
24395                 st.store.loadData(avs);
24396                 st.collapse();
24397                 st.setValue(cn);
24398             }
24399             // flag our selected Node.
24400             this.tb.selectedNode = sel;
24401            
24402            
24403             Roo.menu.MenuMgr.hideAll();
24404
24405         }
24406         
24407         if (!updateFooter) {
24408             //this.footDisp.dom.innerHTML = ''; 
24409             return;
24410         }
24411         // update the footer
24412         //
24413         var html = '';
24414         
24415         this.footerEls = ans.reverse();
24416         Roo.each(this.footerEls, function(a,i) {
24417             if (!a) { return; }
24418             html += html.length ? ' &gt; '  :  '';
24419             
24420             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
24421             
24422         });
24423        
24424         // 
24425         var sz = this.footDisp.up('td').getSize();
24426         this.footDisp.dom.style.width = (sz.width -10) + 'px';
24427         this.footDisp.dom.style.marginLeft = '5px';
24428         
24429         this.footDisp.dom.style.overflow = 'hidden';
24430         
24431         this.footDisp.dom.innerHTML = html;
24432             
24433         //this.editorsyncValue();
24434     },
24435      
24436     
24437    
24438        
24439     // private
24440     onDestroy : function(){
24441         if(this.rendered){
24442             
24443             this.tb.items.each(function(item){
24444                 if(item.menu){
24445                     item.menu.removeAll();
24446                     if(item.menu.el){
24447                         item.menu.el.destroy();
24448                     }
24449                 }
24450                 item.destroy();
24451             });
24452              
24453         }
24454     },
24455     onFirstFocus: function() {
24456         // need to do this for all the toolbars..
24457         this.tb.items.each(function(item){
24458            item.enable();
24459         });
24460     },
24461     buildToolbar: function(tlist, nm)
24462     {
24463         var editor = this.editor;
24464         var editorcore = this.editorcore;
24465          // create a new element.
24466         var wdiv = editor.wrap.createChild({
24467                 tag: 'div'
24468             }, editor.wrap.dom.firstChild.nextSibling, true);
24469         
24470        
24471         var tb = new Roo.Toolbar(wdiv);
24472         // add the name..
24473         
24474         tb.add(nm+ ":&nbsp;");
24475         
24476         var styles = [];
24477         for(var i in this.styles) {
24478             styles.push(i);
24479         }
24480         
24481         // styles...
24482         if (styles && styles.length) {
24483             
24484             // this needs a multi-select checkbox...
24485             tb.addField( new Roo.form.ComboBox({
24486                 store: new Roo.data.SimpleStore({
24487                     id : 'val',
24488                     fields: ['val', 'selected'],
24489                     data : [] 
24490                 }),
24491                 name : '-roo-edit-className',
24492                 attrname : 'className',
24493                 displayField: 'val',
24494                 typeAhead: false,
24495                 mode: 'local',
24496                 editable : false,
24497                 triggerAction: 'all',
24498                 emptyText:'Select Style',
24499                 selectOnFocus:true,
24500                 width: 130,
24501                 listeners : {
24502                     'select': function(c, r, i) {
24503                         // initial support only for on class per el..
24504                         tb.selectedNode.className =  r ? r.get('val') : '';
24505                         editorcore.syncValue();
24506                     }
24507                 }
24508     
24509             }));
24510         }
24511         
24512         var tbc = Roo.form.HtmlEditor.ToolbarContext;
24513         var tbops = tbc.options;
24514         
24515         for (var i in tlist) {
24516             
24517             var item = tlist[i];
24518             tb.add(item.title + ":&nbsp;");
24519             
24520             
24521             //optname == used so you can configure the options available..
24522             var opts = item.opts ? item.opts : false;
24523             if (item.optname) {
24524                 opts = tbops[item.optname];
24525            
24526             }
24527             
24528             if (opts) {
24529                 // opts == pulldown..
24530                 tb.addField( new Roo.form.ComboBox({
24531                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
24532                         id : 'val',
24533                         fields: ['val', 'display'],
24534                         data : opts  
24535                     }),
24536                     name : '-roo-edit-' + i,
24537                     attrname : i,
24538                     stylename : item.style ? item.style : false,
24539                     displayField: item.displayField ? item.displayField : 'val',
24540                     valueField :  'val',
24541                     typeAhead: false,
24542                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
24543                     editable : false,
24544                     triggerAction: 'all',
24545                     emptyText:'Select',
24546                     selectOnFocus:true,
24547                     width: item.width ? item.width  : 130,
24548                     listeners : {
24549                         'select': function(c, r, i) {
24550                             if (c.stylename) {
24551                                 tb.selectedNode.style[c.stylename] =  r.get('val');
24552                                 return;
24553                             }
24554                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
24555                         }
24556                     }
24557
24558                 }));
24559                 continue;
24560                     
24561                  
24562                 
24563                 tb.addField( new Roo.form.TextField({
24564                     name: i,
24565                     width: 100,
24566                     //allowBlank:false,
24567                     value: ''
24568                 }));
24569                 continue;
24570             }
24571             tb.addField( new Roo.form.TextField({
24572                 name: '-roo-edit-' + i,
24573                 attrname : i,
24574                 
24575                 width: item.width,
24576                 //allowBlank:true,
24577                 value: '',
24578                 listeners: {
24579                     'change' : function(f, nv, ov) {
24580                         tb.selectedNode.setAttribute(f.attrname, nv);
24581                         editorcore.syncValue();
24582                     }
24583                 }
24584             }));
24585              
24586         }
24587         
24588         var _this = this;
24589         
24590         if(nm == 'BODY'){
24591             tb.addSeparator();
24592         
24593             tb.addButton( {
24594                 text: 'Stylesheets',
24595
24596                 listeners : {
24597                     click : function ()
24598                     {
24599                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
24600                     }
24601                 }
24602             });
24603         }
24604         
24605         tb.addFill();
24606         tb.addButton( {
24607             text: 'Remove Tag',
24608     
24609             listeners : {
24610                 click : function ()
24611                 {
24612                     // remove
24613                     // undo does not work.
24614                      
24615                     var sn = tb.selectedNode;
24616                     
24617                     var pn = sn.parentNode;
24618                     
24619                     var stn =  sn.childNodes[0];
24620                     var en = sn.childNodes[sn.childNodes.length - 1 ];
24621                     while (sn.childNodes.length) {
24622                         var node = sn.childNodes[0];
24623                         sn.removeChild(node);
24624                         //Roo.log(node);
24625                         pn.insertBefore(node, sn);
24626                         
24627                     }
24628                     pn.removeChild(sn);
24629                     var range = editorcore.createRange();
24630         
24631                     range.setStart(stn,0);
24632                     range.setEnd(en,0); //????
24633                     //range.selectNode(sel);
24634                     
24635                     
24636                     var selection = editorcore.getSelection();
24637                     selection.removeAllRanges();
24638                     selection.addRange(range);
24639                     
24640                     
24641                     
24642                     //_this.updateToolbar(null, null, pn);
24643                     _this.updateToolbar(null, null, null);
24644                     _this.footDisp.dom.innerHTML = ''; 
24645                 }
24646             }
24647             
24648                     
24649                 
24650             
24651         });
24652         
24653         
24654         tb.el.on('click', function(e){
24655             e.preventDefault(); // what does this do?
24656         });
24657         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
24658         tb.el.hide();
24659         tb.name = nm;
24660         // dont need to disable them... as they will get hidden
24661         return tb;
24662          
24663         
24664     },
24665     buildFooter : function()
24666     {
24667         
24668         var fel = this.editor.wrap.createChild();
24669         this.footer = new Roo.Toolbar(fel);
24670         // toolbar has scrolly on left / right?
24671         var footDisp= new Roo.Toolbar.Fill();
24672         var _t = this;
24673         this.footer.add(
24674             {
24675                 text : '&lt;',
24676                 xtype: 'Button',
24677                 handler : function() {
24678                     _t.footDisp.scrollTo('left',0,true)
24679                 }
24680             }
24681         );
24682         this.footer.add( footDisp );
24683         this.footer.add( 
24684             {
24685                 text : '&gt;',
24686                 xtype: 'Button',
24687                 handler : function() {
24688                     // no animation..
24689                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
24690                 }
24691             }
24692         );
24693         var fel = Roo.get(footDisp.el);
24694         fel.addClass('x-editor-context');
24695         this.footDispWrap = fel; 
24696         this.footDispWrap.overflow  = 'hidden';
24697         
24698         this.footDisp = fel.createChild();
24699         this.footDispWrap.on('click', this.onContextClick, this)
24700         
24701         
24702     },
24703     onContextClick : function (ev,dom)
24704     {
24705         ev.preventDefault();
24706         var  cn = dom.className;
24707         //Roo.log(cn);
24708         if (!cn.match(/x-ed-loc-/)) {
24709             return;
24710         }
24711         var n = cn.split('-').pop();
24712         var ans = this.footerEls;
24713         var sel = ans[n];
24714         
24715          // pick
24716         var range = this.editorcore.createRange();
24717         
24718         range.selectNodeContents(sel);
24719         //range.selectNode(sel);
24720         
24721         
24722         var selection = this.editorcore.getSelection();
24723         selection.removeAllRanges();
24724         selection.addRange(range);
24725         
24726         
24727         
24728         this.updateToolbar(null, null, sel);
24729         
24730         
24731     }
24732     
24733     
24734     
24735     
24736     
24737 });
24738
24739
24740
24741
24742
24743 /*
24744  * Based on:
24745  * Ext JS Library 1.1.1
24746  * Copyright(c) 2006-2007, Ext JS, LLC.
24747  *
24748  * Originally Released Under LGPL - original licence link has changed is not relivant.
24749  *
24750  * Fork - LGPL
24751  * <script type="text/javascript">
24752  */
24753  
24754 /**
24755  * @class Roo.form.BasicForm
24756  * @extends Roo.util.Observable
24757  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
24758  * @constructor
24759  * @param {String/HTMLElement/Roo.Element} el The form element or its id
24760  * @param {Object} config Configuration options
24761  */
24762 Roo.form.BasicForm = function(el, config){
24763     this.allItems = [];
24764     this.childForms = [];
24765     Roo.apply(this, config);
24766     /*
24767      * The Roo.form.Field items in this form.
24768      * @type MixedCollection
24769      */
24770      
24771      
24772     this.items = new Roo.util.MixedCollection(false, function(o){
24773         return o.id || (o.id = Roo.id());
24774     });
24775     this.addEvents({
24776         /**
24777          * @event beforeaction
24778          * Fires before any action is performed. Return false to cancel the action.
24779          * @param {Form} this
24780          * @param {Action} action The action to be performed
24781          */
24782         beforeaction: true,
24783         /**
24784          * @event actionfailed
24785          * Fires when an action fails.
24786          * @param {Form} this
24787          * @param {Action} action The action that failed
24788          */
24789         actionfailed : true,
24790         /**
24791          * @event actioncomplete
24792          * Fires when an action is completed.
24793          * @param {Form} this
24794          * @param {Action} action The action that completed
24795          */
24796         actioncomplete : true
24797     });
24798     if(el){
24799         this.initEl(el);
24800     }
24801     Roo.form.BasicForm.superclass.constructor.call(this);
24802     
24803     Roo.form.BasicForm.popover.apply();
24804 };
24805
24806 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
24807     /**
24808      * @cfg {String} method
24809      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
24810      */
24811     /**
24812      * @cfg {DataReader} reader
24813      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
24814      * This is optional as there is built-in support for processing JSON.
24815      */
24816     /**
24817      * @cfg {DataReader} errorReader
24818      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
24819      * This is completely optional as there is built-in support for processing JSON.
24820      */
24821     /**
24822      * @cfg {String} url
24823      * The URL to use for form actions if one isn't supplied in the action options.
24824      */
24825     /**
24826      * @cfg {Boolean} fileUpload
24827      * Set to true if this form is a file upload.
24828      */
24829      
24830     /**
24831      * @cfg {Object} baseParams
24832      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
24833      */
24834      /**
24835      
24836     /**
24837      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
24838      */
24839     timeout: 30,
24840
24841     // private
24842     activeAction : null,
24843
24844     /**
24845      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
24846      * or setValues() data instead of when the form was first created.
24847      */
24848     trackResetOnLoad : false,
24849     
24850     
24851     /**
24852      * childForms - used for multi-tab forms
24853      * @type {Array}
24854      */
24855     childForms : false,
24856     
24857     /**
24858      * allItems - full list of fields.
24859      * @type {Array}
24860      */
24861     allItems : false,
24862     
24863     /**
24864      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
24865      * element by passing it or its id or mask the form itself by passing in true.
24866      * @type Mixed
24867      */
24868     waitMsgTarget : false,
24869     
24870     /**
24871      * @type Boolean
24872      */
24873     disableMask : false,
24874     
24875     /**
24876      * @cfg {Boolean} errorMask (true|false) default false
24877      */
24878     errorMask : false,
24879     
24880     /**
24881      * @cfg {Number} maskOffset Default 100
24882      */
24883     maskOffset : 100,
24884
24885     // private
24886     initEl : function(el){
24887         this.el = Roo.get(el);
24888         this.id = this.el.id || Roo.id();
24889         this.el.on('submit', this.onSubmit, this);
24890         this.el.addClass('x-form');
24891     },
24892
24893     // private
24894     onSubmit : function(e){
24895         e.stopEvent();
24896     },
24897
24898     /**
24899      * Returns true if client-side validation on the form is successful.
24900      * @return Boolean
24901      */
24902     isValid : function(){
24903         var valid = true;
24904         var target = false;
24905         this.items.each(function(f){
24906             if(f.validate()){
24907                 return;
24908             }
24909             
24910             valid = false;
24911                 
24912             if(!target && f.el.isVisible(true)){
24913                 target = f;
24914             }
24915         });
24916         
24917         if(this.errorMask && !valid){
24918             Roo.form.BasicForm.popover.mask(this, target);
24919         }
24920         
24921         return valid;
24922     },
24923
24924     /**
24925      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
24926      * @return Boolean
24927      */
24928     isDirty : function(){
24929         var dirty = false;
24930         this.items.each(function(f){
24931            if(f.isDirty()){
24932                dirty = true;
24933                return false;
24934            }
24935         });
24936         return dirty;
24937     },
24938     
24939     /**
24940      * Returns true if any fields in this form have changed since their original load. (New version)
24941      * @return Boolean
24942      */
24943     
24944     hasChanged : function()
24945     {
24946         var dirty = false;
24947         this.items.each(function(f){
24948            if(f.hasChanged()){
24949                dirty = true;
24950                return false;
24951            }
24952         });
24953         return dirty;
24954         
24955     },
24956     /**
24957      * Resets all hasChanged to 'false' -
24958      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
24959      * So hasChanged storage is only to be used for this purpose
24960      * @return Boolean
24961      */
24962     resetHasChanged : function()
24963     {
24964         this.items.each(function(f){
24965            f.resetHasChanged();
24966         });
24967         
24968     },
24969     
24970     
24971     /**
24972      * Performs a predefined action (submit or load) or custom actions you define on this form.
24973      * @param {String} actionName The name of the action type
24974      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
24975      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
24976      * accept other config options):
24977      * <pre>
24978 Property          Type             Description
24979 ----------------  ---------------  ----------------------------------------------------------------------------------
24980 url               String           The url for the action (defaults to the form's url)
24981 method            String           The form method to use (defaults to the form's method, or POST if not defined)
24982 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
24983 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
24984                                    validate the form on the client (defaults to false)
24985      * </pre>
24986      * @return {BasicForm} this
24987      */
24988     doAction : function(action, options){
24989         if(typeof action == 'string'){
24990             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
24991         }
24992         if(this.fireEvent('beforeaction', this, action) !== false){
24993             this.beforeAction(action);
24994             action.run.defer(100, action);
24995         }
24996         return this;
24997     },
24998
24999     /**
25000      * Shortcut to do a submit action.
25001      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
25002      * @return {BasicForm} this
25003      */
25004     submit : function(options){
25005         this.doAction('submit', options);
25006         return this;
25007     },
25008
25009     /**
25010      * Shortcut to do a load action.
25011      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
25012      * @return {BasicForm} this
25013      */
25014     load : function(options){
25015         this.doAction('load', options);
25016         return this;
25017     },
25018
25019     /**
25020      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
25021      * @param {Record} record The record to edit
25022      * @return {BasicForm} this
25023      */
25024     updateRecord : function(record){
25025         record.beginEdit();
25026         var fs = record.fields;
25027         fs.each(function(f){
25028             var field = this.findField(f.name);
25029             if(field){
25030                 record.set(f.name, field.getValue());
25031             }
25032         }, this);
25033         record.endEdit();
25034         return this;
25035     },
25036
25037     /**
25038      * Loads an Roo.data.Record into this form.
25039      * @param {Record} record The record to load
25040      * @return {BasicForm} this
25041      */
25042     loadRecord : function(record){
25043         this.setValues(record.data);
25044         return this;
25045     },
25046
25047     // private
25048     beforeAction : function(action){
25049         var o = action.options;
25050         
25051         if(!this.disableMask) {
25052             if(this.waitMsgTarget === true){
25053                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
25054             }else if(this.waitMsgTarget){
25055                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
25056                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
25057             }else {
25058                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
25059             }
25060         }
25061         
25062          
25063     },
25064
25065     // private
25066     afterAction : function(action, success){
25067         this.activeAction = null;
25068         var o = action.options;
25069         
25070         if(!this.disableMask) {
25071             if(this.waitMsgTarget === true){
25072                 this.el.unmask();
25073             }else if(this.waitMsgTarget){
25074                 this.waitMsgTarget.unmask();
25075             }else{
25076                 Roo.MessageBox.updateProgress(1);
25077                 Roo.MessageBox.hide();
25078             }
25079         }
25080         
25081         if(success){
25082             if(o.reset){
25083                 this.reset();
25084             }
25085             Roo.callback(o.success, o.scope, [this, action]);
25086             this.fireEvent('actioncomplete', this, action);
25087             
25088         }else{
25089             
25090             // failure condition..
25091             // we have a scenario where updates need confirming.
25092             // eg. if a locking scenario exists..
25093             // we look for { errors : { needs_confirm : true }} in the response.
25094             if (
25095                 (typeof(action.result) != 'undefined')  &&
25096                 (typeof(action.result.errors) != 'undefined')  &&
25097                 (typeof(action.result.errors.needs_confirm) != 'undefined')
25098            ){
25099                 var _t = this;
25100                 Roo.MessageBox.confirm(
25101                     "Change requires confirmation",
25102                     action.result.errorMsg,
25103                     function(r) {
25104                         if (r != 'yes') {
25105                             return;
25106                         }
25107                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
25108                     }
25109                     
25110                 );
25111                 
25112                 
25113                 
25114                 return;
25115             }
25116             
25117             Roo.callback(o.failure, o.scope, [this, action]);
25118             // show an error message if no failed handler is set..
25119             if (!this.hasListener('actionfailed')) {
25120                 Roo.MessageBox.alert("Error",
25121                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
25122                         action.result.errorMsg :
25123                         "Saving Failed, please check your entries or try again"
25124                 );
25125             }
25126             
25127             this.fireEvent('actionfailed', this, action);
25128         }
25129         
25130     },
25131
25132     /**
25133      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
25134      * @param {String} id The value to search for
25135      * @return Field
25136      */
25137     findField : function(id){
25138         var field = this.items.get(id);
25139         if(!field){
25140             this.items.each(function(f){
25141                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
25142                     field = f;
25143                     return false;
25144                 }
25145             });
25146         }
25147         return field || null;
25148     },
25149
25150     /**
25151      * Add a secondary form to this one, 
25152      * Used to provide tabbed forms. One form is primary, with hidden values 
25153      * which mirror the elements from the other forms.
25154      * 
25155      * @param {Roo.form.Form} form to add.
25156      * 
25157      */
25158     addForm : function(form)
25159     {
25160        
25161         if (this.childForms.indexOf(form) > -1) {
25162             // already added..
25163             return;
25164         }
25165         this.childForms.push(form);
25166         var n = '';
25167         Roo.each(form.allItems, function (fe) {
25168             
25169             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
25170             if (this.findField(n)) { // already added..
25171                 return;
25172             }
25173             var add = new Roo.form.Hidden({
25174                 name : n
25175             });
25176             add.render(this.el);
25177             
25178             this.add( add );
25179         }, this);
25180         
25181     },
25182     /**
25183      * Mark fields in this form invalid in bulk.
25184      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
25185      * @return {BasicForm} this
25186      */
25187     markInvalid : function(errors){
25188         if(errors instanceof Array){
25189             for(var i = 0, len = errors.length; i < len; i++){
25190                 var fieldError = errors[i];
25191                 var f = this.findField(fieldError.id);
25192                 if(f){
25193                     f.markInvalid(fieldError.msg);
25194                 }
25195             }
25196         }else{
25197             var field, id;
25198             for(id in errors){
25199                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
25200                     field.markInvalid(errors[id]);
25201                 }
25202             }
25203         }
25204         Roo.each(this.childForms || [], function (f) {
25205             f.markInvalid(errors);
25206         });
25207         
25208         return this;
25209     },
25210
25211     /**
25212      * Set values for fields in this form in bulk.
25213      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
25214      * @return {BasicForm} this
25215      */
25216     setValues : function(values){
25217         if(values instanceof Array){ // array of objects
25218             for(var i = 0, len = values.length; i < len; i++){
25219                 var v = values[i];
25220                 var f = this.findField(v.id);
25221                 if(f){
25222                     f.setValue(v.value);
25223                     if(this.trackResetOnLoad){
25224                         f.originalValue = f.getValue();
25225                     }
25226                 }
25227             }
25228         }else{ // object hash
25229             var field, id;
25230             for(id in values){
25231                 if(typeof values[id] != 'function' && (field = this.findField(id))){
25232                     
25233                     if (field.setFromData && 
25234                         field.valueField && 
25235                         field.displayField &&
25236                         // combos' with local stores can 
25237                         // be queried via setValue()
25238                         // to set their value..
25239                         (field.store && !field.store.isLocal)
25240                         ) {
25241                         // it's a combo
25242                         var sd = { };
25243                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
25244                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
25245                         field.setFromData(sd);
25246                         
25247                     } else {
25248                         field.setValue(values[id]);
25249                     }
25250                     
25251                     
25252                     if(this.trackResetOnLoad){
25253                         field.originalValue = field.getValue();
25254                     }
25255                 }
25256             }
25257         }
25258         this.resetHasChanged();
25259         
25260         
25261         Roo.each(this.childForms || [], function (f) {
25262             f.setValues(values);
25263             f.resetHasChanged();
25264         });
25265                 
25266         return this;
25267     },
25268  
25269     /**
25270      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
25271      * they are returned as an array.
25272      * @param {Boolean} asString
25273      * @return {Object}
25274      */
25275     getValues : function(asString){
25276         if (this.childForms) {
25277             // copy values from the child forms
25278             Roo.each(this.childForms, function (f) {
25279                 this.setValues(f.getValues());
25280             }, this);
25281         }
25282         
25283         // use formdata
25284         if (typeof(FormData) != 'undefined' && asString !== true) {
25285             var fd = (new FormData(this.el.dom)).entries();
25286             var ret = {};
25287             var ent = fd.next();
25288             while (!ent.done) {
25289                 ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
25290                 ent = fd.next();
25291             };
25292             return ret;
25293         }
25294         
25295         
25296         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
25297         if(asString === true){
25298             return fs;
25299         }
25300         return Roo.urlDecode(fs);
25301     },
25302     
25303     /**
25304      * Returns the fields in this form as an object with key/value pairs. 
25305      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
25306      * @return {Object}
25307      */
25308     getFieldValues : function(with_hidden)
25309     {
25310         if (this.childForms) {
25311             // copy values from the child forms
25312             // should this call getFieldValues - probably not as we do not currently copy
25313             // hidden fields when we generate..
25314             Roo.each(this.childForms, function (f) {
25315                 this.setValues(f.getValues());
25316             }, this);
25317         }
25318         
25319         var ret = {};
25320         this.items.each(function(f){
25321             if (!f.getName()) {
25322                 return;
25323             }
25324             var v = f.getValue();
25325             if (f.inputType =='radio') {
25326                 if (typeof(ret[f.getName()]) == 'undefined') {
25327                     ret[f.getName()] = ''; // empty..
25328                 }
25329                 
25330                 if (!f.el.dom.checked) {
25331                     return;
25332                     
25333                 }
25334                 v = f.el.dom.value;
25335                 
25336             }
25337             
25338             // not sure if this supported any more..
25339             if ((typeof(v) == 'object') && f.getRawValue) {
25340                 v = f.getRawValue() ; // dates..
25341             }
25342             // combo boxes where name != hiddenName...
25343             if (f.name != f.getName()) {
25344                 ret[f.name] = f.getRawValue();
25345             }
25346             ret[f.getName()] = v;
25347         });
25348         
25349         return ret;
25350     },
25351
25352     /**
25353      * Clears all invalid messages in this form.
25354      * @return {BasicForm} this
25355      */
25356     clearInvalid : function(){
25357         this.items.each(function(f){
25358            f.clearInvalid();
25359         });
25360         
25361         Roo.each(this.childForms || [], function (f) {
25362             f.clearInvalid();
25363         });
25364         
25365         
25366         return this;
25367     },
25368
25369     /**
25370      * Resets this form.
25371      * @return {BasicForm} this
25372      */
25373     reset : function(){
25374         this.items.each(function(f){
25375             f.reset();
25376         });
25377         
25378         Roo.each(this.childForms || [], function (f) {
25379             f.reset();
25380         });
25381         this.resetHasChanged();
25382         
25383         return this;
25384     },
25385
25386     /**
25387      * Add Roo.form components to this form.
25388      * @param {Field} field1
25389      * @param {Field} field2 (optional)
25390      * @param {Field} etc (optional)
25391      * @return {BasicForm} this
25392      */
25393     add : function(){
25394         this.items.addAll(Array.prototype.slice.call(arguments, 0));
25395         return this;
25396     },
25397
25398
25399     /**
25400      * Removes a field from the items collection (does NOT remove its markup).
25401      * @param {Field} field
25402      * @return {BasicForm} this
25403      */
25404     remove : function(field){
25405         this.items.remove(field);
25406         return this;
25407     },
25408
25409     /**
25410      * Looks at the fields in this form, checks them for an id attribute,
25411      * and calls applyTo on the existing dom element with that id.
25412      * @return {BasicForm} this
25413      */
25414     render : function(){
25415         this.items.each(function(f){
25416             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
25417                 f.applyTo(f.id);
25418             }
25419         });
25420         return this;
25421     },
25422
25423     /**
25424      * Calls {@link Ext#apply} for all fields in this form with the passed object.
25425      * @param {Object} values
25426      * @return {BasicForm} this
25427      */
25428     applyToFields : function(o){
25429         this.items.each(function(f){
25430            Roo.apply(f, o);
25431         });
25432         return this;
25433     },
25434
25435     /**
25436      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
25437      * @param {Object} values
25438      * @return {BasicForm} this
25439      */
25440     applyIfToFields : function(o){
25441         this.items.each(function(f){
25442            Roo.applyIf(f, o);
25443         });
25444         return this;
25445     }
25446 });
25447
25448 // back compat
25449 Roo.BasicForm = Roo.form.BasicForm;
25450
25451 Roo.apply(Roo.form.BasicForm, {
25452     
25453     popover : {
25454         
25455         padding : 5,
25456         
25457         isApplied : false,
25458         
25459         isMasked : false,
25460         
25461         form : false,
25462         
25463         target : false,
25464         
25465         intervalID : false,
25466         
25467         maskEl : false,
25468         
25469         apply : function()
25470         {
25471             if(this.isApplied){
25472                 return;
25473             }
25474             
25475             this.maskEl = {
25476                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
25477                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
25478                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
25479                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
25480             };
25481             
25482             this.maskEl.top.enableDisplayMode("block");
25483             this.maskEl.left.enableDisplayMode("block");
25484             this.maskEl.bottom.enableDisplayMode("block");
25485             this.maskEl.right.enableDisplayMode("block");
25486             
25487             Roo.get(document.body).on('click', function(){
25488                 this.unmask();
25489             }, this);
25490             
25491             Roo.get(document.body).on('touchstart', function(){
25492                 this.unmask();
25493             }, this);
25494             
25495             this.isApplied = true
25496         },
25497         
25498         mask : function(form, target)
25499         {
25500             this.form = form;
25501             
25502             this.target = target;
25503             
25504             if(!this.form.errorMask || !target.el){
25505                 return;
25506             }
25507             
25508             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
25509             
25510             var ot = this.target.el.calcOffsetsTo(scrollable);
25511             
25512             var scrollTo = ot[1] - this.form.maskOffset;
25513             
25514             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
25515             
25516             scrollable.scrollTo('top', scrollTo);
25517             
25518             var el = this.target.wrap || this.target.el;
25519             
25520             var box = el.getBox();
25521             
25522             this.maskEl.top.setStyle('position', 'absolute');
25523             this.maskEl.top.setStyle('z-index', 10000);
25524             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
25525             this.maskEl.top.setLeft(0);
25526             this.maskEl.top.setTop(0);
25527             this.maskEl.top.show();
25528             
25529             this.maskEl.left.setStyle('position', 'absolute');
25530             this.maskEl.left.setStyle('z-index', 10000);
25531             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
25532             this.maskEl.left.setLeft(0);
25533             this.maskEl.left.setTop(box.y - this.padding);
25534             this.maskEl.left.show();
25535
25536             this.maskEl.bottom.setStyle('position', 'absolute');
25537             this.maskEl.bottom.setStyle('z-index', 10000);
25538             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
25539             this.maskEl.bottom.setLeft(0);
25540             this.maskEl.bottom.setTop(box.bottom + this.padding);
25541             this.maskEl.bottom.show();
25542
25543             this.maskEl.right.setStyle('position', 'absolute');
25544             this.maskEl.right.setStyle('z-index', 10000);
25545             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
25546             this.maskEl.right.setLeft(box.right + this.padding);
25547             this.maskEl.right.setTop(box.y - this.padding);
25548             this.maskEl.right.show();
25549
25550             this.intervalID = window.setInterval(function() {
25551                 Roo.form.BasicForm.popover.unmask();
25552             }, 10000);
25553
25554             window.onwheel = function(){ return false;};
25555             
25556             (function(){ this.isMasked = true; }).defer(500, this);
25557             
25558         },
25559         
25560         unmask : function()
25561         {
25562             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
25563                 return;
25564             }
25565             
25566             this.maskEl.top.setStyle('position', 'absolute');
25567             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
25568             this.maskEl.top.hide();
25569
25570             this.maskEl.left.setStyle('position', 'absolute');
25571             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
25572             this.maskEl.left.hide();
25573
25574             this.maskEl.bottom.setStyle('position', 'absolute');
25575             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
25576             this.maskEl.bottom.hide();
25577
25578             this.maskEl.right.setStyle('position', 'absolute');
25579             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
25580             this.maskEl.right.hide();
25581             
25582             window.onwheel = function(){ return true;};
25583             
25584             if(this.intervalID){
25585                 window.clearInterval(this.intervalID);
25586                 this.intervalID = false;
25587             }
25588             
25589             this.isMasked = false;
25590             
25591         }
25592         
25593     }
25594     
25595 });/*
25596  * Based on:
25597  * Ext JS Library 1.1.1
25598  * Copyright(c) 2006-2007, Ext JS, LLC.
25599  *
25600  * Originally Released Under LGPL - original licence link has changed is not relivant.
25601  *
25602  * Fork - LGPL
25603  * <script type="text/javascript">
25604  */
25605
25606 /**
25607  * @class Roo.form.Form
25608  * @extends Roo.form.BasicForm
25609  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
25610  * @constructor
25611  * @param {Object} config Configuration options
25612  */
25613 Roo.form.Form = function(config){
25614     var xitems =  [];
25615     if (config.items) {
25616         xitems = config.items;
25617         delete config.items;
25618     }
25619    
25620     
25621     Roo.form.Form.superclass.constructor.call(this, null, config);
25622     this.url = this.url || this.action;
25623     if(!this.root){
25624         this.root = new Roo.form.Layout(Roo.applyIf({
25625             id: Roo.id()
25626         }, config));
25627     }
25628     this.active = this.root;
25629     /**
25630      * Array of all the buttons that have been added to this form via {@link addButton}
25631      * @type Array
25632      */
25633     this.buttons = [];
25634     this.allItems = [];
25635     this.addEvents({
25636         /**
25637          * @event clientvalidation
25638          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
25639          * @param {Form} this
25640          * @param {Boolean} valid true if the form has passed client-side validation
25641          */
25642         clientvalidation: true,
25643         /**
25644          * @event rendered
25645          * Fires when the form is rendered
25646          * @param {Roo.form.Form} form
25647          */
25648         rendered : true
25649     });
25650     
25651     if (this.progressUrl) {
25652             // push a hidden field onto the list of fields..
25653             this.addxtype( {
25654                     xns: Roo.form, 
25655                     xtype : 'Hidden', 
25656                     name : 'UPLOAD_IDENTIFIER' 
25657             });
25658         }
25659         
25660     
25661     Roo.each(xitems, this.addxtype, this);
25662     
25663 };
25664
25665 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
25666     /**
25667      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
25668      */
25669     /**
25670      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
25671      */
25672     /**
25673      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
25674      */
25675     buttonAlign:'center',
25676
25677     /**
25678      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
25679      */
25680     minButtonWidth:75,
25681
25682     /**
25683      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
25684      * This property cascades to child containers if not set.
25685      */
25686     labelAlign:'left',
25687
25688     /**
25689      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
25690      * fires a looping event with that state. This is required to bind buttons to the valid
25691      * state using the config value formBind:true on the button.
25692      */
25693     monitorValid : false,
25694
25695     /**
25696      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
25697      */
25698     monitorPoll : 200,
25699     
25700     /**
25701      * @cfg {String} progressUrl - Url to return progress data 
25702      */
25703     
25704     progressUrl : false,
25705     /**
25706      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
25707      * sending a formdata with extra parameters - eg uploaded elements.
25708      */
25709     
25710     formData : false,
25711     
25712     /**
25713      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
25714      * fields are added and the column is closed. If no fields are passed the column remains open
25715      * until end() is called.
25716      * @param {Object} config The config to pass to the column
25717      * @param {Field} field1 (optional)
25718      * @param {Field} field2 (optional)
25719      * @param {Field} etc (optional)
25720      * @return Column The column container object
25721      */
25722     column : function(c){
25723         var col = new Roo.form.Column(c);
25724         this.start(col);
25725         if(arguments.length > 1){ // duplicate code required because of Opera
25726             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25727             this.end();
25728         }
25729         return col;
25730     },
25731
25732     /**
25733      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
25734      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
25735      * until end() is called.
25736      * @param {Object} config The config to pass to the fieldset
25737      * @param {Field} field1 (optional)
25738      * @param {Field} field2 (optional)
25739      * @param {Field} etc (optional)
25740      * @return FieldSet The fieldset container object
25741      */
25742     fieldset : function(c){
25743         var fs = new Roo.form.FieldSet(c);
25744         this.start(fs);
25745         if(arguments.length > 1){ // duplicate code required because of Opera
25746             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25747             this.end();
25748         }
25749         return fs;
25750     },
25751
25752     /**
25753      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
25754      * fields are added and the container is closed. If no fields are passed the container remains open
25755      * until end() is called.
25756      * @param {Object} config The config to pass to the Layout
25757      * @param {Field} field1 (optional)
25758      * @param {Field} field2 (optional)
25759      * @param {Field} etc (optional)
25760      * @return Layout The container object
25761      */
25762     container : function(c){
25763         var l = new Roo.form.Layout(c);
25764         this.start(l);
25765         if(arguments.length > 1){ // duplicate code required because of Opera
25766             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
25767             this.end();
25768         }
25769         return l;
25770     },
25771
25772     /**
25773      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
25774      * @param {Object} container A Roo.form.Layout or subclass of Layout
25775      * @return {Form} this
25776      */
25777     start : function(c){
25778         // cascade label info
25779         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
25780         this.active.stack.push(c);
25781         c.ownerCt = this.active;
25782         this.active = c;
25783         return this;
25784     },
25785
25786     /**
25787      * Closes the current open container
25788      * @return {Form} this
25789      */
25790     end : function(){
25791         if(this.active == this.root){
25792             return this;
25793         }
25794         this.active = this.active.ownerCt;
25795         return this;
25796     },
25797
25798     /**
25799      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
25800      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
25801      * as the label of the field.
25802      * @param {Field} field1
25803      * @param {Field} field2 (optional)
25804      * @param {Field} etc. (optional)
25805      * @return {Form} this
25806      */
25807     add : function(){
25808         this.active.stack.push.apply(this.active.stack, arguments);
25809         this.allItems.push.apply(this.allItems,arguments);
25810         var r = [];
25811         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
25812             if(a[i].isFormField){
25813                 r.push(a[i]);
25814             }
25815         }
25816         if(r.length > 0){
25817             Roo.form.Form.superclass.add.apply(this, r);
25818         }
25819         return this;
25820     },
25821     
25822
25823     
25824     
25825     
25826      /**
25827      * Find any element that has been added to a form, using it's ID or name
25828      * This can include framesets, columns etc. along with regular fields..
25829      * @param {String} id - id or name to find.
25830      
25831      * @return {Element} e - or false if nothing found.
25832      */
25833     findbyId : function(id)
25834     {
25835         var ret = false;
25836         if (!id) {
25837             return ret;
25838         }
25839         Roo.each(this.allItems, function(f){
25840             if (f.id == id || f.name == id ){
25841                 ret = f;
25842                 return false;
25843             }
25844         });
25845         return ret;
25846     },
25847
25848     
25849     
25850     /**
25851      * Render this form into the passed container. This should only be called once!
25852      * @param {String/HTMLElement/Element} container The element this component should be rendered into
25853      * @return {Form} this
25854      */
25855     render : function(ct)
25856     {
25857         
25858         
25859         
25860         ct = Roo.get(ct);
25861         var o = this.autoCreate || {
25862             tag: 'form',
25863             method : this.method || 'POST',
25864             id : this.id || Roo.id()
25865         };
25866         this.initEl(ct.createChild(o));
25867
25868         this.root.render(this.el);
25869         
25870        
25871              
25872         this.items.each(function(f){
25873             f.render('x-form-el-'+f.id);
25874         });
25875
25876         if(this.buttons.length > 0){
25877             // tables are required to maintain order and for correct IE layout
25878             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
25879                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
25880                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
25881             }}, null, true);
25882             var tr = tb.getElementsByTagName('tr')[0];
25883             for(var i = 0, len = this.buttons.length; i < len; i++) {
25884                 var b = this.buttons[i];
25885                 var td = document.createElement('td');
25886                 td.className = 'x-form-btn-td';
25887                 b.render(tr.appendChild(td));
25888             }
25889         }
25890         if(this.monitorValid){ // initialize after render
25891             this.startMonitoring();
25892         }
25893         this.fireEvent('rendered', this);
25894         return this;
25895     },
25896
25897     /**
25898      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
25899      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
25900      * object or a valid Roo.DomHelper element config
25901      * @param {Function} handler The function called when the button is clicked
25902      * @param {Object} scope (optional) The scope of the handler function
25903      * @return {Roo.Button}
25904      */
25905     addButton : function(config, handler, scope){
25906         var bc = {
25907             handler: handler,
25908             scope: scope,
25909             minWidth: this.minButtonWidth,
25910             hideParent:true
25911         };
25912         if(typeof config == "string"){
25913             bc.text = config;
25914         }else{
25915             Roo.apply(bc, config);
25916         }
25917         var btn = new Roo.Button(null, bc);
25918         this.buttons.push(btn);
25919         return btn;
25920     },
25921
25922      /**
25923      * Adds a series of form elements (using the xtype property as the factory method.
25924      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
25925      * @param {Object} config 
25926      */
25927     
25928     addxtype : function()
25929     {
25930         var ar = Array.prototype.slice.call(arguments, 0);
25931         var ret = false;
25932         for(var i = 0; i < ar.length; i++) {
25933             if (!ar[i]) {
25934                 continue; // skip -- if this happends something invalid got sent, we 
25935                 // should ignore it, as basically that interface element will not show up
25936                 // and that should be pretty obvious!!
25937             }
25938             
25939             if (Roo.form[ar[i].xtype]) {
25940                 ar[i].form = this;
25941                 var fe = Roo.factory(ar[i], Roo.form);
25942                 if (!ret) {
25943                     ret = fe;
25944                 }
25945                 fe.form = this;
25946                 if (fe.store) {
25947                     fe.store.form = this;
25948                 }
25949                 if (fe.isLayout) {  
25950                          
25951                     this.start(fe);
25952                     this.allItems.push(fe);
25953                     if (fe.items && fe.addxtype) {
25954                         fe.addxtype.apply(fe, fe.items);
25955                         delete fe.items;
25956                     }
25957                      this.end();
25958                     continue;
25959                 }
25960                 
25961                 
25962                  
25963                 this.add(fe);
25964               //  console.log('adding ' + ar[i].xtype);
25965             }
25966             if (ar[i].xtype == 'Button') {  
25967                 //console.log('adding button');
25968                 //console.log(ar[i]);
25969                 this.addButton(ar[i]);
25970                 this.allItems.push(fe);
25971                 continue;
25972             }
25973             
25974             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
25975                 alert('end is not supported on xtype any more, use items');
25976             //    this.end();
25977             //    //console.log('adding end');
25978             }
25979             
25980         }
25981         return ret;
25982     },
25983     
25984     /**
25985      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
25986      * option "monitorValid"
25987      */
25988     startMonitoring : function(){
25989         if(!this.bound){
25990             this.bound = true;
25991             Roo.TaskMgr.start({
25992                 run : this.bindHandler,
25993                 interval : this.monitorPoll || 200,
25994                 scope: this
25995             });
25996         }
25997     },
25998
25999     /**
26000      * Stops monitoring of the valid state of this form
26001      */
26002     stopMonitoring : function(){
26003         this.bound = false;
26004     },
26005
26006     // private
26007     bindHandler : function(){
26008         if(!this.bound){
26009             return false; // stops binding
26010         }
26011         var valid = true;
26012         this.items.each(function(f){
26013             if(!f.isValid(true)){
26014                 valid = false;
26015                 return false;
26016             }
26017         });
26018         for(var i = 0, len = this.buttons.length; i < len; i++){
26019             var btn = this.buttons[i];
26020             if(btn.formBind === true && btn.disabled === valid){
26021                 btn.setDisabled(!valid);
26022             }
26023         }
26024         this.fireEvent('clientvalidation', this, valid);
26025     }
26026     
26027     
26028     
26029     
26030     
26031     
26032     
26033     
26034 });
26035
26036
26037 // back compat
26038 Roo.Form = Roo.form.Form;
26039 /*
26040  * Based on:
26041  * Ext JS Library 1.1.1
26042  * Copyright(c) 2006-2007, Ext JS, LLC.
26043  *
26044  * Originally Released Under LGPL - original licence link has changed is not relivant.
26045  *
26046  * Fork - LGPL
26047  * <script type="text/javascript">
26048  */
26049
26050 // as we use this in bootstrap.
26051 Roo.namespace('Roo.form');
26052  /**
26053  * @class Roo.form.Action
26054  * Internal Class used to handle form actions
26055  * @constructor
26056  * @param {Roo.form.BasicForm} el The form element or its id
26057  * @param {Object} config Configuration options
26058  */
26059
26060  
26061  
26062 // define the action interface
26063 Roo.form.Action = function(form, options){
26064     this.form = form;
26065     this.options = options || {};
26066 };
26067 /**
26068  * Client Validation Failed
26069  * @const 
26070  */
26071 Roo.form.Action.CLIENT_INVALID = 'client';
26072 /**
26073  * Server Validation Failed
26074  * @const 
26075  */
26076 Roo.form.Action.SERVER_INVALID = 'server';
26077  /**
26078  * Connect to Server Failed
26079  * @const 
26080  */
26081 Roo.form.Action.CONNECT_FAILURE = 'connect';
26082 /**
26083  * Reading Data from Server Failed
26084  * @const 
26085  */
26086 Roo.form.Action.LOAD_FAILURE = 'load';
26087
26088 Roo.form.Action.prototype = {
26089     type : 'default',
26090     failureType : undefined,
26091     response : undefined,
26092     result : undefined,
26093
26094     // interface method
26095     run : function(options){
26096
26097     },
26098
26099     // interface method
26100     success : function(response){
26101
26102     },
26103
26104     // interface method
26105     handleResponse : function(response){
26106
26107     },
26108
26109     // default connection failure
26110     failure : function(response){
26111         
26112         this.response = response;
26113         this.failureType = Roo.form.Action.CONNECT_FAILURE;
26114         this.form.afterAction(this, false);
26115     },
26116
26117     processResponse : function(response){
26118         this.response = response;
26119         if(!response.responseText){
26120             return true;
26121         }
26122         this.result = this.handleResponse(response);
26123         return this.result;
26124     },
26125
26126     // utility functions used internally
26127     getUrl : function(appendParams){
26128         var url = this.options.url || this.form.url || this.form.el.dom.action;
26129         if(appendParams){
26130             var p = this.getParams();
26131             if(p){
26132                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
26133             }
26134         }
26135         return url;
26136     },
26137
26138     getMethod : function(){
26139         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
26140     },
26141
26142     getParams : function(){
26143         var bp = this.form.baseParams;
26144         var p = this.options.params;
26145         if(p){
26146             if(typeof p == "object"){
26147                 p = Roo.urlEncode(Roo.applyIf(p, bp));
26148             }else if(typeof p == 'string' && bp){
26149                 p += '&' + Roo.urlEncode(bp);
26150             }
26151         }else if(bp){
26152             p = Roo.urlEncode(bp);
26153         }
26154         return p;
26155     },
26156
26157     createCallback : function(){
26158         return {
26159             success: this.success,
26160             failure: this.failure,
26161             scope: this,
26162             timeout: (this.form.timeout*1000),
26163             upload: this.form.fileUpload ? this.success : undefined
26164         };
26165     }
26166 };
26167
26168 Roo.form.Action.Submit = function(form, options){
26169     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
26170 };
26171
26172 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
26173     type : 'submit',
26174
26175     haveProgress : false,
26176     uploadComplete : false,
26177     
26178     // uploadProgress indicator.
26179     uploadProgress : function()
26180     {
26181         if (!this.form.progressUrl) {
26182             return;
26183         }
26184         
26185         if (!this.haveProgress) {
26186             Roo.MessageBox.progress("Uploading", "Uploading");
26187         }
26188         if (this.uploadComplete) {
26189            Roo.MessageBox.hide();
26190            return;
26191         }
26192         
26193         this.haveProgress = true;
26194    
26195         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
26196         
26197         var c = new Roo.data.Connection();
26198         c.request({
26199             url : this.form.progressUrl,
26200             params: {
26201                 id : uid
26202             },
26203             method: 'GET',
26204             success : function(req){
26205                //console.log(data);
26206                 var rdata = false;
26207                 var edata;
26208                 try  {
26209                    rdata = Roo.decode(req.responseText)
26210                 } catch (e) {
26211                     Roo.log("Invalid data from server..");
26212                     Roo.log(edata);
26213                     return;
26214                 }
26215                 if (!rdata || !rdata.success) {
26216                     Roo.log(rdata);
26217                     Roo.MessageBox.alert(Roo.encode(rdata));
26218                     return;
26219                 }
26220                 var data = rdata.data;
26221                 
26222                 if (this.uploadComplete) {
26223                    Roo.MessageBox.hide();
26224                    return;
26225                 }
26226                    
26227                 if (data){
26228                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
26229                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
26230                     );
26231                 }
26232                 this.uploadProgress.defer(2000,this);
26233             },
26234        
26235             failure: function(data) {
26236                 Roo.log('progress url failed ');
26237                 Roo.log(data);
26238             },
26239             scope : this
26240         });
26241            
26242     },
26243     
26244     
26245     run : function()
26246     {
26247         // run get Values on the form, so it syncs any secondary forms.
26248         this.form.getValues();
26249         
26250         var o = this.options;
26251         var method = this.getMethod();
26252         var isPost = method == 'POST';
26253         if(o.clientValidation === false || this.form.isValid()){
26254             
26255             if (this.form.progressUrl) {
26256                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
26257                     (new Date() * 1) + '' + Math.random());
26258                     
26259             } 
26260             
26261             
26262             Roo.Ajax.request(Roo.apply(this.createCallback(), {
26263                 form:this.form.el.dom,
26264                 url:this.getUrl(!isPost),
26265                 method: method,
26266                 params:isPost ? this.getParams() : null,
26267                 isUpload: this.form.fileUpload,
26268                 formData : this.form.formData
26269             }));
26270             
26271             this.uploadProgress();
26272
26273         }else if (o.clientValidation !== false){ // client validation failed
26274             this.failureType = Roo.form.Action.CLIENT_INVALID;
26275             this.form.afterAction(this, false);
26276         }
26277     },
26278
26279     success : function(response)
26280     {
26281         this.uploadComplete= true;
26282         if (this.haveProgress) {
26283             Roo.MessageBox.hide();
26284         }
26285         
26286         
26287         var result = this.processResponse(response);
26288         if(result === true || result.success){
26289             this.form.afterAction(this, true);
26290             return;
26291         }
26292         if(result.errors){
26293             this.form.markInvalid(result.errors);
26294             this.failureType = Roo.form.Action.SERVER_INVALID;
26295         }
26296         this.form.afterAction(this, false);
26297     },
26298     failure : function(response)
26299     {
26300         this.uploadComplete= true;
26301         if (this.haveProgress) {
26302             Roo.MessageBox.hide();
26303         }
26304         
26305         this.response = response;
26306         this.failureType = Roo.form.Action.CONNECT_FAILURE;
26307         this.form.afterAction(this, false);
26308     },
26309     
26310     handleResponse : function(response){
26311         if(this.form.errorReader){
26312             var rs = this.form.errorReader.read(response);
26313             var errors = [];
26314             if(rs.records){
26315                 for(var i = 0, len = rs.records.length; i < len; i++) {
26316                     var r = rs.records[i];
26317                     errors[i] = r.data;
26318                 }
26319             }
26320             if(errors.length < 1){
26321                 errors = null;
26322             }
26323             return {
26324                 success : rs.success,
26325                 errors : errors
26326             };
26327         }
26328         var ret = false;
26329         try {
26330             ret = Roo.decode(response.responseText);
26331         } catch (e) {
26332             ret = {
26333                 success: false,
26334                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
26335                 errors : []
26336             };
26337         }
26338         return ret;
26339         
26340     }
26341 });
26342
26343
26344 Roo.form.Action.Load = function(form, options){
26345     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
26346     this.reader = this.form.reader;
26347 };
26348
26349 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
26350     type : 'load',
26351
26352     run : function(){
26353         
26354         Roo.Ajax.request(Roo.apply(
26355                 this.createCallback(), {
26356                     method:this.getMethod(),
26357                     url:this.getUrl(false),
26358                     params:this.getParams()
26359         }));
26360     },
26361
26362     success : function(response){
26363         
26364         var result = this.processResponse(response);
26365         if(result === true || !result.success || !result.data){
26366             this.failureType = Roo.form.Action.LOAD_FAILURE;
26367             this.form.afterAction(this, false);
26368             return;
26369         }
26370         this.form.clearInvalid();
26371         this.form.setValues(result.data);
26372         this.form.afterAction(this, true);
26373     },
26374
26375     handleResponse : function(response){
26376         if(this.form.reader){
26377             var rs = this.form.reader.read(response);
26378             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
26379             return {
26380                 success : rs.success,
26381                 data : data
26382             };
26383         }
26384         return Roo.decode(response.responseText);
26385     }
26386 });
26387
26388 Roo.form.Action.ACTION_TYPES = {
26389     'load' : Roo.form.Action.Load,
26390     'submit' : Roo.form.Action.Submit
26391 };/*
26392  * Based on:
26393  * Ext JS Library 1.1.1
26394  * Copyright(c) 2006-2007, Ext JS, LLC.
26395  *
26396  * Originally Released Under LGPL - original licence link has changed is not relivant.
26397  *
26398  * Fork - LGPL
26399  * <script type="text/javascript">
26400  */
26401  
26402 /**
26403  * @class Roo.form.Layout
26404  * @extends Roo.Component
26405  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
26406  * @constructor
26407  * @param {Object} config Configuration options
26408  */
26409 Roo.form.Layout = function(config){
26410     var xitems = [];
26411     if (config.items) {
26412         xitems = config.items;
26413         delete config.items;
26414     }
26415     Roo.form.Layout.superclass.constructor.call(this, config);
26416     this.stack = [];
26417     Roo.each(xitems, this.addxtype, this);
26418      
26419 };
26420
26421 Roo.extend(Roo.form.Layout, Roo.Component, {
26422     /**
26423      * @cfg {String/Object} autoCreate
26424      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
26425      */
26426     /**
26427      * @cfg {String/Object/Function} style
26428      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
26429      * a function which returns such a specification.
26430      */
26431     /**
26432      * @cfg {String} labelAlign
26433      * Valid values are "left," "top" and "right" (defaults to "left")
26434      */
26435     /**
26436      * @cfg {Number} labelWidth
26437      * Fixed width in pixels of all field labels (defaults to undefined)
26438      */
26439     /**
26440      * @cfg {Boolean} clear
26441      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
26442      */
26443     clear : true,
26444     /**
26445      * @cfg {String} labelSeparator
26446      * The separator to use after field labels (defaults to ':')
26447      */
26448     labelSeparator : ':',
26449     /**
26450      * @cfg {Boolean} hideLabels
26451      * True to suppress the display of field labels in this layout (defaults to false)
26452      */
26453     hideLabels : false,
26454
26455     // private
26456     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
26457     
26458     isLayout : true,
26459     
26460     // private
26461     onRender : function(ct, position){
26462         if(this.el){ // from markup
26463             this.el = Roo.get(this.el);
26464         }else {  // generate
26465             var cfg = this.getAutoCreate();
26466             this.el = ct.createChild(cfg, position);
26467         }
26468         if(this.style){
26469             this.el.applyStyles(this.style);
26470         }
26471         if(this.labelAlign){
26472             this.el.addClass('x-form-label-'+this.labelAlign);
26473         }
26474         if(this.hideLabels){
26475             this.labelStyle = "display:none";
26476             this.elementStyle = "padding-left:0;";
26477         }else{
26478             if(typeof this.labelWidth == 'number'){
26479                 this.labelStyle = "width:"+this.labelWidth+"px;";
26480                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
26481             }
26482             if(this.labelAlign == 'top'){
26483                 this.labelStyle = "width:auto;";
26484                 this.elementStyle = "padding-left:0;";
26485             }
26486         }
26487         var stack = this.stack;
26488         var slen = stack.length;
26489         if(slen > 0){
26490             if(!this.fieldTpl){
26491                 var t = new Roo.Template(
26492                     '<div class="x-form-item {5}">',
26493                         '<label for="{0}" style="{2}">{1}{4}</label>',
26494                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26495                         '</div>',
26496                     '</div><div class="x-form-clear-left"></div>'
26497                 );
26498                 t.disableFormats = true;
26499                 t.compile();
26500                 Roo.form.Layout.prototype.fieldTpl = t;
26501             }
26502             for(var i = 0; i < slen; i++) {
26503                 if(stack[i].isFormField){
26504                     this.renderField(stack[i]);
26505                 }else{
26506                     this.renderComponent(stack[i]);
26507                 }
26508             }
26509         }
26510         if(this.clear){
26511             this.el.createChild({cls:'x-form-clear'});
26512         }
26513     },
26514
26515     // private
26516     renderField : function(f){
26517         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
26518                f.id, //0
26519                f.fieldLabel, //1
26520                f.labelStyle||this.labelStyle||'', //2
26521                this.elementStyle||'', //3
26522                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
26523                f.itemCls||this.itemCls||''  //5
26524        ], true).getPrevSibling());
26525     },
26526
26527     // private
26528     renderComponent : function(c){
26529         c.render(c.isLayout ? this.el : this.el.createChild());    
26530     },
26531     /**
26532      * Adds a object form elements (using the xtype property as the factory method.)
26533      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
26534      * @param {Object} config 
26535      */
26536     addxtype : function(o)
26537     {
26538         // create the lement.
26539         o.form = this.form;
26540         var fe = Roo.factory(o, Roo.form);
26541         this.form.allItems.push(fe);
26542         this.stack.push(fe);
26543         
26544         if (fe.isFormField) {
26545             this.form.items.add(fe);
26546         }
26547          
26548         return fe;
26549     }
26550 });
26551
26552 /**
26553  * @class Roo.form.Column
26554  * @extends Roo.form.Layout
26555  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
26556  * @constructor
26557  * @param {Object} config Configuration options
26558  */
26559 Roo.form.Column = function(config){
26560     Roo.form.Column.superclass.constructor.call(this, config);
26561 };
26562
26563 Roo.extend(Roo.form.Column, Roo.form.Layout, {
26564     /**
26565      * @cfg {Number/String} width
26566      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26567      */
26568     /**
26569      * @cfg {String/Object} autoCreate
26570      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
26571      */
26572
26573     // private
26574     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
26575
26576     // private
26577     onRender : function(ct, position){
26578         Roo.form.Column.superclass.onRender.call(this, ct, position);
26579         if(this.width){
26580             this.el.setWidth(this.width);
26581         }
26582     }
26583 });
26584
26585
26586 /**
26587  * @class Roo.form.Row
26588  * @extends Roo.form.Layout
26589  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
26590  * @constructor
26591  * @param {Object} config Configuration options
26592  */
26593
26594  
26595 Roo.form.Row = function(config){
26596     Roo.form.Row.superclass.constructor.call(this, config);
26597 };
26598  
26599 Roo.extend(Roo.form.Row, Roo.form.Layout, {
26600       /**
26601      * @cfg {Number/String} width
26602      * The fixed width of the column in pixels or CSS value (defaults to "auto")
26603      */
26604     /**
26605      * @cfg {Number/String} height
26606      * The fixed height of the column in pixels or CSS value (defaults to "auto")
26607      */
26608     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
26609     
26610     padWidth : 20,
26611     // private
26612     onRender : function(ct, position){
26613         //console.log('row render');
26614         if(!this.rowTpl){
26615             var t = new Roo.Template(
26616                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
26617                     '<label for="{0}" style="{2}">{1}{4}</label>',
26618                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
26619                     '</div>',
26620                 '</div>'
26621             );
26622             t.disableFormats = true;
26623             t.compile();
26624             Roo.form.Layout.prototype.rowTpl = t;
26625         }
26626         this.fieldTpl = this.rowTpl;
26627         
26628         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
26629         var labelWidth = 100;
26630         
26631         if ((this.labelAlign != 'top')) {
26632             if (typeof this.labelWidth == 'number') {
26633                 labelWidth = this.labelWidth
26634             }
26635             this.padWidth =  20 + labelWidth;
26636             
26637         }
26638         
26639         Roo.form.Column.superclass.onRender.call(this, ct, position);
26640         if(this.width){
26641             this.el.setWidth(this.width);
26642         }
26643         if(this.height){
26644             this.el.setHeight(this.height);
26645         }
26646     },
26647     
26648     // private
26649     renderField : function(f){
26650         f.fieldEl = this.fieldTpl.append(this.el, [
26651                f.id, f.fieldLabel,
26652                f.labelStyle||this.labelStyle||'',
26653                this.elementStyle||'',
26654                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
26655                f.itemCls||this.itemCls||'',
26656                f.width ? f.width + this.padWidth : 160 + this.padWidth
26657        ],true);
26658     }
26659 });
26660  
26661
26662 /**
26663  * @class Roo.form.FieldSet
26664  * @extends Roo.form.Layout
26665  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
26666  * @constructor
26667  * @param {Object} config Configuration options
26668  */
26669 Roo.form.FieldSet = function(config){
26670     Roo.form.FieldSet.superclass.constructor.call(this, config);
26671 };
26672
26673 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
26674     /**
26675      * @cfg {String} legend
26676      * The text to display as the legend for the FieldSet (defaults to '')
26677      */
26678     /**
26679      * @cfg {String/Object} autoCreate
26680      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
26681      */
26682
26683     // private
26684     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
26685
26686     // private
26687     onRender : function(ct, position){
26688         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
26689         if(this.legend){
26690             this.setLegend(this.legend);
26691         }
26692     },
26693
26694     // private
26695     setLegend : function(text){
26696         if(this.rendered){
26697             this.el.child('legend').update(text);
26698         }
26699     }
26700 });/*
26701  * Based on:
26702  * Ext JS Library 1.1.1
26703  * Copyright(c) 2006-2007, Ext JS, LLC.
26704  *
26705  * Originally Released Under LGPL - original licence link has changed is not relivant.
26706  *
26707  * Fork - LGPL
26708  * <script type="text/javascript">
26709  */
26710 /**
26711  * @class Roo.form.VTypes
26712  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
26713  * @singleton
26714  */
26715 Roo.form.VTypes = function(){
26716     // closure these in so they are only created once.
26717     var alpha = /^[a-zA-Z_]+$/;
26718     var alphanum = /^[a-zA-Z0-9_]+$/;
26719     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
26720     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
26721
26722     // All these messages and functions are configurable
26723     return {
26724         /**
26725          * The function used to validate email addresses
26726          * @param {String} value The email address
26727          */
26728         'email' : function(v){
26729             return email.test(v);
26730         },
26731         /**
26732          * The error text to display when the email validation function returns false
26733          * @type String
26734          */
26735         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
26736         /**
26737          * The keystroke filter mask to be applied on email input
26738          * @type RegExp
26739          */
26740         'emailMask' : /[a-z0-9_\.\-@]/i,
26741
26742         /**
26743          * The function used to validate URLs
26744          * @param {String} value The URL
26745          */
26746         'url' : function(v){
26747             return url.test(v);
26748         },
26749         /**
26750          * The error text to display when the url validation function returns false
26751          * @type String
26752          */
26753         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
26754         
26755         /**
26756          * The function used to validate alpha values
26757          * @param {String} value The value
26758          */
26759         'alpha' : function(v){
26760             return alpha.test(v);
26761         },
26762         /**
26763          * The error text to display when the alpha validation function returns false
26764          * @type String
26765          */
26766         'alphaText' : 'This field should only contain letters and _',
26767         /**
26768          * The keystroke filter mask to be applied on alpha input
26769          * @type RegExp
26770          */
26771         'alphaMask' : /[a-z_]/i,
26772
26773         /**
26774          * The function used to validate alphanumeric values
26775          * @param {String} value The value
26776          */
26777         'alphanum' : function(v){
26778             return alphanum.test(v);
26779         },
26780         /**
26781          * The error text to display when the alphanumeric validation function returns false
26782          * @type String
26783          */
26784         'alphanumText' : 'This field should only contain letters, numbers and _',
26785         /**
26786          * The keystroke filter mask to be applied on alphanumeric input
26787          * @type RegExp
26788          */
26789         'alphanumMask' : /[a-z0-9_]/i
26790     };
26791 }();//<script type="text/javascript">
26792
26793 /**
26794  * @class Roo.form.FCKeditor
26795  * @extends Roo.form.TextArea
26796  * Wrapper around the FCKEditor http://www.fckeditor.net
26797  * @constructor
26798  * Creates a new FCKeditor
26799  * @param {Object} config Configuration options
26800  */
26801 Roo.form.FCKeditor = function(config){
26802     Roo.form.FCKeditor.superclass.constructor.call(this, config);
26803     this.addEvents({
26804          /**
26805          * @event editorinit
26806          * Fired when the editor is initialized - you can add extra handlers here..
26807          * @param {FCKeditor} this
26808          * @param {Object} the FCK object.
26809          */
26810         editorinit : true
26811     });
26812     
26813     
26814 };
26815 Roo.form.FCKeditor.editors = { };
26816 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
26817 {
26818     //defaultAutoCreate : {
26819     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
26820     //},
26821     // private
26822     /**
26823      * @cfg {Object} fck options - see fck manual for details.
26824      */
26825     fckconfig : false,
26826     
26827     /**
26828      * @cfg {Object} fck toolbar set (Basic or Default)
26829      */
26830     toolbarSet : 'Basic',
26831     /**
26832      * @cfg {Object} fck BasePath
26833      */ 
26834     basePath : '/fckeditor/',
26835     
26836     
26837     frame : false,
26838     
26839     value : '',
26840     
26841    
26842     onRender : function(ct, position)
26843     {
26844         if(!this.el){
26845             this.defaultAutoCreate = {
26846                 tag: "textarea",
26847                 style:"width:300px;height:60px;",
26848                 autocomplete: "new-password"
26849             };
26850         }
26851         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
26852         /*
26853         if(this.grow){
26854             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
26855             if(this.preventScrollbars){
26856                 this.el.setStyle("overflow", "hidden");
26857             }
26858             this.el.setHeight(this.growMin);
26859         }
26860         */
26861         //console.log('onrender' + this.getId() );
26862         Roo.form.FCKeditor.editors[this.getId()] = this;
26863          
26864
26865         this.replaceTextarea() ;
26866         
26867     },
26868     
26869     getEditor : function() {
26870         return this.fckEditor;
26871     },
26872     /**
26873      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
26874      * @param {Mixed} value The value to set
26875      */
26876     
26877     
26878     setValue : function(value)
26879     {
26880         //console.log('setValue: ' + value);
26881         
26882         if(typeof(value) == 'undefined') { // not sure why this is happending...
26883             return;
26884         }
26885         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
26886         
26887         //if(!this.el || !this.getEditor()) {
26888         //    this.value = value;
26889             //this.setValue.defer(100,this,[value]);    
26890         //    return;
26891         //} 
26892         
26893         if(!this.getEditor()) {
26894             return;
26895         }
26896         
26897         this.getEditor().SetData(value);
26898         
26899         //
26900
26901     },
26902
26903     /**
26904      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
26905      * @return {Mixed} value The field value
26906      */
26907     getValue : function()
26908     {
26909         
26910         if (this.frame && this.frame.dom.style.display == 'none') {
26911             return Roo.form.FCKeditor.superclass.getValue.call(this);
26912         }
26913         
26914         if(!this.el || !this.getEditor()) {
26915            
26916            // this.getValue.defer(100,this); 
26917             return this.value;
26918         }
26919        
26920         
26921         var value=this.getEditor().GetData();
26922         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
26923         return Roo.form.FCKeditor.superclass.getValue.call(this);
26924         
26925
26926     },
26927
26928     /**
26929      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
26930      * @return {Mixed} value The field value
26931      */
26932     getRawValue : function()
26933     {
26934         if (this.frame && this.frame.dom.style.display == 'none') {
26935             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
26936         }
26937         
26938         if(!this.el || !this.getEditor()) {
26939             //this.getRawValue.defer(100,this); 
26940             return this.value;
26941             return;
26942         }
26943         
26944         
26945         
26946         var value=this.getEditor().GetData();
26947         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
26948         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
26949          
26950     },
26951     
26952     setSize : function(w,h) {
26953         
26954         
26955         
26956         //if (this.frame && this.frame.dom.style.display == 'none') {
26957         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
26958         //    return;
26959         //}
26960         //if(!this.el || !this.getEditor()) {
26961         //    this.setSize.defer(100,this, [w,h]); 
26962         //    return;
26963         //}
26964         
26965         
26966         
26967         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
26968         
26969         this.frame.dom.setAttribute('width', w);
26970         this.frame.dom.setAttribute('height', h);
26971         this.frame.setSize(w,h);
26972         
26973     },
26974     
26975     toggleSourceEdit : function(value) {
26976         
26977       
26978          
26979         this.el.dom.style.display = value ? '' : 'none';
26980         this.frame.dom.style.display = value ?  'none' : '';
26981         
26982     },
26983     
26984     
26985     focus: function(tag)
26986     {
26987         if (this.frame.dom.style.display == 'none') {
26988             return Roo.form.FCKeditor.superclass.focus.call(this);
26989         }
26990         if(!this.el || !this.getEditor()) {
26991             this.focus.defer(100,this, [tag]); 
26992             return;
26993         }
26994         
26995         
26996         
26997         
26998         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
26999         this.getEditor().Focus();
27000         if (tgs.length) {
27001             if (!this.getEditor().Selection.GetSelection()) {
27002                 this.focus.defer(100,this, [tag]); 
27003                 return;
27004             }
27005             
27006             
27007             var r = this.getEditor().EditorDocument.createRange();
27008             r.setStart(tgs[0],0);
27009             r.setEnd(tgs[0],0);
27010             this.getEditor().Selection.GetSelection().removeAllRanges();
27011             this.getEditor().Selection.GetSelection().addRange(r);
27012             this.getEditor().Focus();
27013         }
27014         
27015     },
27016     
27017     
27018     
27019     replaceTextarea : function()
27020     {
27021         if ( document.getElementById( this.getId() + '___Frame' ) ) {
27022             return ;
27023         }
27024         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
27025         //{
27026             // We must check the elements firstly using the Id and then the name.
27027         var oTextarea = document.getElementById( this.getId() );
27028         
27029         var colElementsByName = document.getElementsByName( this.getId() ) ;
27030          
27031         oTextarea.style.display = 'none' ;
27032
27033         if ( oTextarea.tabIndex ) {            
27034             this.TabIndex = oTextarea.tabIndex ;
27035         }
27036         
27037         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
27038         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
27039         this.frame = Roo.get(this.getId() + '___Frame')
27040     },
27041     
27042     _getConfigHtml : function()
27043     {
27044         var sConfig = '' ;
27045
27046         for ( var o in this.fckconfig ) {
27047             sConfig += sConfig.length > 0  ? '&amp;' : '';
27048             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
27049         }
27050
27051         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
27052     },
27053     
27054     
27055     _getIFrameHtml : function()
27056     {
27057         var sFile = 'fckeditor.html' ;
27058         /* no idea what this is about..
27059         try
27060         {
27061             if ( (/fcksource=true/i).test( window.top.location.search ) )
27062                 sFile = 'fckeditor.original.html' ;
27063         }
27064         catch (e) { 
27065         */
27066
27067         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
27068         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
27069         
27070         
27071         var html = '<iframe id="' + this.getId() +
27072             '___Frame" src="' + sLink +
27073             '" width="' + this.width +
27074             '" height="' + this.height + '"' +
27075             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
27076             ' frameborder="0" scrolling="no"></iframe>' ;
27077
27078         return html ;
27079     },
27080     
27081     _insertHtmlBefore : function( html, element )
27082     {
27083         if ( element.insertAdjacentHTML )       {
27084             // IE
27085             element.insertAdjacentHTML( 'beforeBegin', html ) ;
27086         } else { // Gecko
27087             var oRange = document.createRange() ;
27088             oRange.setStartBefore( element ) ;
27089             var oFragment = oRange.createContextualFragment( html );
27090             element.parentNode.insertBefore( oFragment, element ) ;
27091         }
27092     }
27093     
27094     
27095   
27096     
27097     
27098     
27099     
27100
27101 });
27102
27103 //Roo.reg('fckeditor', Roo.form.FCKeditor);
27104
27105 function FCKeditor_OnComplete(editorInstance){
27106     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
27107     f.fckEditor = editorInstance;
27108     //console.log("loaded");
27109     f.fireEvent('editorinit', f, editorInstance);
27110
27111   
27112
27113  
27114
27115
27116
27117
27118
27119
27120
27121
27122
27123
27124
27125
27126
27127
27128
27129 //<script type="text/javascript">
27130 /**
27131  * @class Roo.form.GridField
27132  * @extends Roo.form.Field
27133  * Embed a grid (or editable grid into a form)
27134  * STATUS ALPHA
27135  * 
27136  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
27137  * it needs 
27138  * xgrid.store = Roo.data.Store
27139  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
27140  * xgrid.store.reader = Roo.data.JsonReader 
27141  * 
27142  * 
27143  * @constructor
27144  * Creates a new GridField
27145  * @param {Object} config Configuration options
27146  */
27147 Roo.form.GridField = function(config){
27148     Roo.form.GridField.superclass.constructor.call(this, config);
27149      
27150 };
27151
27152 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
27153     /**
27154      * @cfg {Number} width  - used to restrict width of grid..
27155      */
27156     width : 100,
27157     /**
27158      * @cfg {Number} height - used to restrict height of grid..
27159      */
27160     height : 50,
27161      /**
27162      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
27163          * 
27164          *}
27165      */
27166     xgrid : false, 
27167     /**
27168      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27169      * {tag: "input", type: "checkbox", autocomplete: "off"})
27170      */
27171    // defaultAutoCreate : { tag: 'div' },
27172     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
27173     /**
27174      * @cfg {String} addTitle Text to include for adding a title.
27175      */
27176     addTitle : false,
27177     //
27178     onResize : function(){
27179         Roo.form.Field.superclass.onResize.apply(this, arguments);
27180     },
27181
27182     initEvents : function(){
27183         // Roo.form.Checkbox.superclass.initEvents.call(this);
27184         // has no events...
27185        
27186     },
27187
27188
27189     getResizeEl : function(){
27190         return this.wrap;
27191     },
27192
27193     getPositionEl : function(){
27194         return this.wrap;
27195     },
27196
27197     // private
27198     onRender : function(ct, position){
27199         
27200         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
27201         var style = this.style;
27202         delete this.style;
27203         
27204         Roo.form.GridField.superclass.onRender.call(this, ct, position);
27205         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
27206         this.viewEl = this.wrap.createChild({ tag: 'div' });
27207         if (style) {
27208             this.viewEl.applyStyles(style);
27209         }
27210         if (this.width) {
27211             this.viewEl.setWidth(this.width);
27212         }
27213         if (this.height) {
27214             this.viewEl.setHeight(this.height);
27215         }
27216         //if(this.inputValue !== undefined){
27217         //this.setValue(this.value);
27218         
27219         
27220         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
27221         
27222         
27223         this.grid.render();
27224         this.grid.getDataSource().on('remove', this.refreshValue, this);
27225         this.grid.getDataSource().on('update', this.refreshValue, this);
27226         this.grid.on('afteredit', this.refreshValue, this);
27227  
27228     },
27229      
27230     
27231     /**
27232      * Sets the value of the item. 
27233      * @param {String} either an object  or a string..
27234      */
27235     setValue : function(v){
27236         //this.value = v;
27237         v = v || []; // empty set..
27238         // this does not seem smart - it really only affects memoryproxy grids..
27239         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
27240             var ds = this.grid.getDataSource();
27241             // assumes a json reader..
27242             var data = {}
27243             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
27244             ds.loadData( data);
27245         }
27246         // clear selection so it does not get stale.
27247         if (this.grid.sm) { 
27248             this.grid.sm.clearSelections();
27249         }
27250         
27251         Roo.form.GridField.superclass.setValue.call(this, v);
27252         this.refreshValue();
27253         // should load data in the grid really....
27254     },
27255     
27256     // private
27257     refreshValue: function() {
27258          var val = [];
27259         this.grid.getDataSource().each(function(r) {
27260             val.push(r.data);
27261         });
27262         this.el.dom.value = Roo.encode(val);
27263     }
27264     
27265      
27266     
27267     
27268 });/*
27269  * Based on:
27270  * Ext JS Library 1.1.1
27271  * Copyright(c) 2006-2007, Ext JS, LLC.
27272  *
27273  * Originally Released Under LGPL - original licence link has changed is not relivant.
27274  *
27275  * Fork - LGPL
27276  * <script type="text/javascript">
27277  */
27278 /**
27279  * @class Roo.form.DisplayField
27280  * @extends Roo.form.Field
27281  * A generic Field to display non-editable data.
27282  * @cfg {Boolean} closable (true|false) default false
27283  * @constructor
27284  * Creates a new Display Field item.
27285  * @param {Object} config Configuration options
27286  */
27287 Roo.form.DisplayField = function(config){
27288     Roo.form.DisplayField.superclass.constructor.call(this, config);
27289     
27290     this.addEvents({
27291         /**
27292          * @event close
27293          * Fires after the click the close btn
27294              * @param {Roo.form.DisplayField} this
27295              */
27296         close : true
27297     });
27298 };
27299
27300 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
27301     inputType:      'hidden',
27302     allowBlank:     true,
27303     readOnly:         true,
27304     
27305  
27306     /**
27307      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27308      */
27309     focusClass : undefined,
27310     /**
27311      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27312      */
27313     fieldClass: 'x-form-field',
27314     
27315      /**
27316      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
27317      */
27318     valueRenderer: undefined,
27319     
27320     width: 100,
27321     /**
27322      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27323      * {tag: "input", type: "checkbox", autocomplete: "off"})
27324      */
27325      
27326  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
27327  
27328     closable : false,
27329     
27330     onResize : function(){
27331         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
27332         
27333     },
27334
27335     initEvents : function(){
27336         // Roo.form.Checkbox.superclass.initEvents.call(this);
27337         // has no events...
27338         
27339         if(this.closable){
27340             this.closeEl.on('click', this.onClose, this);
27341         }
27342        
27343     },
27344
27345
27346     getResizeEl : function(){
27347         return this.wrap;
27348     },
27349
27350     getPositionEl : function(){
27351         return this.wrap;
27352     },
27353
27354     // private
27355     onRender : function(ct, position){
27356         
27357         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
27358         //if(this.inputValue !== undefined){
27359         this.wrap = this.el.wrap();
27360         
27361         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
27362         
27363         if(this.closable){
27364             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
27365         }
27366         
27367         if (this.bodyStyle) {
27368             this.viewEl.applyStyles(this.bodyStyle);
27369         }
27370         //this.viewEl.setStyle('padding', '2px');
27371         
27372         this.setValue(this.value);
27373         
27374     },
27375 /*
27376     // private
27377     initValue : Roo.emptyFn,
27378
27379   */
27380
27381         // private
27382     onClick : function(){
27383         
27384     },
27385
27386     /**
27387      * Sets the checked state of the checkbox.
27388      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
27389      */
27390     setValue : function(v){
27391         this.value = v;
27392         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
27393         // this might be called before we have a dom element..
27394         if (!this.viewEl) {
27395             return;
27396         }
27397         this.viewEl.dom.innerHTML = html;
27398         Roo.form.DisplayField.superclass.setValue.call(this, v);
27399
27400     },
27401     
27402     onClose : function(e)
27403     {
27404         e.preventDefault();
27405         
27406         this.fireEvent('close', this);
27407     }
27408 });/*
27409  * 
27410  * Licence- LGPL
27411  * 
27412  */
27413
27414 /**
27415  * @class Roo.form.DayPicker
27416  * @extends Roo.form.Field
27417  * A Day picker show [M] [T] [W] ....
27418  * @constructor
27419  * Creates a new Day Picker
27420  * @param {Object} config Configuration options
27421  */
27422 Roo.form.DayPicker= function(config){
27423     Roo.form.DayPicker.superclass.constructor.call(this, config);
27424      
27425 };
27426
27427 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
27428     /**
27429      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
27430      */
27431     focusClass : undefined,
27432     /**
27433      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
27434      */
27435     fieldClass: "x-form-field",
27436    
27437     /**
27438      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
27439      * {tag: "input", type: "checkbox", autocomplete: "off"})
27440      */
27441     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
27442     
27443    
27444     actionMode : 'viewEl', 
27445     //
27446     // private
27447  
27448     inputType : 'hidden',
27449     
27450      
27451     inputElement: false, // real input element?
27452     basedOn: false, // ????
27453     
27454     isFormField: true, // not sure where this is needed!!!!
27455
27456     onResize : function(){
27457         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
27458         if(!this.boxLabel){
27459             this.el.alignTo(this.wrap, 'c-c');
27460         }
27461     },
27462
27463     initEvents : function(){
27464         Roo.form.Checkbox.superclass.initEvents.call(this);
27465         this.el.on("click", this.onClick,  this);
27466         this.el.on("change", this.onClick,  this);
27467     },
27468
27469
27470     getResizeEl : function(){
27471         return this.wrap;
27472     },
27473
27474     getPositionEl : function(){
27475         return this.wrap;
27476     },
27477
27478     
27479     // private
27480     onRender : function(ct, position){
27481         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
27482        
27483         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
27484         
27485         var r1 = '<table><tr>';
27486         var r2 = '<tr class="x-form-daypick-icons">';
27487         for (var i=0; i < 7; i++) {
27488             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
27489             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
27490         }
27491         
27492         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
27493         viewEl.select('img').on('click', this.onClick, this);
27494         this.viewEl = viewEl;   
27495         
27496         
27497         // this will not work on Chrome!!!
27498         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
27499         this.el.on('propertychange', this.setFromHidden,  this);  //ie
27500         
27501         
27502           
27503
27504     },
27505
27506     // private
27507     initValue : Roo.emptyFn,
27508
27509     /**
27510      * Returns the checked state of the checkbox.
27511      * @return {Boolean} True if checked, else false
27512      */
27513     getValue : function(){
27514         return this.el.dom.value;
27515         
27516     },
27517
27518         // private
27519     onClick : function(e){ 
27520         //this.setChecked(!this.checked);
27521         Roo.get(e.target).toggleClass('x-menu-item-checked');
27522         this.refreshValue();
27523         //if(this.el.dom.checked != this.checked){
27524         //    this.setValue(this.el.dom.checked);
27525        // }
27526     },
27527     
27528     // private
27529     refreshValue : function()
27530     {
27531         var val = '';
27532         this.viewEl.select('img',true).each(function(e,i,n)  {
27533             val += e.is(".x-menu-item-checked") ? String(n) : '';
27534         });
27535         this.setValue(val, true);
27536     },
27537
27538     /**
27539      * Sets the checked state of the checkbox.
27540      * On is always based on a string comparison between inputValue and the param.
27541      * @param {Boolean/String} value - the value to set 
27542      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
27543      */
27544     setValue : function(v,suppressEvent){
27545         if (!this.el.dom) {
27546             return;
27547         }
27548         var old = this.el.dom.value ;
27549         this.el.dom.value = v;
27550         if (suppressEvent) {
27551             return ;
27552         }
27553          
27554         // update display..
27555         this.viewEl.select('img',true).each(function(e,i,n)  {
27556             
27557             var on = e.is(".x-menu-item-checked");
27558             var newv = v.indexOf(String(n)) > -1;
27559             if (on != newv) {
27560                 e.toggleClass('x-menu-item-checked');
27561             }
27562             
27563         });
27564         
27565         
27566         this.fireEvent('change', this, v, old);
27567         
27568         
27569     },
27570    
27571     // handle setting of hidden value by some other method!!?!?
27572     setFromHidden: function()
27573     {
27574         if(!this.el){
27575             return;
27576         }
27577         //console.log("SET FROM HIDDEN");
27578         //alert('setFrom hidden');
27579         this.setValue(this.el.dom.value);
27580     },
27581     
27582     onDestroy : function()
27583     {
27584         if(this.viewEl){
27585             Roo.get(this.viewEl).remove();
27586         }
27587          
27588         Roo.form.DayPicker.superclass.onDestroy.call(this);
27589     }
27590
27591 });/*
27592  * RooJS Library 1.1.1
27593  * Copyright(c) 2008-2011  Alan Knowles
27594  *
27595  * License - LGPL
27596  */
27597  
27598
27599 /**
27600  * @class Roo.form.ComboCheck
27601  * @extends Roo.form.ComboBox
27602  * A combobox for multiple select items.
27603  *
27604  * FIXME - could do with a reset button..
27605  * 
27606  * @constructor
27607  * Create a new ComboCheck
27608  * @param {Object} config Configuration options
27609  */
27610 Roo.form.ComboCheck = function(config){
27611     Roo.form.ComboCheck.superclass.constructor.call(this, config);
27612     // should verify some data...
27613     // like
27614     // hiddenName = required..
27615     // displayField = required
27616     // valudField == required
27617     var req= [ 'hiddenName', 'displayField', 'valueField' ];
27618     var _t = this;
27619     Roo.each(req, function(e) {
27620         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
27621             throw "Roo.form.ComboCheck : missing value for: " + e;
27622         }
27623     });
27624     
27625     
27626 };
27627
27628 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
27629      
27630      
27631     editable : false,
27632      
27633     selectedClass: 'x-menu-item-checked', 
27634     
27635     // private
27636     onRender : function(ct, position){
27637         var _t = this;
27638         
27639         
27640         
27641         if(!this.tpl){
27642             var cls = 'x-combo-list';
27643
27644             
27645             this.tpl =  new Roo.Template({
27646                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
27647                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
27648                    '<span>{' + this.displayField + '}</span>' +
27649                     '</div>' 
27650                 
27651             });
27652         }
27653  
27654         
27655         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
27656         this.view.singleSelect = false;
27657         this.view.multiSelect = true;
27658         this.view.toggleSelect = true;
27659         this.pageTb.add(new Roo.Toolbar.Fill(), {
27660             
27661             text: 'Done',
27662             handler: function()
27663             {
27664                 _t.collapse();
27665             }
27666         });
27667     },
27668     
27669     onViewOver : function(e, t){
27670         // do nothing...
27671         return;
27672         
27673     },
27674     
27675     onViewClick : function(doFocus,index){
27676         return;
27677         
27678     },
27679     select: function () {
27680         //Roo.log("SELECT CALLED");
27681     },
27682      
27683     selectByValue : function(xv, scrollIntoView){
27684         var ar = this.getValueArray();
27685         var sels = [];
27686         
27687         Roo.each(ar, function(v) {
27688             if(v === undefined || v === null){
27689                 return;
27690             }
27691             var r = this.findRecord(this.valueField, v);
27692             if(r){
27693                 sels.push(this.store.indexOf(r))
27694                 
27695             }
27696         },this);
27697         this.view.select(sels);
27698         return false;
27699     },
27700     
27701     
27702     
27703     onSelect : function(record, index){
27704        // Roo.log("onselect Called");
27705        // this is only called by the clear button now..
27706         this.view.clearSelections();
27707         this.setValue('[]');
27708         if (this.value != this.valueBefore) {
27709             this.fireEvent('change', this, this.value, this.valueBefore);
27710             this.valueBefore = this.value;
27711         }
27712     },
27713     getValueArray : function()
27714     {
27715         var ar = [] ;
27716         
27717         try {
27718             //Roo.log(this.value);
27719             if (typeof(this.value) == 'undefined') {
27720                 return [];
27721             }
27722             var ar = Roo.decode(this.value);
27723             return  ar instanceof Array ? ar : []; //?? valid?
27724             
27725         } catch(e) {
27726             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
27727             return [];
27728         }
27729          
27730     },
27731     expand : function ()
27732     {
27733         
27734         Roo.form.ComboCheck.superclass.expand.call(this);
27735         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
27736         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
27737         
27738
27739     },
27740     
27741     collapse : function(){
27742         Roo.form.ComboCheck.superclass.collapse.call(this);
27743         var sl = this.view.getSelectedIndexes();
27744         var st = this.store;
27745         var nv = [];
27746         var tv = [];
27747         var r;
27748         Roo.each(sl, function(i) {
27749             r = st.getAt(i);
27750             nv.push(r.get(this.valueField));
27751         },this);
27752         this.setValue(Roo.encode(nv));
27753         if (this.value != this.valueBefore) {
27754
27755             this.fireEvent('change', this, this.value, this.valueBefore);
27756             this.valueBefore = this.value;
27757         }
27758         
27759     },
27760     
27761     setValue : function(v){
27762         // Roo.log(v);
27763         this.value = v;
27764         
27765         var vals = this.getValueArray();
27766         var tv = [];
27767         Roo.each(vals, function(k) {
27768             var r = this.findRecord(this.valueField, k);
27769             if(r){
27770                 tv.push(r.data[this.displayField]);
27771             }else if(this.valueNotFoundText !== undefined){
27772                 tv.push( this.valueNotFoundText );
27773             }
27774         },this);
27775        // Roo.log(tv);
27776         
27777         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
27778         this.hiddenField.value = v;
27779         this.value = v;
27780     }
27781     
27782 });/*
27783  * Based on:
27784  * Ext JS Library 1.1.1
27785  * Copyright(c) 2006-2007, Ext JS, LLC.
27786  *
27787  * Originally Released Under LGPL - original licence link has changed is not relivant.
27788  *
27789  * Fork - LGPL
27790  * <script type="text/javascript">
27791  */
27792  
27793 /**
27794  * @class Roo.form.Signature
27795  * @extends Roo.form.Field
27796  * Signature field.  
27797  * @constructor
27798  * 
27799  * @param {Object} config Configuration options
27800  */
27801
27802 Roo.form.Signature = function(config){
27803     Roo.form.Signature.superclass.constructor.call(this, config);
27804     
27805     this.addEvents({// not in used??
27806          /**
27807          * @event confirm
27808          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
27809              * @param {Roo.form.Signature} combo This combo box
27810              */
27811         'confirm' : true,
27812         /**
27813          * @event reset
27814          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
27815              * @param {Roo.form.ComboBox} combo This combo box
27816              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
27817              */
27818         'reset' : true
27819     });
27820 };
27821
27822 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
27823     /**
27824      * @cfg {Object} labels Label to use when rendering a form.
27825      * defaults to 
27826      * labels : { 
27827      *      clear : "Clear",
27828      *      confirm : "Confirm"
27829      *  }
27830      */
27831     labels : { 
27832         clear : "Clear",
27833         confirm : "Confirm"
27834     },
27835     /**
27836      * @cfg {Number} width The signature panel width (defaults to 300)
27837      */
27838     width: 300,
27839     /**
27840      * @cfg {Number} height The signature panel height (defaults to 100)
27841      */
27842     height : 100,
27843     /**
27844      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
27845      */
27846     allowBlank : false,
27847     
27848     //private
27849     // {Object} signPanel The signature SVG panel element (defaults to {})
27850     signPanel : {},
27851     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
27852     isMouseDown : false,
27853     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
27854     isConfirmed : false,
27855     // {String} signatureTmp SVG mapping string (defaults to empty string)
27856     signatureTmp : '',
27857     
27858     
27859     defaultAutoCreate : { // modified by initCompnoent..
27860         tag: "input",
27861         type:"hidden"
27862     },
27863
27864     // private
27865     onRender : function(ct, position){
27866         
27867         Roo.form.Signature.superclass.onRender.call(this, ct, position);
27868         
27869         this.wrap = this.el.wrap({
27870             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
27871         });
27872         
27873         this.createToolbar(this);
27874         this.signPanel = this.wrap.createChild({
27875                 tag: 'div',
27876                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
27877             }, this.el
27878         );
27879             
27880         this.svgID = Roo.id();
27881         this.svgEl = this.signPanel.createChild({
27882               xmlns : 'http://www.w3.org/2000/svg',
27883               tag : 'svg',
27884               id : this.svgID + "-svg",
27885               width: this.width,
27886               height: this.height,
27887               viewBox: '0 0 '+this.width+' '+this.height,
27888               cn : [
27889                 {
27890                     tag: "rect",
27891                     id: this.svgID + "-svg-r",
27892                     width: this.width,
27893                     height: this.height,
27894                     fill: "#ffa"
27895                 },
27896                 {
27897                     tag: "line",
27898                     id: this.svgID + "-svg-l",
27899                     x1: "0", // start
27900                     y1: (this.height*0.8), // start set the line in 80% of height
27901                     x2: this.width, // end
27902                     y2: (this.height*0.8), // end set the line in 80% of height
27903                     'stroke': "#666",
27904                     'stroke-width': "1",
27905                     'stroke-dasharray': "3",
27906                     'shape-rendering': "crispEdges",
27907                     'pointer-events': "none"
27908                 },
27909                 {
27910                     tag: "path",
27911                     id: this.svgID + "-svg-p",
27912                     'stroke': "navy",
27913                     'stroke-width': "3",
27914                     'fill': "none",
27915                     'pointer-events': 'none'
27916                 }
27917               ]
27918         });
27919         this.createSVG();
27920         this.svgBox = this.svgEl.dom.getScreenCTM();
27921     },
27922     createSVG : function(){ 
27923         var svg = this.signPanel;
27924         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
27925         var t = this;
27926
27927         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
27928         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
27929         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
27930         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
27931         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
27932         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
27933         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
27934         
27935     },
27936     isTouchEvent : function(e){
27937         return e.type.match(/^touch/);
27938     },
27939     getCoords : function (e) {
27940         var pt    = this.svgEl.dom.createSVGPoint();
27941         pt.x = e.clientX; 
27942         pt.y = e.clientY;
27943         if (this.isTouchEvent(e)) {
27944             pt.x =  e.targetTouches[0].clientX;
27945             pt.y = e.targetTouches[0].clientY;
27946         }
27947         var a = this.svgEl.dom.getScreenCTM();
27948         var b = a.inverse();
27949         var mx = pt.matrixTransform(b);
27950         return mx.x + ',' + mx.y;
27951     },
27952     //mouse event headler 
27953     down : function (e) {
27954         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
27955         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
27956         
27957         this.isMouseDown = true;
27958         
27959         e.preventDefault();
27960     },
27961     move : function (e) {
27962         if (this.isMouseDown) {
27963             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
27964             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
27965         }
27966         
27967         e.preventDefault();
27968     },
27969     up : function (e) {
27970         this.isMouseDown = false;
27971         var sp = this.signatureTmp.split(' ');
27972         
27973         if(sp.length > 1){
27974             if(!sp[sp.length-2].match(/^L/)){
27975                 sp.pop();
27976                 sp.pop();
27977                 sp.push("");
27978                 this.signatureTmp = sp.join(" ");
27979             }
27980         }
27981         if(this.getValue() != this.signatureTmp){
27982             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
27983             this.isConfirmed = false;
27984         }
27985         e.preventDefault();
27986     },
27987     
27988     /**
27989      * Protected method that will not generally be called directly. It
27990      * is called when the editor creates its toolbar. Override this method if you need to
27991      * add custom toolbar buttons.
27992      * @param {HtmlEditor} editor
27993      */
27994     createToolbar : function(editor){
27995          function btn(id, toggle, handler){
27996             var xid = fid + '-'+ id ;
27997             return {
27998                 id : xid,
27999                 cmd : id,
28000                 cls : 'x-btn-icon x-edit-'+id,
28001                 enableToggle:toggle !== false,
28002                 scope: editor, // was editor...
28003                 handler:handler||editor.relayBtnCmd,
28004                 clickEvent:'mousedown',
28005                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
28006                 tabIndex:-1
28007             };
28008         }
28009         
28010         
28011         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
28012         this.tb = tb;
28013         this.tb.add(
28014            {
28015                 cls : ' x-signature-btn x-signature-'+id,
28016                 scope: editor, // was editor...
28017                 handler: this.reset,
28018                 clickEvent:'mousedown',
28019                 text: this.labels.clear
28020             },
28021             {
28022                  xtype : 'Fill',
28023                  xns: Roo.Toolbar
28024             }, 
28025             {
28026                 cls : '  x-signature-btn x-signature-'+id,
28027                 scope: editor, // was editor...
28028                 handler: this.confirmHandler,
28029                 clickEvent:'mousedown',
28030                 text: this.labels.confirm
28031             }
28032         );
28033     
28034     },
28035     //public
28036     /**
28037      * when user is clicked confirm then show this image.....
28038      * 
28039      * @return {String} Image Data URI
28040      */
28041     getImageDataURI : function(){
28042         var svg = this.svgEl.dom.parentNode.innerHTML;
28043         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
28044         return src; 
28045     },
28046     /**
28047      * 
28048      * @return {Boolean} this.isConfirmed
28049      */
28050     getConfirmed : function(){
28051         return this.isConfirmed;
28052     },
28053     /**
28054      * 
28055      * @return {Number} this.width
28056      */
28057     getWidth : function(){
28058         return this.width;
28059     },
28060     /**
28061      * 
28062      * @return {Number} this.height
28063      */
28064     getHeight : function(){
28065         return this.height;
28066     },
28067     // private
28068     getSignature : function(){
28069         return this.signatureTmp;
28070     },
28071     // private
28072     reset : function(){
28073         this.signatureTmp = '';
28074         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28075         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
28076         this.isConfirmed = false;
28077         Roo.form.Signature.superclass.reset.call(this);
28078     },
28079     setSignature : function(s){
28080         this.signatureTmp = s;
28081         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
28082         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
28083         this.setValue(s);
28084         this.isConfirmed = false;
28085         Roo.form.Signature.superclass.reset.call(this);
28086     }, 
28087     test : function(){
28088 //        Roo.log(this.signPanel.dom.contentWindow.up())
28089     },
28090     //private
28091     setConfirmed : function(){
28092         
28093         
28094         
28095 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
28096     },
28097     // private
28098     confirmHandler : function(){
28099         if(!this.getSignature()){
28100             return;
28101         }
28102         
28103         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
28104         this.setValue(this.getSignature());
28105         this.isConfirmed = true;
28106         
28107         this.fireEvent('confirm', this);
28108     },
28109     // private
28110     // Subclasses should provide the validation implementation by overriding this
28111     validateValue : function(value){
28112         if(this.allowBlank){
28113             return true;
28114         }
28115         
28116         if(this.isConfirmed){
28117             return true;
28118         }
28119         return false;
28120     }
28121 });/*
28122  * Based on:
28123  * Ext JS Library 1.1.1
28124  * Copyright(c) 2006-2007, Ext JS, LLC.
28125  *
28126  * Originally Released Under LGPL - original licence link has changed is not relivant.
28127  *
28128  * Fork - LGPL
28129  * <script type="text/javascript">
28130  */
28131  
28132
28133 /**
28134  * @class Roo.form.ComboBox
28135  * @extends Roo.form.TriggerField
28136  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
28137  * @constructor
28138  * Create a new ComboBox.
28139  * @param {Object} config Configuration options
28140  */
28141 Roo.form.Select = function(config){
28142     Roo.form.Select.superclass.constructor.call(this, config);
28143      
28144 };
28145
28146 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
28147     /**
28148      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
28149      */
28150     /**
28151      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
28152      * rendering into an Roo.Editor, defaults to false)
28153      */
28154     /**
28155      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
28156      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
28157      */
28158     /**
28159      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
28160      */
28161     /**
28162      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
28163      * the dropdown list (defaults to undefined, with no header element)
28164      */
28165
28166      /**
28167      * @cfg {String/Roo.Template} tpl The template to use to render the output
28168      */
28169      
28170     // private
28171     defaultAutoCreate : {tag: "select"  },
28172     /**
28173      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
28174      */
28175     listWidth: undefined,
28176     /**
28177      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
28178      * mode = 'remote' or 'text' if mode = 'local')
28179      */
28180     displayField: undefined,
28181     /**
28182      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
28183      * mode = 'remote' or 'value' if mode = 'local'). 
28184      * Note: use of a valueField requires the user make a selection
28185      * in order for a value to be mapped.
28186      */
28187     valueField: undefined,
28188     
28189     
28190     /**
28191      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
28192      * field's data value (defaults to the underlying DOM element's name)
28193      */
28194     hiddenName: undefined,
28195     /**
28196      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
28197      */
28198     listClass: '',
28199     /**
28200      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
28201      */
28202     selectedClass: 'x-combo-selected',
28203     /**
28204      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
28205      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
28206      * which displays a downward arrow icon).
28207      */
28208     triggerClass : 'x-form-arrow-trigger',
28209     /**
28210      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
28211      */
28212     shadow:'sides',
28213     /**
28214      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
28215      * anchor positions (defaults to 'tl-bl')
28216      */
28217     listAlign: 'tl-bl?',
28218     /**
28219      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
28220      */
28221     maxHeight: 300,
28222     /**
28223      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
28224      * query specified by the allQuery config option (defaults to 'query')
28225      */
28226     triggerAction: 'query',
28227     /**
28228      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
28229      * (defaults to 4, does not apply if editable = false)
28230      */
28231     minChars : 4,
28232     /**
28233      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
28234      * delay (typeAheadDelay) if it matches a known value (defaults to false)
28235      */
28236     typeAhead: false,
28237     /**
28238      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
28239      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
28240      */
28241     queryDelay: 500,
28242     /**
28243      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
28244      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
28245      */
28246     pageSize: 0,
28247     /**
28248      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
28249      * when editable = true (defaults to false)
28250      */
28251     selectOnFocus:false,
28252     /**
28253      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
28254      */
28255     queryParam: 'query',
28256     /**
28257      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
28258      * when mode = 'remote' (defaults to 'Loading...')
28259      */
28260     loadingText: 'Loading...',
28261     /**
28262      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
28263      */
28264     resizable: false,
28265     /**
28266      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
28267      */
28268     handleHeight : 8,
28269     /**
28270      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
28271      * traditional select (defaults to true)
28272      */
28273     editable: true,
28274     /**
28275      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
28276      */
28277     allQuery: '',
28278     /**
28279      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
28280      */
28281     mode: 'remote',
28282     /**
28283      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
28284      * listWidth has a higher value)
28285      */
28286     minListWidth : 70,
28287     /**
28288      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
28289      * allow the user to set arbitrary text into the field (defaults to false)
28290      */
28291     forceSelection:false,
28292     /**
28293      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
28294      * if typeAhead = true (defaults to 250)
28295      */
28296     typeAheadDelay : 250,
28297     /**
28298      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
28299      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
28300      */
28301     valueNotFoundText : undefined,
28302     
28303     /**
28304      * @cfg {String} defaultValue The value displayed after loading the store.
28305      */
28306     defaultValue: '',
28307     
28308     /**
28309      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
28310      */
28311     blockFocus : false,
28312     
28313     /**
28314      * @cfg {Boolean} disableClear Disable showing of clear button.
28315      */
28316     disableClear : false,
28317     /**
28318      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
28319      */
28320     alwaysQuery : false,
28321     
28322     //private
28323     addicon : false,
28324     editicon: false,
28325     
28326     // element that contains real text value.. (when hidden is used..)
28327      
28328     // private
28329     onRender : function(ct, position){
28330         Roo.form.Field.prototype.onRender.call(this, ct, position);
28331         
28332         if(this.store){
28333             this.store.on('beforeload', this.onBeforeLoad, this);
28334             this.store.on('load', this.onLoad, this);
28335             this.store.on('loadexception', this.onLoadException, this);
28336             this.store.load({});
28337         }
28338         
28339         
28340         
28341     },
28342
28343     // private
28344     initEvents : function(){
28345         //Roo.form.ComboBox.superclass.initEvents.call(this);
28346  
28347     },
28348
28349     onDestroy : function(){
28350        
28351         if(this.store){
28352             this.store.un('beforeload', this.onBeforeLoad, this);
28353             this.store.un('load', this.onLoad, this);
28354             this.store.un('loadexception', this.onLoadException, this);
28355         }
28356         //Roo.form.ComboBox.superclass.onDestroy.call(this);
28357     },
28358
28359     // private
28360     fireKey : function(e){
28361         if(e.isNavKeyPress() && !this.list.isVisible()){
28362             this.fireEvent("specialkey", this, e);
28363         }
28364     },
28365
28366     // private
28367     onResize: function(w, h){
28368         
28369         return; 
28370     
28371         
28372     },
28373
28374     /**
28375      * Allow or prevent the user from directly editing the field text.  If false is passed,
28376      * the user will only be able to select from the items defined in the dropdown list.  This method
28377      * is the runtime equivalent of setting the 'editable' config option at config time.
28378      * @param {Boolean} value True to allow the user to directly edit the field text
28379      */
28380     setEditable : function(value){
28381          
28382     },
28383
28384     // private
28385     onBeforeLoad : function(){
28386         
28387         Roo.log("Select before load");
28388         return;
28389     
28390         this.innerList.update(this.loadingText ?
28391                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
28392         //this.restrictHeight();
28393         this.selectedIndex = -1;
28394     },
28395
28396     // private
28397     onLoad : function(){
28398
28399     
28400         var dom = this.el.dom;
28401         dom.innerHTML = '';
28402          var od = dom.ownerDocument;
28403          
28404         if (this.emptyText) {
28405             var op = od.createElement('option');
28406             op.setAttribute('value', '');
28407             op.innerHTML = String.format('{0}', this.emptyText);
28408             dom.appendChild(op);
28409         }
28410         if(this.store.getCount() > 0){
28411            
28412             var vf = this.valueField;
28413             var df = this.displayField;
28414             this.store.data.each(function(r) {
28415                 // which colmsn to use... testing - cdoe / title..
28416                 var op = od.createElement('option');
28417                 op.setAttribute('value', r.data[vf]);
28418                 op.innerHTML = String.format('{0}', r.data[df]);
28419                 dom.appendChild(op);
28420             });
28421             if (typeof(this.defaultValue != 'undefined')) {
28422                 this.setValue(this.defaultValue);
28423             }
28424             
28425              
28426         }else{
28427             //this.onEmptyResults();
28428         }
28429         //this.el.focus();
28430     },
28431     // private
28432     onLoadException : function()
28433     {
28434         dom.innerHTML = '';
28435             
28436         Roo.log("Select on load exception");
28437         return;
28438     
28439         this.collapse();
28440         Roo.log(this.store.reader.jsonData);
28441         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
28442             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
28443         }
28444         
28445         
28446     },
28447     // private
28448     onTypeAhead : function(){
28449          
28450     },
28451
28452     // private
28453     onSelect : function(record, index){
28454         Roo.log('on select?');
28455         return;
28456         if(this.fireEvent('beforeselect', this, record, index) !== false){
28457             this.setFromData(index > -1 ? record.data : false);
28458             this.collapse();
28459             this.fireEvent('select', this, record, index);
28460         }
28461     },
28462
28463     /**
28464      * Returns the currently selected field value or empty string if no value is set.
28465      * @return {String} value The selected value
28466      */
28467     getValue : function(){
28468         var dom = this.el.dom;
28469         this.value = dom.options[dom.selectedIndex].value;
28470         return this.value;
28471         
28472     },
28473
28474     /**
28475      * Clears any text/value currently set in the field
28476      */
28477     clearValue : function(){
28478         this.value = '';
28479         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
28480         
28481     },
28482
28483     /**
28484      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
28485      * will be displayed in the field.  If the value does not match the data value of an existing item,
28486      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
28487      * Otherwise the field will be blank (although the value will still be set).
28488      * @param {String} value The value to match
28489      */
28490     setValue : function(v){
28491         var d = this.el.dom;
28492         for (var i =0; i < d.options.length;i++) {
28493             if (v == d.options[i].value) {
28494                 d.selectedIndex = i;
28495                 this.value = v;
28496                 return;
28497             }
28498         }
28499         this.clearValue();
28500     },
28501     /**
28502      * @property {Object} the last set data for the element
28503      */
28504     
28505     lastData : false,
28506     /**
28507      * Sets the value of the field based on a object which is related to the record format for the store.
28508      * @param {Object} value the value to set as. or false on reset?
28509      */
28510     setFromData : function(o){
28511         Roo.log('setfrom data?');
28512          
28513         
28514         
28515     },
28516     // private
28517     reset : function(){
28518         this.clearValue();
28519     },
28520     // private
28521     findRecord : function(prop, value){
28522         
28523         return false;
28524     
28525         var record;
28526         if(this.store.getCount() > 0){
28527             this.store.each(function(r){
28528                 if(r.data[prop] == value){
28529                     record = r;
28530                     return false;
28531                 }
28532                 return true;
28533             });
28534         }
28535         return record;
28536     },
28537     
28538     getName: function()
28539     {
28540         // returns hidden if it's set..
28541         if (!this.rendered) {return ''};
28542         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
28543         
28544     },
28545      
28546
28547     
28548
28549     // private
28550     onEmptyResults : function(){
28551         Roo.log('empty results');
28552         //this.collapse();
28553     },
28554
28555     /**
28556      * Returns true if the dropdown list is expanded, else false.
28557      */
28558     isExpanded : function(){
28559         return false;
28560     },
28561
28562     /**
28563      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
28564      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28565      * @param {String} value The data value of the item to select
28566      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28567      * selected item if it is not currently in view (defaults to true)
28568      * @return {Boolean} True if the value matched an item in the list, else false
28569      */
28570     selectByValue : function(v, scrollIntoView){
28571         Roo.log('select By Value');
28572         return false;
28573     
28574         if(v !== undefined && v !== null){
28575             var r = this.findRecord(this.valueField || this.displayField, v);
28576             if(r){
28577                 this.select(this.store.indexOf(r), scrollIntoView);
28578                 return true;
28579             }
28580         }
28581         return false;
28582     },
28583
28584     /**
28585      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
28586      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
28587      * @param {Number} index The zero-based index of the list item to select
28588      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
28589      * selected item if it is not currently in view (defaults to true)
28590      */
28591     select : function(index, scrollIntoView){
28592         Roo.log('select ');
28593         return  ;
28594         
28595         this.selectedIndex = index;
28596         this.view.select(index);
28597         if(scrollIntoView !== false){
28598             var el = this.view.getNode(index);
28599             if(el){
28600                 this.innerList.scrollChildIntoView(el, false);
28601             }
28602         }
28603     },
28604
28605       
28606
28607     // private
28608     validateBlur : function(){
28609         
28610         return;
28611         
28612     },
28613
28614     // private
28615     initQuery : function(){
28616         this.doQuery(this.getRawValue());
28617     },
28618
28619     // private
28620     doForce : function(){
28621         if(this.el.dom.value.length > 0){
28622             this.el.dom.value =
28623                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
28624              
28625         }
28626     },
28627
28628     /**
28629      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
28630      * query allowing the query action to be canceled if needed.
28631      * @param {String} query The SQL query to execute
28632      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
28633      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
28634      * saved in the current store (defaults to false)
28635      */
28636     doQuery : function(q, forceAll){
28637         
28638         Roo.log('doQuery?');
28639         if(q === undefined || q === null){
28640             q = '';
28641         }
28642         var qe = {
28643             query: q,
28644             forceAll: forceAll,
28645             combo: this,
28646             cancel:false
28647         };
28648         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
28649             return false;
28650         }
28651         q = qe.query;
28652         forceAll = qe.forceAll;
28653         if(forceAll === true || (q.length >= this.minChars)){
28654             if(this.lastQuery != q || this.alwaysQuery){
28655                 this.lastQuery = q;
28656                 if(this.mode == 'local'){
28657                     this.selectedIndex = -1;
28658                     if(forceAll){
28659                         this.store.clearFilter();
28660                     }else{
28661                         this.store.filter(this.displayField, q);
28662                     }
28663                     this.onLoad();
28664                 }else{
28665                     this.store.baseParams[this.queryParam] = q;
28666                     this.store.load({
28667                         params: this.getParams(q)
28668                     });
28669                     this.expand();
28670                 }
28671             }else{
28672                 this.selectedIndex = -1;
28673                 this.onLoad();   
28674             }
28675         }
28676     },
28677
28678     // private
28679     getParams : function(q){
28680         var p = {};
28681         //p[this.queryParam] = q;
28682         if(this.pageSize){
28683             p.start = 0;
28684             p.limit = this.pageSize;
28685         }
28686         return p;
28687     },
28688
28689     /**
28690      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
28691      */
28692     collapse : function(){
28693         
28694     },
28695
28696     // private
28697     collapseIf : function(e){
28698         
28699     },
28700
28701     /**
28702      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
28703      */
28704     expand : function(){
28705         
28706     } ,
28707
28708     // private
28709      
28710
28711     /** 
28712     * @cfg {Boolean} grow 
28713     * @hide 
28714     */
28715     /** 
28716     * @cfg {Number} growMin 
28717     * @hide 
28718     */
28719     /** 
28720     * @cfg {Number} growMax 
28721     * @hide 
28722     */
28723     /**
28724      * @hide
28725      * @method autoSize
28726      */
28727     
28728     setWidth : function()
28729     {
28730         
28731     },
28732     getResizeEl : function(){
28733         return this.el;
28734     }
28735 });//<script type="text/javasscript">
28736  
28737
28738 /**
28739  * @class Roo.DDView
28740  * A DnD enabled version of Roo.View.
28741  * @param {Element/String} container The Element in which to create the View.
28742  * @param {String} tpl The template string used to create the markup for each element of the View
28743  * @param {Object} config The configuration properties. These include all the config options of
28744  * {@link Roo.View} plus some specific to this class.<br>
28745  * <p>
28746  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
28747  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
28748  * <p>
28749  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
28750 .x-view-drag-insert-above {
28751         border-top:1px dotted #3366cc;
28752 }
28753 .x-view-drag-insert-below {
28754         border-bottom:1px dotted #3366cc;
28755 }
28756 </code></pre>
28757  * 
28758  */
28759  
28760 Roo.DDView = function(container, tpl, config) {
28761     Roo.DDView.superclass.constructor.apply(this, arguments);
28762     this.getEl().setStyle("outline", "0px none");
28763     this.getEl().unselectable();
28764     if (this.dragGroup) {
28765                 this.setDraggable(this.dragGroup.split(","));
28766     }
28767     if (this.dropGroup) {
28768                 this.setDroppable(this.dropGroup.split(","));
28769     }
28770     if (this.deletable) {
28771         this.setDeletable();
28772     }
28773     this.isDirtyFlag = false;
28774         this.addEvents({
28775                 "drop" : true
28776         });
28777 };
28778
28779 Roo.extend(Roo.DDView, Roo.View, {
28780 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
28781 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
28782 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
28783 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
28784
28785         isFormField: true,
28786
28787         reset: Roo.emptyFn,
28788         
28789         clearInvalid: Roo.form.Field.prototype.clearInvalid,
28790
28791         validate: function() {
28792                 return true;
28793         },
28794         
28795         destroy: function() {
28796                 this.purgeListeners();
28797                 this.getEl.removeAllListeners();
28798                 this.getEl().remove();
28799                 if (this.dragZone) {
28800                         if (this.dragZone.destroy) {
28801                                 this.dragZone.destroy();
28802                         }
28803                 }
28804                 if (this.dropZone) {
28805                         if (this.dropZone.destroy) {
28806                                 this.dropZone.destroy();
28807                         }
28808                 }
28809         },
28810
28811 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
28812         getName: function() {
28813                 return this.name;
28814         },
28815
28816 /**     Loads the View from a JSON string representing the Records to put into the Store. */
28817         setValue: function(v) {
28818                 if (!this.store) {
28819                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
28820                 }
28821                 var data = {};
28822                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
28823                 this.store.proxy = new Roo.data.MemoryProxy(data);
28824                 this.store.load();
28825         },
28826
28827 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
28828         getValue: function() {
28829                 var result = '(';
28830                 this.store.each(function(rec) {
28831                         result += rec.id + ',';
28832                 });
28833                 return result.substr(0, result.length - 1) + ')';
28834         },
28835         
28836         getIds: function() {
28837                 var i = 0, result = new Array(this.store.getCount());
28838                 this.store.each(function(rec) {
28839                         result[i++] = rec.id;
28840                 });
28841                 return result;
28842         },
28843         
28844         isDirty: function() {
28845                 return this.isDirtyFlag;
28846         },
28847
28848 /**
28849  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
28850  *      whole Element becomes the target, and this causes the drop gesture to append.
28851  */
28852     getTargetFromEvent : function(e) {
28853                 var target = e.getTarget();
28854                 while ((target !== null) && (target.parentNode != this.el.dom)) {
28855                 target = target.parentNode;
28856                 }
28857                 if (!target) {
28858                         target = this.el.dom.lastChild || this.el.dom;
28859                 }
28860                 return target;
28861     },
28862
28863 /**
28864  *      Create the drag data which consists of an object which has the property "ddel" as
28865  *      the drag proxy element. 
28866  */
28867     getDragData : function(e) {
28868         var target = this.findItemFromChild(e.getTarget());
28869                 if(target) {
28870                         this.handleSelection(e);
28871                         var selNodes = this.getSelectedNodes();
28872             var dragData = {
28873                 source: this,
28874                 copy: this.copy || (this.allowCopy && e.ctrlKey),
28875                 nodes: selNodes,
28876                 records: []
28877                         };
28878                         var selectedIndices = this.getSelectedIndexes();
28879                         for (var i = 0; i < selectedIndices.length; i++) {
28880                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
28881                         }
28882                         if (selNodes.length == 1) {
28883                                 dragData.ddel = target.cloneNode(true); // the div element
28884                         } else {
28885                                 var div = document.createElement('div'); // create the multi element drag "ghost"
28886                                 div.className = 'multi-proxy';
28887                                 for (var i = 0, len = selNodes.length; i < len; i++) {
28888                                         div.appendChild(selNodes[i].cloneNode(true));
28889                                 }
28890                                 dragData.ddel = div;
28891                         }
28892             //console.log(dragData)
28893             //console.log(dragData.ddel.innerHTML)
28894                         return dragData;
28895                 }
28896         //console.log('nodragData')
28897                 return false;
28898     },
28899     
28900 /**     Specify to which ddGroup items in this DDView may be dragged. */
28901     setDraggable: function(ddGroup) {
28902         if (ddGroup instanceof Array) {
28903                 Roo.each(ddGroup, this.setDraggable, this);
28904                 return;
28905         }
28906         if (this.dragZone) {
28907                 this.dragZone.addToGroup(ddGroup);
28908         } else {
28909                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
28910                                 containerScroll: true,
28911                                 ddGroup: ddGroup 
28912
28913                         });
28914 //                      Draggability implies selection. DragZone's mousedown selects the element.
28915                         if (!this.multiSelect) { this.singleSelect = true; }
28916
28917 //                      Wire the DragZone's handlers up to methods in *this*
28918                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
28919                 }
28920     },
28921
28922 /**     Specify from which ddGroup this DDView accepts drops. */
28923     setDroppable: function(ddGroup) {
28924         if (ddGroup instanceof Array) {
28925                 Roo.each(ddGroup, this.setDroppable, this);
28926                 return;
28927         }
28928         if (this.dropZone) {
28929                 this.dropZone.addToGroup(ddGroup);
28930         } else {
28931                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
28932                                 containerScroll: true,
28933                                 ddGroup: ddGroup
28934                         });
28935
28936 //                      Wire the DropZone's handlers up to methods in *this*
28937                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
28938                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
28939                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
28940                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
28941                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
28942                 }
28943     },
28944
28945 /**     Decide whether to drop above or below a View node. */
28946     getDropPoint : function(e, n, dd){
28947         if (n == this.el.dom) { return "above"; }
28948                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
28949                 var c = t + (b - t) / 2;
28950                 var y = Roo.lib.Event.getPageY(e);
28951                 if(y <= c) {
28952                         return "above";
28953                 }else{
28954                         return "below";
28955                 }
28956     },
28957
28958     onNodeEnter : function(n, dd, e, data){
28959                 return false;
28960     },
28961     
28962     onNodeOver : function(n, dd, e, data){
28963                 var pt = this.getDropPoint(e, n, dd);
28964                 // set the insert point style on the target node
28965                 var dragElClass = this.dropNotAllowed;
28966                 if (pt) {
28967                         var targetElClass;
28968                         if (pt == "above"){
28969                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
28970                                 targetElClass = "x-view-drag-insert-above";
28971                         } else {
28972                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
28973                                 targetElClass = "x-view-drag-insert-below";
28974                         }
28975                         if (this.lastInsertClass != targetElClass){
28976                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
28977                                 this.lastInsertClass = targetElClass;
28978                         }
28979                 }
28980                 return dragElClass;
28981         },
28982
28983     onNodeOut : function(n, dd, e, data){
28984                 this.removeDropIndicators(n);
28985     },
28986
28987     onNodeDrop : function(n, dd, e, data){
28988         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
28989                 return false;
28990         }
28991         var pt = this.getDropPoint(e, n, dd);
28992                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
28993                 if (pt == "below") { insertAt++; }
28994                 for (var i = 0; i < data.records.length; i++) {
28995                         var r = data.records[i];
28996                         var dup = this.store.getById(r.id);
28997                         if (dup && (dd != this.dragZone)) {
28998                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
28999                         } else {
29000                                 if (data.copy) {
29001                                         this.store.insert(insertAt++, r.copy());
29002                                 } else {
29003                                         data.source.isDirtyFlag = true;
29004                                         r.store.remove(r);
29005                                         this.store.insert(insertAt++, r);
29006                                 }
29007                                 this.isDirtyFlag = true;
29008                         }
29009                 }
29010                 this.dragZone.cachedTarget = null;
29011                 return true;
29012     },
29013
29014     removeDropIndicators : function(n){
29015                 if(n){
29016                         Roo.fly(n).removeClass([
29017                                 "x-view-drag-insert-above",
29018                                 "x-view-drag-insert-below"]);
29019                         this.lastInsertClass = "_noclass";
29020                 }
29021     },
29022
29023 /**
29024  *      Utility method. Add a delete option to the DDView's context menu.
29025  *      @param {String} imageUrl The URL of the "delete" icon image.
29026  */
29027         setDeletable: function(imageUrl) {
29028                 if (!this.singleSelect && !this.multiSelect) {
29029                         this.singleSelect = true;
29030                 }
29031                 var c = this.getContextMenu();
29032                 this.contextMenu.on("itemclick", function(item) {
29033                         switch (item.id) {
29034                                 case "delete":
29035                                         this.remove(this.getSelectedIndexes());
29036                                         break;
29037                         }
29038                 }, this);
29039                 this.contextMenu.add({
29040                         icon: imageUrl,
29041                         id: "delete",
29042                         text: 'Delete'
29043                 });
29044         },
29045         
29046 /**     Return the context menu for this DDView. */
29047         getContextMenu: function() {
29048                 if (!this.contextMenu) {
29049 //                      Create the View's context menu
29050                         this.contextMenu = new Roo.menu.Menu({
29051                                 id: this.id + "-contextmenu"
29052                         });
29053                         this.el.on("contextmenu", this.showContextMenu, this);
29054                 }
29055                 return this.contextMenu;
29056         },
29057         
29058         disableContextMenu: function() {
29059                 if (this.contextMenu) {
29060                         this.el.un("contextmenu", this.showContextMenu, this);
29061                 }
29062         },
29063
29064         showContextMenu: function(e, item) {
29065         item = this.findItemFromChild(e.getTarget());
29066                 if (item) {
29067                         e.stopEvent();
29068                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
29069                         this.contextMenu.showAt(e.getXY());
29070             }
29071     },
29072
29073 /**
29074  *      Remove {@link Roo.data.Record}s at the specified indices.
29075  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
29076  */
29077     remove: function(selectedIndices) {
29078                 selectedIndices = [].concat(selectedIndices);
29079                 for (var i = 0; i < selectedIndices.length; i++) {
29080                         var rec = this.store.getAt(selectedIndices[i]);
29081                         this.store.remove(rec);
29082                 }
29083     },
29084
29085 /**
29086  *      Double click fires the event, but also, if this is draggable, and there is only one other
29087  *      related DropZone, it transfers the selected node.
29088  */
29089     onDblClick : function(e){
29090         var item = this.findItemFromChild(e.getTarget());
29091         if(item){
29092             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
29093                 return false;
29094             }
29095             if (this.dragGroup) {
29096                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
29097                     while (targets.indexOf(this.dropZone) > -1) {
29098                             targets.remove(this.dropZone);
29099                                 }
29100                     if (targets.length == 1) {
29101                                         this.dragZone.cachedTarget = null;
29102                         var el = Roo.get(targets[0].getEl());
29103                         var box = el.getBox(true);
29104                         targets[0].onNodeDrop(el.dom, {
29105                                 target: el.dom,
29106                                 xy: [box.x, box.y + box.height - 1]
29107                         }, null, this.getDragData(e));
29108                     }
29109                 }
29110         }
29111     },
29112     
29113     handleSelection: function(e) {
29114                 this.dragZone.cachedTarget = null;
29115         var item = this.findItemFromChild(e.getTarget());
29116         if (!item) {
29117                 this.clearSelections(true);
29118                 return;
29119         }
29120                 if (item && (this.multiSelect || this.singleSelect)){
29121                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
29122                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
29123                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
29124                                 this.unselect(item);
29125                         } else {
29126                                 this.select(item, this.multiSelect && e.ctrlKey);
29127                                 this.lastSelection = item;
29128                         }
29129                 }
29130     },
29131
29132     onItemClick : function(item, index, e){
29133                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
29134                         return false;
29135                 }
29136                 return true;
29137     },
29138
29139     unselect : function(nodeInfo, suppressEvent){
29140                 var node = this.getNode(nodeInfo);
29141                 if(node && this.isSelected(node)){
29142                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
29143                                 Roo.fly(node).removeClass(this.selectedClass);
29144                                 this.selections.remove(node);
29145                                 if(!suppressEvent){
29146                                         this.fireEvent("selectionchange", this, this.selections);
29147                                 }
29148                         }
29149                 }
29150     }
29151 });
29152 /*
29153  * Based on:
29154  * Ext JS Library 1.1.1
29155  * Copyright(c) 2006-2007, Ext JS, LLC.
29156  *
29157  * Originally Released Under LGPL - original licence link has changed is not relivant.
29158  *
29159  * Fork - LGPL
29160  * <script type="text/javascript">
29161  */
29162  
29163 /**
29164  * @class Roo.LayoutManager
29165  * @extends Roo.util.Observable
29166  * Base class for layout managers.
29167  */
29168 Roo.LayoutManager = function(container, config){
29169     Roo.LayoutManager.superclass.constructor.call(this);
29170     this.el = Roo.get(container);
29171     // ie scrollbar fix
29172     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
29173         document.body.scroll = "no";
29174     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
29175         this.el.position('relative');
29176     }
29177     this.id = this.el.id;
29178     this.el.addClass("x-layout-container");
29179     /** false to disable window resize monitoring @type Boolean */
29180     this.monitorWindowResize = true;
29181     this.regions = {};
29182     this.addEvents({
29183         /**
29184          * @event layout
29185          * Fires when a layout is performed. 
29186          * @param {Roo.LayoutManager} this
29187          */
29188         "layout" : true,
29189         /**
29190          * @event regionresized
29191          * Fires when the user resizes a region. 
29192          * @param {Roo.LayoutRegion} region The resized region
29193          * @param {Number} newSize The new size (width for east/west, height for north/south)
29194          */
29195         "regionresized" : true,
29196         /**
29197          * @event regioncollapsed
29198          * Fires when a region is collapsed. 
29199          * @param {Roo.LayoutRegion} region The collapsed region
29200          */
29201         "regioncollapsed" : true,
29202         /**
29203          * @event regionexpanded
29204          * Fires when a region is expanded.  
29205          * @param {Roo.LayoutRegion} region The expanded region
29206          */
29207         "regionexpanded" : true
29208     });
29209     this.updating = false;
29210     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
29211 };
29212
29213 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
29214     /**
29215      * Returns true if this layout is currently being updated
29216      * @return {Boolean}
29217      */
29218     isUpdating : function(){
29219         return this.updating; 
29220     },
29221     
29222     /**
29223      * Suspend the LayoutManager from doing auto-layouts while
29224      * making multiple add or remove calls
29225      */
29226     beginUpdate : function(){
29227         this.updating = true;    
29228     },
29229     
29230     /**
29231      * Restore auto-layouts and optionally disable the manager from performing a layout
29232      * @param {Boolean} noLayout true to disable a layout update 
29233      */
29234     endUpdate : function(noLayout){
29235         this.updating = false;
29236         if(!noLayout){
29237             this.layout();
29238         }    
29239     },
29240     
29241     layout: function(){
29242         
29243     },
29244     
29245     onRegionResized : function(region, newSize){
29246         this.fireEvent("regionresized", region, newSize);
29247         this.layout();
29248     },
29249     
29250     onRegionCollapsed : function(region){
29251         this.fireEvent("regioncollapsed", region);
29252     },
29253     
29254     onRegionExpanded : function(region){
29255         this.fireEvent("regionexpanded", region);
29256     },
29257         
29258     /**
29259      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
29260      * performs box-model adjustments.
29261      * @return {Object} The size as an object {width: (the width), height: (the height)}
29262      */
29263     getViewSize : function(){
29264         var size;
29265         if(this.el.dom != document.body){
29266             size = this.el.getSize();
29267         }else{
29268             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
29269         }
29270         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
29271         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
29272         return size;
29273     },
29274     
29275     /**
29276      * Returns the Element this layout is bound to.
29277      * @return {Roo.Element}
29278      */
29279     getEl : function(){
29280         return this.el;
29281     },
29282     
29283     /**
29284      * Returns the specified region.
29285      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
29286      * @return {Roo.LayoutRegion}
29287      */
29288     getRegion : function(target){
29289         return this.regions[target.toLowerCase()];
29290     },
29291     
29292     onWindowResize : function(){
29293         if(this.monitorWindowResize){
29294             this.layout();
29295         }
29296     }
29297 });/*
29298  * Based on:
29299  * Ext JS Library 1.1.1
29300  * Copyright(c) 2006-2007, Ext JS, LLC.
29301  *
29302  * Originally Released Under LGPL - original licence link has changed is not relivant.
29303  *
29304  * Fork - LGPL
29305  * <script type="text/javascript">
29306  */
29307 /**
29308  * @class Roo.BorderLayout
29309  * @extends Roo.LayoutManager
29310  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
29311  * please see: <br><br>
29312  * <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>
29313  * <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>
29314  * Example:
29315  <pre><code>
29316  var layout = new Roo.BorderLayout(document.body, {
29317     north: {
29318         initialSize: 25,
29319         titlebar: false
29320     },
29321     west: {
29322         split:true,
29323         initialSize: 200,
29324         minSize: 175,
29325         maxSize: 400,
29326         titlebar: true,
29327         collapsible: true
29328     },
29329     east: {
29330         split:true,
29331         initialSize: 202,
29332         minSize: 175,
29333         maxSize: 400,
29334         titlebar: true,
29335         collapsible: true
29336     },
29337     south: {
29338         split:true,
29339         initialSize: 100,
29340         minSize: 100,
29341         maxSize: 200,
29342         titlebar: true,
29343         collapsible: true
29344     },
29345     center: {
29346         titlebar: true,
29347         autoScroll:true,
29348         resizeTabs: true,
29349         minTabWidth: 50,
29350         preferredTabWidth: 150
29351     }
29352 });
29353
29354 // shorthand
29355 var CP = Roo.ContentPanel;
29356
29357 layout.beginUpdate();
29358 layout.add("north", new CP("north", "North"));
29359 layout.add("south", new CP("south", {title: "South", closable: true}));
29360 layout.add("west", new CP("west", {title: "West"}));
29361 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
29362 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
29363 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
29364 layout.getRegion("center").showPanel("center1");
29365 layout.endUpdate();
29366 </code></pre>
29367
29368 <b>The container the layout is rendered into can be either the body element or any other element.
29369 If it is not the body element, the container needs to either be an absolute positioned element,
29370 or you will need to add "position:relative" to the css of the container.  You will also need to specify
29371 the container size if it is not the body element.</b>
29372
29373 * @constructor
29374 * Create a new BorderLayout
29375 * @param {String/HTMLElement/Element} container The container this layout is bound to
29376 * @param {Object} config Configuration options
29377  */
29378 Roo.BorderLayout = function(container, config){
29379     config = config || {};
29380     Roo.BorderLayout.superclass.constructor.call(this, container, config);
29381     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
29382     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
29383         var target = this.factory.validRegions[i];
29384         if(config[target]){
29385             this.addRegion(target, config[target]);
29386         }
29387     }
29388 };
29389
29390 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
29391     /**
29392      * Creates and adds a new region if it doesn't already exist.
29393      * @param {String} target The target region key (north, south, east, west or center).
29394      * @param {Object} config The regions config object
29395      * @return {BorderLayoutRegion} The new region
29396      */
29397     addRegion : function(target, config){
29398         if(!this.regions[target]){
29399             var r = this.factory.create(target, this, config);
29400             this.bindRegion(target, r);
29401         }
29402         return this.regions[target];
29403     },
29404
29405     // private (kinda)
29406     bindRegion : function(name, r){
29407         this.regions[name] = r;
29408         r.on("visibilitychange", this.layout, this);
29409         r.on("paneladded", this.layout, this);
29410         r.on("panelremoved", this.layout, this);
29411         r.on("invalidated", this.layout, this);
29412         r.on("resized", this.onRegionResized, this);
29413         r.on("collapsed", this.onRegionCollapsed, this);
29414         r.on("expanded", this.onRegionExpanded, this);
29415     },
29416
29417     /**
29418      * Performs a layout update.
29419      */
29420     layout : function(){
29421         if(this.updating) {
29422             return;
29423         }
29424         var size = this.getViewSize();
29425         var w = size.width;
29426         var h = size.height;
29427         var centerW = w;
29428         var centerH = h;
29429         var centerY = 0;
29430         var centerX = 0;
29431         //var x = 0, y = 0;
29432
29433         var rs = this.regions;
29434         var north = rs["north"];
29435         var south = rs["south"]; 
29436         var west = rs["west"];
29437         var east = rs["east"];
29438         var center = rs["center"];
29439         //if(this.hideOnLayout){ // not supported anymore
29440             //c.el.setStyle("display", "none");
29441         //}
29442         if(north && north.isVisible()){
29443             var b = north.getBox();
29444             var m = north.getMargins();
29445             b.width = w - (m.left+m.right);
29446             b.x = m.left;
29447             b.y = m.top;
29448             centerY = b.height + b.y + m.bottom;
29449             centerH -= centerY;
29450             north.updateBox(this.safeBox(b));
29451         }
29452         if(south && south.isVisible()){
29453             var b = south.getBox();
29454             var m = south.getMargins();
29455             b.width = w - (m.left+m.right);
29456             b.x = m.left;
29457             var totalHeight = (b.height + m.top + m.bottom);
29458             b.y = h - totalHeight + m.top;
29459             centerH -= totalHeight;
29460             south.updateBox(this.safeBox(b));
29461         }
29462         if(west && west.isVisible()){
29463             var b = west.getBox();
29464             var m = west.getMargins();
29465             b.height = centerH - (m.top+m.bottom);
29466             b.x = m.left;
29467             b.y = centerY + m.top;
29468             var totalWidth = (b.width + m.left + m.right);
29469             centerX += totalWidth;
29470             centerW -= totalWidth;
29471             west.updateBox(this.safeBox(b));
29472         }
29473         if(east && east.isVisible()){
29474             var b = east.getBox();
29475             var m = east.getMargins();
29476             b.height = centerH - (m.top+m.bottom);
29477             var totalWidth = (b.width + m.left + m.right);
29478             b.x = w - totalWidth + m.left;
29479             b.y = centerY + m.top;
29480             centerW -= totalWidth;
29481             east.updateBox(this.safeBox(b));
29482         }
29483         if(center){
29484             var m = center.getMargins();
29485             var centerBox = {
29486                 x: centerX + m.left,
29487                 y: centerY + m.top,
29488                 width: centerW - (m.left+m.right),
29489                 height: centerH - (m.top+m.bottom)
29490             };
29491             //if(this.hideOnLayout){
29492                 //center.el.setStyle("display", "block");
29493             //}
29494             center.updateBox(this.safeBox(centerBox));
29495         }
29496         this.el.repaint();
29497         this.fireEvent("layout", this);
29498     },
29499
29500     // private
29501     safeBox : function(box){
29502         box.width = Math.max(0, box.width);
29503         box.height = Math.max(0, box.height);
29504         return box;
29505     },
29506
29507     /**
29508      * Adds a ContentPanel (or subclass) to this layout.
29509      * @param {String} target The target region key (north, south, east, west or center).
29510      * @param {Roo.ContentPanel} panel The panel to add
29511      * @return {Roo.ContentPanel} The added panel
29512      */
29513     add : function(target, panel){
29514          
29515         target = target.toLowerCase();
29516         return this.regions[target].add(panel);
29517     },
29518
29519     /**
29520      * Remove a ContentPanel (or subclass) to this layout.
29521      * @param {String} target The target region key (north, south, east, west or center).
29522      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
29523      * @return {Roo.ContentPanel} The removed panel
29524      */
29525     remove : function(target, panel){
29526         target = target.toLowerCase();
29527         return this.regions[target].remove(panel);
29528     },
29529
29530     /**
29531      * Searches all regions for a panel with the specified id
29532      * @param {String} panelId
29533      * @return {Roo.ContentPanel} The panel or null if it wasn't found
29534      */
29535     findPanel : function(panelId){
29536         var rs = this.regions;
29537         for(var target in rs){
29538             if(typeof rs[target] != "function"){
29539                 var p = rs[target].getPanel(panelId);
29540                 if(p){
29541                     return p;
29542                 }
29543             }
29544         }
29545         return null;
29546     },
29547
29548     /**
29549      * Searches all regions for a panel with the specified id and activates (shows) it.
29550      * @param {String/ContentPanel} panelId The panels id or the panel itself
29551      * @return {Roo.ContentPanel} The shown panel or null
29552      */
29553     showPanel : function(panelId) {
29554       var rs = this.regions;
29555       for(var target in rs){
29556          var r = rs[target];
29557          if(typeof r != "function"){
29558             if(r.hasPanel(panelId)){
29559                return r.showPanel(panelId);
29560             }
29561          }
29562       }
29563       return null;
29564    },
29565
29566    /**
29567      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
29568      * @param {Roo.state.Provider} provider (optional) An alternate state provider
29569      */
29570     restoreState : function(provider){
29571         if(!provider){
29572             provider = Roo.state.Manager;
29573         }
29574         var sm = new Roo.LayoutStateManager();
29575         sm.init(this, provider);
29576     },
29577
29578     /**
29579      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
29580      * object should contain properties for each region to add ContentPanels to, and each property's value should be
29581      * a valid ContentPanel config object.  Example:
29582      * <pre><code>
29583 // Create the main layout
29584 var layout = new Roo.BorderLayout('main-ct', {
29585     west: {
29586         split:true,
29587         minSize: 175,
29588         titlebar: true
29589     },
29590     center: {
29591         title:'Components'
29592     }
29593 }, 'main-ct');
29594
29595 // Create and add multiple ContentPanels at once via configs
29596 layout.batchAdd({
29597    west: {
29598        id: 'source-files',
29599        autoCreate:true,
29600        title:'Ext Source Files',
29601        autoScroll:true,
29602        fitToFrame:true
29603    },
29604    center : {
29605        el: cview,
29606        autoScroll:true,
29607        fitToFrame:true,
29608        toolbar: tb,
29609        resizeEl:'cbody'
29610    }
29611 });
29612 </code></pre>
29613      * @param {Object} regions An object containing ContentPanel configs by region name
29614      */
29615     batchAdd : function(regions){
29616         this.beginUpdate();
29617         for(var rname in regions){
29618             var lr = this.regions[rname];
29619             if(lr){
29620                 this.addTypedPanels(lr, regions[rname]);
29621             }
29622         }
29623         this.endUpdate();
29624     },
29625
29626     // private
29627     addTypedPanels : function(lr, ps){
29628         if(typeof ps == 'string'){
29629             lr.add(new Roo.ContentPanel(ps));
29630         }
29631         else if(ps instanceof Array){
29632             for(var i =0, len = ps.length; i < len; i++){
29633                 this.addTypedPanels(lr, ps[i]);
29634             }
29635         }
29636         else if(!ps.events){ // raw config?
29637             var el = ps.el;
29638             delete ps.el; // prevent conflict
29639             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
29640         }
29641         else {  // panel object assumed!
29642             lr.add(ps);
29643         }
29644     },
29645     /**
29646      * Adds a xtype elements to the layout.
29647      * <pre><code>
29648
29649 layout.addxtype({
29650        xtype : 'ContentPanel',
29651        region: 'west',
29652        items: [ .... ]
29653    }
29654 );
29655
29656 layout.addxtype({
29657         xtype : 'NestedLayoutPanel',
29658         region: 'west',
29659         layout: {
29660            center: { },
29661            west: { }   
29662         },
29663         items : [ ... list of content panels or nested layout panels.. ]
29664    }
29665 );
29666 </code></pre>
29667      * @param {Object} cfg Xtype definition of item to add.
29668      */
29669     addxtype : function(cfg)
29670     {
29671         // basically accepts a pannel...
29672         // can accept a layout region..!?!?
29673         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
29674         
29675         if (!cfg.xtype.match(/Panel$/)) {
29676             return false;
29677         }
29678         var ret = false;
29679         
29680         if (typeof(cfg.region) == 'undefined') {
29681             Roo.log("Failed to add Panel, region was not set");
29682             Roo.log(cfg);
29683             return false;
29684         }
29685         var region = cfg.region;
29686         delete cfg.region;
29687         
29688           
29689         var xitems = [];
29690         if (cfg.items) {
29691             xitems = cfg.items;
29692             delete cfg.items;
29693         }
29694         var nb = false;
29695         
29696         switch(cfg.xtype) 
29697         {
29698             case 'ContentPanel':  // ContentPanel (el, cfg)
29699             case 'ScrollPanel':  // ContentPanel (el, cfg)
29700             case 'ViewPanel': 
29701                 if(cfg.autoCreate) {
29702                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29703                 } else {
29704                     var el = this.el.createChild();
29705                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
29706                 }
29707                 
29708                 this.add(region, ret);
29709                 break;
29710             
29711             
29712             case 'TreePanel': // our new panel!
29713                 cfg.el = this.el.createChild();
29714                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29715                 this.add(region, ret);
29716                 break;
29717             
29718             case 'NestedLayoutPanel': 
29719                 // create a new Layout (which is  a Border Layout...
29720                 var el = this.el.createChild();
29721                 var clayout = cfg.layout;
29722                 delete cfg.layout;
29723                 clayout.items   = clayout.items  || [];
29724                 // replace this exitems with the clayout ones..
29725                 xitems = clayout.items;
29726                  
29727                 
29728                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
29729                     cfg.background = false;
29730                 }
29731                 var layout = new Roo.BorderLayout(el, clayout);
29732                 
29733                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
29734                 //console.log('adding nested layout panel '  + cfg.toSource());
29735                 this.add(region, ret);
29736                 nb = {}; /// find first...
29737                 break;
29738                 
29739             case 'GridPanel': 
29740             
29741                 // needs grid and region
29742                 
29743                 //var el = this.getRegion(region).el.createChild();
29744                 var el = this.el.createChild();
29745                 // create the grid first...
29746                 
29747                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
29748                 delete cfg.grid;
29749                 if (region == 'center' && this.active ) {
29750                     cfg.background = false;
29751                 }
29752                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
29753                 
29754                 this.add(region, ret);
29755                 if (cfg.background) {
29756                     ret.on('activate', function(gp) {
29757                         if (!gp.grid.rendered) {
29758                             gp.grid.render();
29759                         }
29760                     });
29761                 } else {
29762                     grid.render();
29763                 }
29764                 break;
29765            
29766            
29767            
29768                 
29769                 
29770                 
29771             default:
29772                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
29773                     
29774                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
29775                     this.add(region, ret);
29776                 } else {
29777                 
29778                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
29779                     return null;
29780                 }
29781                 
29782              // GridPanel (grid, cfg)
29783             
29784         }
29785         this.beginUpdate();
29786         // add children..
29787         var region = '';
29788         var abn = {};
29789         Roo.each(xitems, function(i)  {
29790             region = nb && i.region ? i.region : false;
29791             
29792             var add = ret.addxtype(i);
29793            
29794             if (region) {
29795                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
29796                 if (!i.background) {
29797                     abn[region] = nb[region] ;
29798                 }
29799             }
29800             
29801         });
29802         this.endUpdate();
29803
29804         // make the last non-background panel active..
29805         //if (nb) { Roo.log(abn); }
29806         if (nb) {
29807             
29808             for(var r in abn) {
29809                 region = this.getRegion(r);
29810                 if (region) {
29811                     // tried using nb[r], but it does not work..
29812                      
29813                     region.showPanel(abn[r]);
29814                    
29815                 }
29816             }
29817         }
29818         return ret;
29819         
29820     }
29821 });
29822
29823 /**
29824  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
29825  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
29826  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
29827  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
29828  * <pre><code>
29829 // shorthand
29830 var CP = Roo.ContentPanel;
29831
29832 var layout = Roo.BorderLayout.create({
29833     north: {
29834         initialSize: 25,
29835         titlebar: false,
29836         panels: [new CP("north", "North")]
29837     },
29838     west: {
29839         split:true,
29840         initialSize: 200,
29841         minSize: 175,
29842         maxSize: 400,
29843         titlebar: true,
29844         collapsible: true,
29845         panels: [new CP("west", {title: "West"})]
29846     },
29847     east: {
29848         split:true,
29849         initialSize: 202,
29850         minSize: 175,
29851         maxSize: 400,
29852         titlebar: true,
29853         collapsible: true,
29854         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
29855     },
29856     south: {
29857         split:true,
29858         initialSize: 100,
29859         minSize: 100,
29860         maxSize: 200,
29861         titlebar: true,
29862         collapsible: true,
29863         panels: [new CP("south", {title: "South", closable: true})]
29864     },
29865     center: {
29866         titlebar: true,
29867         autoScroll:true,
29868         resizeTabs: true,
29869         minTabWidth: 50,
29870         preferredTabWidth: 150,
29871         panels: [
29872             new CP("center1", {title: "Close Me", closable: true}),
29873             new CP("center2", {title: "Center Panel", closable: false})
29874         ]
29875     }
29876 }, document.body);
29877
29878 layout.getRegion("center").showPanel("center1");
29879 </code></pre>
29880  * @param config
29881  * @param targetEl
29882  */
29883 Roo.BorderLayout.create = function(config, targetEl){
29884     var layout = new Roo.BorderLayout(targetEl || document.body, config);
29885     layout.beginUpdate();
29886     var regions = Roo.BorderLayout.RegionFactory.validRegions;
29887     for(var j = 0, jlen = regions.length; j < jlen; j++){
29888         var lr = regions[j];
29889         if(layout.regions[lr] && config[lr].panels){
29890             var r = layout.regions[lr];
29891             var ps = config[lr].panels;
29892             layout.addTypedPanels(r, ps);
29893         }
29894     }
29895     layout.endUpdate();
29896     return layout;
29897 };
29898
29899 // private
29900 Roo.BorderLayout.RegionFactory = {
29901     // private
29902     validRegions : ["north","south","east","west","center"],
29903
29904     // private
29905     create : function(target, mgr, config){
29906         target = target.toLowerCase();
29907         if(config.lightweight || config.basic){
29908             return new Roo.BasicLayoutRegion(mgr, config, target);
29909         }
29910         switch(target){
29911             case "north":
29912                 return new Roo.NorthLayoutRegion(mgr, config);
29913             case "south":
29914                 return new Roo.SouthLayoutRegion(mgr, config);
29915             case "east":
29916                 return new Roo.EastLayoutRegion(mgr, config);
29917             case "west":
29918                 return new Roo.WestLayoutRegion(mgr, config);
29919             case "center":
29920                 return new Roo.CenterLayoutRegion(mgr, config);
29921         }
29922         throw 'Layout region "'+target+'" not supported.';
29923     }
29924 };/*
29925  * Based on:
29926  * Ext JS Library 1.1.1
29927  * Copyright(c) 2006-2007, Ext JS, LLC.
29928  *
29929  * Originally Released Under LGPL - original licence link has changed is not relivant.
29930  *
29931  * Fork - LGPL
29932  * <script type="text/javascript">
29933  */
29934  
29935 /**
29936  * @class Roo.BasicLayoutRegion
29937  * @extends Roo.util.Observable
29938  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
29939  * and does not have a titlebar, tabs or any other features. All it does is size and position 
29940  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
29941  */
29942 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
29943     this.mgr = mgr;
29944     this.position  = pos;
29945     this.events = {
29946         /**
29947          * @scope Roo.BasicLayoutRegion
29948          */
29949         
29950         /**
29951          * @event beforeremove
29952          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
29953          * @param {Roo.LayoutRegion} this
29954          * @param {Roo.ContentPanel} panel The panel
29955          * @param {Object} e The cancel event object
29956          */
29957         "beforeremove" : true,
29958         /**
29959          * @event invalidated
29960          * Fires when the layout for this region is changed.
29961          * @param {Roo.LayoutRegion} this
29962          */
29963         "invalidated" : true,
29964         /**
29965          * @event visibilitychange
29966          * Fires when this region is shown or hidden 
29967          * @param {Roo.LayoutRegion} this
29968          * @param {Boolean} visibility true or false
29969          */
29970         "visibilitychange" : true,
29971         /**
29972          * @event paneladded
29973          * Fires when a panel is added. 
29974          * @param {Roo.LayoutRegion} this
29975          * @param {Roo.ContentPanel} panel The panel
29976          */
29977         "paneladded" : true,
29978         /**
29979          * @event panelremoved
29980          * Fires when a panel is removed. 
29981          * @param {Roo.LayoutRegion} this
29982          * @param {Roo.ContentPanel} panel The panel
29983          */
29984         "panelremoved" : true,
29985         /**
29986          * @event beforecollapse
29987          * Fires when this region before collapse.
29988          * @param {Roo.LayoutRegion} this
29989          */
29990         "beforecollapse" : true,
29991         /**
29992          * @event collapsed
29993          * Fires when this region is collapsed.
29994          * @param {Roo.LayoutRegion} this
29995          */
29996         "collapsed" : true,
29997         /**
29998          * @event expanded
29999          * Fires when this region is expanded.
30000          * @param {Roo.LayoutRegion} this
30001          */
30002         "expanded" : true,
30003         /**
30004          * @event slideshow
30005          * Fires when this region is slid into view.
30006          * @param {Roo.LayoutRegion} this
30007          */
30008         "slideshow" : true,
30009         /**
30010          * @event slidehide
30011          * Fires when this region slides out of view. 
30012          * @param {Roo.LayoutRegion} this
30013          */
30014         "slidehide" : true,
30015         /**
30016          * @event panelactivated
30017          * Fires when a panel is activated. 
30018          * @param {Roo.LayoutRegion} this
30019          * @param {Roo.ContentPanel} panel The activated panel
30020          */
30021         "panelactivated" : true,
30022         /**
30023          * @event resized
30024          * Fires when the user resizes this region. 
30025          * @param {Roo.LayoutRegion} this
30026          * @param {Number} newSize The new size (width for east/west, height for north/south)
30027          */
30028         "resized" : true
30029     };
30030     /** A collection of panels in this region. @type Roo.util.MixedCollection */
30031     this.panels = new Roo.util.MixedCollection();
30032     this.panels.getKey = this.getPanelId.createDelegate(this);
30033     this.box = null;
30034     this.activePanel = null;
30035     // ensure listeners are added...
30036     
30037     if (config.listeners || config.events) {
30038         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
30039             listeners : config.listeners || {},
30040             events : config.events || {}
30041         });
30042     }
30043     
30044     if(skipConfig !== true){
30045         this.applyConfig(config);
30046     }
30047 };
30048
30049 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
30050     getPanelId : function(p){
30051         return p.getId();
30052     },
30053     
30054     applyConfig : function(config){
30055         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
30056         this.config = config;
30057         
30058     },
30059     
30060     /**
30061      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
30062      * the width, for horizontal (north, south) the height.
30063      * @param {Number} newSize The new width or height
30064      */
30065     resizeTo : function(newSize){
30066         var el = this.el ? this.el :
30067                  (this.activePanel ? this.activePanel.getEl() : null);
30068         if(el){
30069             switch(this.position){
30070                 case "east":
30071                 case "west":
30072                     el.setWidth(newSize);
30073                     this.fireEvent("resized", this, newSize);
30074                 break;
30075                 case "north":
30076                 case "south":
30077                     el.setHeight(newSize);
30078                     this.fireEvent("resized", this, newSize);
30079                 break;                
30080             }
30081         }
30082     },
30083     
30084     getBox : function(){
30085         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
30086     },
30087     
30088     getMargins : function(){
30089         return this.margins;
30090     },
30091     
30092     updateBox : function(box){
30093         this.box = box;
30094         var el = this.activePanel.getEl();
30095         el.dom.style.left = box.x + "px";
30096         el.dom.style.top = box.y + "px";
30097         this.activePanel.setSize(box.width, box.height);
30098     },
30099     
30100     /**
30101      * Returns the container element for this region.
30102      * @return {Roo.Element}
30103      */
30104     getEl : function(){
30105         return this.activePanel;
30106     },
30107     
30108     /**
30109      * Returns true if this region is currently visible.
30110      * @return {Boolean}
30111      */
30112     isVisible : function(){
30113         return this.activePanel ? true : false;
30114     },
30115     
30116     setActivePanel : function(panel){
30117         panel = this.getPanel(panel);
30118         if(this.activePanel && this.activePanel != panel){
30119             this.activePanel.setActiveState(false);
30120             this.activePanel.getEl().setLeftTop(-10000,-10000);
30121         }
30122         this.activePanel = panel;
30123         panel.setActiveState(true);
30124         if(this.box){
30125             panel.setSize(this.box.width, this.box.height);
30126         }
30127         this.fireEvent("panelactivated", this, panel);
30128         this.fireEvent("invalidated");
30129     },
30130     
30131     /**
30132      * Show the specified panel.
30133      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
30134      * @return {Roo.ContentPanel} The shown panel or null
30135      */
30136     showPanel : function(panel){
30137         if(panel = this.getPanel(panel)){
30138             this.setActivePanel(panel);
30139         }
30140         return panel;
30141     },
30142     
30143     /**
30144      * Get the active panel for this region.
30145      * @return {Roo.ContentPanel} The active panel or null
30146      */
30147     getActivePanel : function(){
30148         return this.activePanel;
30149     },
30150     
30151     /**
30152      * Add the passed ContentPanel(s)
30153      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30154      * @return {Roo.ContentPanel} The panel added (if only one was added)
30155      */
30156     add : function(panel){
30157         if(arguments.length > 1){
30158             for(var i = 0, len = arguments.length; i < len; i++) {
30159                 this.add(arguments[i]);
30160             }
30161             return null;
30162         }
30163         if(this.hasPanel(panel)){
30164             this.showPanel(panel);
30165             return panel;
30166         }
30167         var el = panel.getEl();
30168         if(el.dom.parentNode != this.mgr.el.dom){
30169             this.mgr.el.dom.appendChild(el.dom);
30170         }
30171         if(panel.setRegion){
30172             panel.setRegion(this);
30173         }
30174         this.panels.add(panel);
30175         el.setStyle("position", "absolute");
30176         if(!panel.background){
30177             this.setActivePanel(panel);
30178             if(this.config.initialSize && this.panels.getCount()==1){
30179                 this.resizeTo(this.config.initialSize);
30180             }
30181         }
30182         this.fireEvent("paneladded", this, panel);
30183         return panel;
30184     },
30185     
30186     /**
30187      * Returns true if the panel is in this region.
30188      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30189      * @return {Boolean}
30190      */
30191     hasPanel : function(panel){
30192         if(typeof panel == "object"){ // must be panel obj
30193             panel = panel.getId();
30194         }
30195         return this.getPanel(panel) ? true : false;
30196     },
30197     
30198     /**
30199      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30200      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30201      * @param {Boolean} preservePanel Overrides the config preservePanel option
30202      * @return {Roo.ContentPanel} The panel that was removed
30203      */
30204     remove : function(panel, preservePanel){
30205         panel = this.getPanel(panel);
30206         if(!panel){
30207             return null;
30208         }
30209         var e = {};
30210         this.fireEvent("beforeremove", this, panel, e);
30211         if(e.cancel === true){
30212             return null;
30213         }
30214         var panelId = panel.getId();
30215         this.panels.removeKey(panelId);
30216         return panel;
30217     },
30218     
30219     /**
30220      * Returns the panel specified or null if it's not in this region.
30221      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
30222      * @return {Roo.ContentPanel}
30223      */
30224     getPanel : function(id){
30225         if(typeof id == "object"){ // must be panel obj
30226             return id;
30227         }
30228         return this.panels.get(id);
30229     },
30230     
30231     /**
30232      * Returns this regions position (north/south/east/west/center).
30233      * @return {String} 
30234      */
30235     getPosition: function(){
30236         return this.position;    
30237     }
30238 });/*
30239  * Based on:
30240  * Ext JS Library 1.1.1
30241  * Copyright(c) 2006-2007, Ext JS, LLC.
30242  *
30243  * Originally Released Under LGPL - original licence link has changed is not relivant.
30244  *
30245  * Fork - LGPL
30246  * <script type="text/javascript">
30247  */
30248  
30249 /**
30250  * @class Roo.LayoutRegion
30251  * @extends Roo.BasicLayoutRegion
30252  * This class represents a region in a layout manager.
30253  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
30254  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
30255  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
30256  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
30257  * @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})
30258  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
30259  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
30260  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
30261  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
30262  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
30263  * @cfg {String}    title           The title for the region (overrides panel titles)
30264  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
30265  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
30266  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
30267  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
30268  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
30269  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
30270  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
30271  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
30272  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
30273  * @cfg {Boolean}   showPin         True to show a pin button
30274  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
30275  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
30276  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
30277  * @cfg {Number}    width           For East/West panels
30278  * @cfg {Number}    height          For North/South panels
30279  * @cfg {Boolean}   split           To show the splitter
30280  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
30281  */
30282 Roo.LayoutRegion = function(mgr, config, pos){
30283     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
30284     var dh = Roo.DomHelper;
30285     /** This region's container element 
30286     * @type Roo.Element */
30287     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
30288     /** This region's title element 
30289     * @type Roo.Element */
30290
30291     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
30292         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
30293         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
30294     ]}, true);
30295     this.titleEl.enableDisplayMode();
30296     /** This region's title text element 
30297     * @type HTMLElement */
30298     this.titleTextEl = this.titleEl.dom.firstChild;
30299     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
30300     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
30301     this.closeBtn.enableDisplayMode();
30302     this.closeBtn.on("click", this.closeClicked, this);
30303     this.closeBtn.hide();
30304
30305     this.createBody(config);
30306     this.visible = true;
30307     this.collapsed = false;
30308
30309     if(config.hideWhenEmpty){
30310         this.hide();
30311         this.on("paneladded", this.validateVisibility, this);
30312         this.on("panelremoved", this.validateVisibility, this);
30313     }
30314     this.applyConfig(config);
30315 };
30316
30317 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
30318
30319     createBody : function(){
30320         /** This region's body element 
30321         * @type Roo.Element */
30322         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
30323     },
30324
30325     applyConfig : function(c){
30326         if(c.collapsible && this.position != "center" && !this.collapsedEl){
30327             var dh = Roo.DomHelper;
30328             if(c.titlebar !== false){
30329                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
30330                 this.collapseBtn.on("click", this.collapse, this);
30331                 this.collapseBtn.enableDisplayMode();
30332
30333                 if(c.showPin === true || this.showPin){
30334                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
30335                     this.stickBtn.enableDisplayMode();
30336                     this.stickBtn.on("click", this.expand, this);
30337                     this.stickBtn.hide();
30338                 }
30339             }
30340             /** This region's collapsed element
30341             * @type Roo.Element */
30342             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
30343                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
30344             ]}, true);
30345             if(c.floatable !== false){
30346                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
30347                this.collapsedEl.on("click", this.collapseClick, this);
30348             }
30349
30350             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
30351                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
30352                    id: "message", unselectable: "on", style:{"float":"left"}});
30353                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
30354              }
30355             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
30356             this.expandBtn.on("click", this.expand, this);
30357         }
30358         if(this.collapseBtn){
30359             this.collapseBtn.setVisible(c.collapsible == true);
30360         }
30361         this.cmargins = c.cmargins || this.cmargins ||
30362                          (this.position == "west" || this.position == "east" ?
30363                              {top: 0, left: 2, right:2, bottom: 0} :
30364                              {top: 2, left: 0, right:0, bottom: 2});
30365         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
30366         this.bottomTabs = c.tabPosition != "top";
30367         this.autoScroll = c.autoScroll || false;
30368         if(this.autoScroll){
30369             this.bodyEl.setStyle("overflow", "auto");
30370         }else{
30371             this.bodyEl.setStyle("overflow", "hidden");
30372         }
30373         //if(c.titlebar !== false){
30374             if((!c.titlebar && !c.title) || c.titlebar === false){
30375                 this.titleEl.hide();
30376             }else{
30377                 this.titleEl.show();
30378                 if(c.title){
30379                     this.titleTextEl.innerHTML = c.title;
30380                 }
30381             }
30382         //}
30383         this.duration = c.duration || .30;
30384         this.slideDuration = c.slideDuration || .45;
30385         this.config = c;
30386         if(c.collapsed){
30387             this.collapse(true);
30388         }
30389         if(c.hidden){
30390             this.hide();
30391         }
30392     },
30393     /**
30394      * Returns true if this region is currently visible.
30395      * @return {Boolean}
30396      */
30397     isVisible : function(){
30398         return this.visible;
30399     },
30400
30401     /**
30402      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
30403      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
30404      */
30405     setCollapsedTitle : function(title){
30406         title = title || "&#160;";
30407         if(this.collapsedTitleTextEl){
30408             this.collapsedTitleTextEl.innerHTML = title;
30409         }
30410     },
30411
30412     getBox : function(){
30413         var b;
30414         if(!this.collapsed){
30415             b = this.el.getBox(false, true);
30416         }else{
30417             b = this.collapsedEl.getBox(false, true);
30418         }
30419         return b;
30420     },
30421
30422     getMargins : function(){
30423         return this.collapsed ? this.cmargins : this.margins;
30424     },
30425
30426     highlight : function(){
30427         this.el.addClass("x-layout-panel-dragover");
30428     },
30429
30430     unhighlight : function(){
30431         this.el.removeClass("x-layout-panel-dragover");
30432     },
30433
30434     updateBox : function(box){
30435         this.box = box;
30436         if(!this.collapsed){
30437             this.el.dom.style.left = box.x + "px";
30438             this.el.dom.style.top = box.y + "px";
30439             this.updateBody(box.width, box.height);
30440         }else{
30441             this.collapsedEl.dom.style.left = box.x + "px";
30442             this.collapsedEl.dom.style.top = box.y + "px";
30443             this.collapsedEl.setSize(box.width, box.height);
30444         }
30445         if(this.tabs){
30446             this.tabs.autoSizeTabs();
30447         }
30448     },
30449
30450     updateBody : function(w, h){
30451         if(w !== null){
30452             this.el.setWidth(w);
30453             w -= this.el.getBorderWidth("rl");
30454             if(this.config.adjustments){
30455                 w += this.config.adjustments[0];
30456             }
30457         }
30458         if(h !== null){
30459             this.el.setHeight(h);
30460             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
30461             h -= this.el.getBorderWidth("tb");
30462             if(this.config.adjustments){
30463                 h += this.config.adjustments[1];
30464             }
30465             this.bodyEl.setHeight(h);
30466             if(this.tabs){
30467                 h = this.tabs.syncHeight(h);
30468             }
30469         }
30470         if(this.panelSize){
30471             w = w !== null ? w : this.panelSize.width;
30472             h = h !== null ? h : this.panelSize.height;
30473         }
30474         if(this.activePanel){
30475             var el = this.activePanel.getEl();
30476             w = w !== null ? w : el.getWidth();
30477             h = h !== null ? h : el.getHeight();
30478             this.panelSize = {width: w, height: h};
30479             this.activePanel.setSize(w, h);
30480         }
30481         if(Roo.isIE && this.tabs){
30482             this.tabs.el.repaint();
30483         }
30484     },
30485
30486     /**
30487      * Returns the container element for this region.
30488      * @return {Roo.Element}
30489      */
30490     getEl : function(){
30491         return this.el;
30492     },
30493
30494     /**
30495      * Hides this region.
30496      */
30497     hide : function(){
30498         if(!this.collapsed){
30499             this.el.dom.style.left = "-2000px";
30500             this.el.hide();
30501         }else{
30502             this.collapsedEl.dom.style.left = "-2000px";
30503             this.collapsedEl.hide();
30504         }
30505         this.visible = false;
30506         this.fireEvent("visibilitychange", this, false);
30507     },
30508
30509     /**
30510      * Shows this region if it was previously hidden.
30511      */
30512     show : function(){
30513         if(!this.collapsed){
30514             this.el.show();
30515         }else{
30516             this.collapsedEl.show();
30517         }
30518         this.visible = true;
30519         this.fireEvent("visibilitychange", this, true);
30520     },
30521
30522     closeClicked : function(){
30523         if(this.activePanel){
30524             this.remove(this.activePanel);
30525         }
30526     },
30527
30528     collapseClick : function(e){
30529         if(this.isSlid){
30530            e.stopPropagation();
30531            this.slideIn();
30532         }else{
30533            e.stopPropagation();
30534            this.slideOut();
30535         }
30536     },
30537
30538     /**
30539      * Collapses this region.
30540      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
30541      */
30542     collapse : function(skipAnim, skipCheck){
30543         if(this.collapsed) {
30544             return;
30545         }
30546         
30547         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
30548             
30549             this.collapsed = true;
30550             if(this.split){
30551                 this.split.el.hide();
30552             }
30553             if(this.config.animate && skipAnim !== true){
30554                 this.fireEvent("invalidated", this);
30555                 this.animateCollapse();
30556             }else{
30557                 this.el.setLocation(-20000,-20000);
30558                 this.el.hide();
30559                 this.collapsedEl.show();
30560                 this.fireEvent("collapsed", this);
30561                 this.fireEvent("invalidated", this);
30562             }
30563         }
30564         
30565     },
30566
30567     animateCollapse : function(){
30568         // overridden
30569     },
30570
30571     /**
30572      * Expands this region if it was previously collapsed.
30573      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
30574      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
30575      */
30576     expand : function(e, skipAnim){
30577         if(e) {
30578             e.stopPropagation();
30579         }
30580         if(!this.collapsed || this.el.hasActiveFx()) {
30581             return;
30582         }
30583         if(this.isSlid){
30584             this.afterSlideIn();
30585             skipAnim = true;
30586         }
30587         this.collapsed = false;
30588         if(this.config.animate && skipAnim !== true){
30589             this.animateExpand();
30590         }else{
30591             this.el.show();
30592             if(this.split){
30593                 this.split.el.show();
30594             }
30595             this.collapsedEl.setLocation(-2000,-2000);
30596             this.collapsedEl.hide();
30597             this.fireEvent("invalidated", this);
30598             this.fireEvent("expanded", this);
30599         }
30600     },
30601
30602     animateExpand : function(){
30603         // overridden
30604     },
30605
30606     initTabs : function()
30607     {
30608         this.bodyEl.setStyle("overflow", "hidden");
30609         var ts = new Roo.TabPanel(
30610                 this.bodyEl.dom,
30611                 {
30612                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
30613                     disableTooltips: this.config.disableTabTips,
30614                     toolbar : this.config.toolbar
30615                 }
30616         );
30617         if(this.config.hideTabs){
30618             ts.stripWrap.setDisplayed(false);
30619         }
30620         this.tabs = ts;
30621         ts.resizeTabs = this.config.resizeTabs === true;
30622         ts.minTabWidth = this.config.minTabWidth || 40;
30623         ts.maxTabWidth = this.config.maxTabWidth || 250;
30624         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
30625         ts.monitorResize = false;
30626         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30627         ts.bodyEl.addClass('x-layout-tabs-body');
30628         this.panels.each(this.initPanelAsTab, this);
30629     },
30630
30631     initPanelAsTab : function(panel){
30632         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
30633                     this.config.closeOnTab && panel.isClosable());
30634         if(panel.tabTip !== undefined){
30635             ti.setTooltip(panel.tabTip);
30636         }
30637         ti.on("activate", function(){
30638               this.setActivePanel(panel);
30639         }, this);
30640         if(this.config.closeOnTab){
30641             ti.on("beforeclose", function(t, e){
30642                 e.cancel = true;
30643                 this.remove(panel);
30644             }, this);
30645         }
30646         return ti;
30647     },
30648
30649     updatePanelTitle : function(panel, title){
30650         if(this.activePanel == panel){
30651             this.updateTitle(title);
30652         }
30653         if(this.tabs){
30654             var ti = this.tabs.getTab(panel.getEl().id);
30655             ti.setText(title);
30656             if(panel.tabTip !== undefined){
30657                 ti.setTooltip(panel.tabTip);
30658             }
30659         }
30660     },
30661
30662     updateTitle : function(title){
30663         if(this.titleTextEl && !this.config.title){
30664             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
30665         }
30666     },
30667
30668     setActivePanel : function(panel){
30669         panel = this.getPanel(panel);
30670         if(this.activePanel && this.activePanel != panel){
30671             this.activePanel.setActiveState(false);
30672         }
30673         this.activePanel = panel;
30674         panel.setActiveState(true);
30675         if(this.panelSize){
30676             panel.setSize(this.panelSize.width, this.panelSize.height);
30677         }
30678         if(this.closeBtn){
30679             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
30680         }
30681         this.updateTitle(panel.getTitle());
30682         if(this.tabs){
30683             this.fireEvent("invalidated", this);
30684         }
30685         this.fireEvent("panelactivated", this, panel);
30686     },
30687
30688     /**
30689      * Shows the specified panel.
30690      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
30691      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
30692      */
30693     showPanel : function(panel)
30694     {
30695         panel = this.getPanel(panel);
30696         if(panel){
30697             if(this.tabs){
30698                 var tab = this.tabs.getTab(panel.getEl().id);
30699                 if(tab.isHidden()){
30700                     this.tabs.unhideTab(tab.id);
30701                 }
30702                 tab.activate();
30703             }else{
30704                 this.setActivePanel(panel);
30705             }
30706         }
30707         return panel;
30708     },
30709
30710     /**
30711      * Get the active panel for this region.
30712      * @return {Roo.ContentPanel} The active panel or null
30713      */
30714     getActivePanel : function(){
30715         return this.activePanel;
30716     },
30717
30718     validateVisibility : function(){
30719         if(this.panels.getCount() < 1){
30720             this.updateTitle("&#160;");
30721             this.closeBtn.hide();
30722             this.hide();
30723         }else{
30724             if(!this.isVisible()){
30725                 this.show();
30726             }
30727         }
30728     },
30729
30730     /**
30731      * Adds the passed ContentPanel(s) to this region.
30732      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
30733      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
30734      */
30735     add : function(panel){
30736         if(arguments.length > 1){
30737             for(var i = 0, len = arguments.length; i < len; i++) {
30738                 this.add(arguments[i]);
30739             }
30740             return null;
30741         }
30742         if(this.hasPanel(panel)){
30743             this.showPanel(panel);
30744             return panel;
30745         }
30746         panel.setRegion(this);
30747         this.panels.add(panel);
30748         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
30749             this.bodyEl.dom.appendChild(panel.getEl().dom);
30750             if(panel.background !== true){
30751                 this.setActivePanel(panel);
30752             }
30753             this.fireEvent("paneladded", this, panel);
30754             return panel;
30755         }
30756         if(!this.tabs){
30757             this.initTabs();
30758         }else{
30759             this.initPanelAsTab(panel);
30760         }
30761         if(panel.background !== true){
30762             this.tabs.activate(panel.getEl().id);
30763         }
30764         this.fireEvent("paneladded", this, panel);
30765         return panel;
30766     },
30767
30768     /**
30769      * Hides the tab for the specified panel.
30770      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30771      */
30772     hidePanel : function(panel){
30773         if(this.tabs && (panel = this.getPanel(panel))){
30774             this.tabs.hideTab(panel.getEl().id);
30775         }
30776     },
30777
30778     /**
30779      * Unhides the tab for a previously hidden panel.
30780      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30781      */
30782     unhidePanel : function(panel){
30783         if(this.tabs && (panel = this.getPanel(panel))){
30784             this.tabs.unhideTab(panel.getEl().id);
30785         }
30786     },
30787
30788     clearPanels : function(){
30789         while(this.panels.getCount() > 0){
30790              this.remove(this.panels.first());
30791         }
30792     },
30793
30794     /**
30795      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
30796      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
30797      * @param {Boolean} preservePanel Overrides the config preservePanel option
30798      * @return {Roo.ContentPanel} The panel that was removed
30799      */
30800     remove : function(panel, preservePanel){
30801         panel = this.getPanel(panel);
30802         if(!panel){
30803             return null;
30804         }
30805         var e = {};
30806         this.fireEvent("beforeremove", this, panel, e);
30807         if(e.cancel === true){
30808             return null;
30809         }
30810         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
30811         var panelId = panel.getId();
30812         this.panels.removeKey(panelId);
30813         if(preservePanel){
30814             document.body.appendChild(panel.getEl().dom);
30815         }
30816         if(this.tabs){
30817             this.tabs.removeTab(panel.getEl().id);
30818         }else if (!preservePanel){
30819             this.bodyEl.dom.removeChild(panel.getEl().dom);
30820         }
30821         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
30822             var p = this.panels.first();
30823             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
30824             tempEl.appendChild(p.getEl().dom);
30825             this.bodyEl.update("");
30826             this.bodyEl.dom.appendChild(p.getEl().dom);
30827             tempEl = null;
30828             this.updateTitle(p.getTitle());
30829             this.tabs = null;
30830             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
30831             this.setActivePanel(p);
30832         }
30833         panel.setRegion(null);
30834         if(this.activePanel == panel){
30835             this.activePanel = null;
30836         }
30837         if(this.config.autoDestroy !== false && preservePanel !== true){
30838             try{panel.destroy();}catch(e){}
30839         }
30840         this.fireEvent("panelremoved", this, panel);
30841         return panel;
30842     },
30843
30844     /**
30845      * Returns the TabPanel component used by this region
30846      * @return {Roo.TabPanel}
30847      */
30848     getTabs : function(){
30849         return this.tabs;
30850     },
30851
30852     createTool : function(parentEl, className){
30853         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
30854             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
30855         btn.addClassOnOver("x-layout-tools-button-over");
30856         return btn;
30857     }
30858 });/*
30859  * Based on:
30860  * Ext JS Library 1.1.1
30861  * Copyright(c) 2006-2007, Ext JS, LLC.
30862  *
30863  * Originally Released Under LGPL - original licence link has changed is not relivant.
30864  *
30865  * Fork - LGPL
30866  * <script type="text/javascript">
30867  */
30868  
30869
30870
30871 /**
30872  * @class Roo.SplitLayoutRegion
30873  * @extends Roo.LayoutRegion
30874  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
30875  */
30876 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
30877     this.cursor = cursor;
30878     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
30879 };
30880
30881 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
30882     splitTip : "Drag to resize.",
30883     collapsibleSplitTip : "Drag to resize. Double click to hide.",
30884     useSplitTips : false,
30885
30886     applyConfig : function(config){
30887         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
30888         if(config.split){
30889             if(!this.split){
30890                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
30891                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
30892                 /** The SplitBar for this region 
30893                 * @type Roo.SplitBar */
30894                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
30895                 this.split.on("moved", this.onSplitMove, this);
30896                 this.split.useShim = config.useShim === true;
30897                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
30898                 if(this.useSplitTips){
30899                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
30900                 }
30901                 if(config.collapsible){
30902                     this.split.el.on("dblclick", this.collapse,  this);
30903                 }
30904             }
30905             if(typeof config.minSize != "undefined"){
30906                 this.split.minSize = config.minSize;
30907             }
30908             if(typeof config.maxSize != "undefined"){
30909                 this.split.maxSize = config.maxSize;
30910             }
30911             if(config.hideWhenEmpty || config.hidden || config.collapsed){
30912                 this.hideSplitter();
30913             }
30914         }
30915     },
30916
30917     getHMaxSize : function(){
30918          var cmax = this.config.maxSize || 10000;
30919          var center = this.mgr.getRegion("center");
30920          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
30921     },
30922
30923     getVMaxSize : function(){
30924          var cmax = this.config.maxSize || 10000;
30925          var center = this.mgr.getRegion("center");
30926          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
30927     },
30928
30929     onSplitMove : function(split, newSize){
30930         this.fireEvent("resized", this, newSize);
30931     },
30932     
30933     /** 
30934      * Returns the {@link Roo.SplitBar} for this region.
30935      * @return {Roo.SplitBar}
30936      */
30937     getSplitBar : function(){
30938         return this.split;
30939     },
30940     
30941     hide : function(){
30942         this.hideSplitter();
30943         Roo.SplitLayoutRegion.superclass.hide.call(this);
30944     },
30945
30946     hideSplitter : function(){
30947         if(this.split){
30948             this.split.el.setLocation(-2000,-2000);
30949             this.split.el.hide();
30950         }
30951     },
30952
30953     show : function(){
30954         if(this.split){
30955             this.split.el.show();
30956         }
30957         Roo.SplitLayoutRegion.superclass.show.call(this);
30958     },
30959     
30960     beforeSlide: function(){
30961         if(Roo.isGecko){// firefox overflow auto bug workaround
30962             this.bodyEl.clip();
30963             if(this.tabs) {
30964                 this.tabs.bodyEl.clip();
30965             }
30966             if(this.activePanel){
30967                 this.activePanel.getEl().clip();
30968                 
30969                 if(this.activePanel.beforeSlide){
30970                     this.activePanel.beforeSlide();
30971                 }
30972             }
30973         }
30974     },
30975     
30976     afterSlide : function(){
30977         if(Roo.isGecko){// firefox overflow auto bug workaround
30978             this.bodyEl.unclip();
30979             if(this.tabs) {
30980                 this.tabs.bodyEl.unclip();
30981             }
30982             if(this.activePanel){
30983                 this.activePanel.getEl().unclip();
30984                 if(this.activePanel.afterSlide){
30985                     this.activePanel.afterSlide();
30986                 }
30987             }
30988         }
30989     },
30990
30991     initAutoHide : function(){
30992         if(this.autoHide !== false){
30993             if(!this.autoHideHd){
30994                 var st = new Roo.util.DelayedTask(this.slideIn, this);
30995                 this.autoHideHd = {
30996                     "mouseout": function(e){
30997                         if(!e.within(this.el, true)){
30998                             st.delay(500);
30999                         }
31000                     },
31001                     "mouseover" : function(e){
31002                         st.cancel();
31003                     },
31004                     scope : this
31005                 };
31006             }
31007             this.el.on(this.autoHideHd);
31008         }
31009     },
31010
31011     clearAutoHide : function(){
31012         if(this.autoHide !== false){
31013             this.el.un("mouseout", this.autoHideHd.mouseout);
31014             this.el.un("mouseover", this.autoHideHd.mouseover);
31015         }
31016     },
31017
31018     clearMonitor : function(){
31019         Roo.get(document).un("click", this.slideInIf, this);
31020     },
31021
31022     // these names are backwards but not changed for compat
31023     slideOut : function(){
31024         if(this.isSlid || this.el.hasActiveFx()){
31025             return;
31026         }
31027         this.isSlid = true;
31028         if(this.collapseBtn){
31029             this.collapseBtn.hide();
31030         }
31031         this.closeBtnState = this.closeBtn.getStyle('display');
31032         this.closeBtn.hide();
31033         if(this.stickBtn){
31034             this.stickBtn.show();
31035         }
31036         this.el.show();
31037         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
31038         this.beforeSlide();
31039         this.el.setStyle("z-index", 10001);
31040         this.el.slideIn(this.getSlideAnchor(), {
31041             callback: function(){
31042                 this.afterSlide();
31043                 this.initAutoHide();
31044                 Roo.get(document).on("click", this.slideInIf, this);
31045                 this.fireEvent("slideshow", this);
31046             },
31047             scope: this,
31048             block: true
31049         });
31050     },
31051
31052     afterSlideIn : function(){
31053         this.clearAutoHide();
31054         this.isSlid = false;
31055         this.clearMonitor();
31056         this.el.setStyle("z-index", "");
31057         if(this.collapseBtn){
31058             this.collapseBtn.show();
31059         }
31060         this.closeBtn.setStyle('display', this.closeBtnState);
31061         if(this.stickBtn){
31062             this.stickBtn.hide();
31063         }
31064         this.fireEvent("slidehide", this);
31065     },
31066
31067     slideIn : function(cb){
31068         if(!this.isSlid || this.el.hasActiveFx()){
31069             Roo.callback(cb);
31070             return;
31071         }
31072         this.isSlid = false;
31073         this.beforeSlide();
31074         this.el.slideOut(this.getSlideAnchor(), {
31075             callback: function(){
31076                 this.el.setLeftTop(-10000, -10000);
31077                 this.afterSlide();
31078                 this.afterSlideIn();
31079                 Roo.callback(cb);
31080             },
31081             scope: this,
31082             block: true
31083         });
31084     },
31085     
31086     slideInIf : function(e){
31087         if(!e.within(this.el)){
31088             this.slideIn();
31089         }
31090     },
31091
31092     animateCollapse : function(){
31093         this.beforeSlide();
31094         this.el.setStyle("z-index", 20000);
31095         var anchor = this.getSlideAnchor();
31096         this.el.slideOut(anchor, {
31097             callback : function(){
31098                 this.el.setStyle("z-index", "");
31099                 this.collapsedEl.slideIn(anchor, {duration:.3});
31100                 this.afterSlide();
31101                 this.el.setLocation(-10000,-10000);
31102                 this.el.hide();
31103                 this.fireEvent("collapsed", this);
31104             },
31105             scope: this,
31106             block: true
31107         });
31108     },
31109
31110     animateExpand : function(){
31111         this.beforeSlide();
31112         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
31113         this.el.setStyle("z-index", 20000);
31114         this.collapsedEl.hide({
31115             duration:.1
31116         });
31117         this.el.slideIn(this.getSlideAnchor(), {
31118             callback : function(){
31119                 this.el.setStyle("z-index", "");
31120                 this.afterSlide();
31121                 if(this.split){
31122                     this.split.el.show();
31123                 }
31124                 this.fireEvent("invalidated", this);
31125                 this.fireEvent("expanded", this);
31126             },
31127             scope: this,
31128             block: true
31129         });
31130     },
31131
31132     anchors : {
31133         "west" : "left",
31134         "east" : "right",
31135         "north" : "top",
31136         "south" : "bottom"
31137     },
31138
31139     sanchors : {
31140         "west" : "l",
31141         "east" : "r",
31142         "north" : "t",
31143         "south" : "b"
31144     },
31145
31146     canchors : {
31147         "west" : "tl-tr",
31148         "east" : "tr-tl",
31149         "north" : "tl-bl",
31150         "south" : "bl-tl"
31151     },
31152
31153     getAnchor : function(){
31154         return this.anchors[this.position];
31155     },
31156
31157     getCollapseAnchor : function(){
31158         return this.canchors[this.position];
31159     },
31160
31161     getSlideAnchor : function(){
31162         return this.sanchors[this.position];
31163     },
31164
31165     getAlignAdj : function(){
31166         var cm = this.cmargins;
31167         switch(this.position){
31168             case "west":
31169                 return [0, 0];
31170             break;
31171             case "east":
31172                 return [0, 0];
31173             break;
31174             case "north":
31175                 return [0, 0];
31176             break;
31177             case "south":
31178                 return [0, 0];
31179             break;
31180         }
31181     },
31182
31183     getExpandAdj : function(){
31184         var c = this.collapsedEl, cm = this.cmargins;
31185         switch(this.position){
31186             case "west":
31187                 return [-(cm.right+c.getWidth()+cm.left), 0];
31188             break;
31189             case "east":
31190                 return [cm.right+c.getWidth()+cm.left, 0];
31191             break;
31192             case "north":
31193                 return [0, -(cm.top+cm.bottom+c.getHeight())];
31194             break;
31195             case "south":
31196                 return [0, cm.top+cm.bottom+c.getHeight()];
31197             break;
31198         }
31199     }
31200 });/*
31201  * Based on:
31202  * Ext JS Library 1.1.1
31203  * Copyright(c) 2006-2007, Ext JS, LLC.
31204  *
31205  * Originally Released Under LGPL - original licence link has changed is not relivant.
31206  *
31207  * Fork - LGPL
31208  * <script type="text/javascript">
31209  */
31210 /*
31211  * These classes are private internal classes
31212  */
31213 Roo.CenterLayoutRegion = function(mgr, config){
31214     Roo.LayoutRegion.call(this, mgr, config, "center");
31215     this.visible = true;
31216     this.minWidth = config.minWidth || 20;
31217     this.minHeight = config.minHeight || 20;
31218 };
31219
31220 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
31221     hide : function(){
31222         // center panel can't be hidden
31223     },
31224     
31225     show : function(){
31226         // center panel can't be hidden
31227     },
31228     
31229     getMinWidth: function(){
31230         return this.minWidth;
31231     },
31232     
31233     getMinHeight: function(){
31234         return this.minHeight;
31235     }
31236 });
31237
31238
31239 Roo.NorthLayoutRegion = function(mgr, config){
31240     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
31241     if(this.split){
31242         this.split.placement = Roo.SplitBar.TOP;
31243         this.split.orientation = Roo.SplitBar.VERTICAL;
31244         this.split.el.addClass("x-layout-split-v");
31245     }
31246     var size = config.initialSize || config.height;
31247     if(typeof size != "undefined"){
31248         this.el.setHeight(size);
31249     }
31250 };
31251 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
31252     orientation: Roo.SplitBar.VERTICAL,
31253     getBox : function(){
31254         if(this.collapsed){
31255             return this.collapsedEl.getBox();
31256         }
31257         var box = this.el.getBox();
31258         if(this.split){
31259             box.height += this.split.el.getHeight();
31260         }
31261         return box;
31262     },
31263     
31264     updateBox : function(box){
31265         if(this.split && !this.collapsed){
31266             box.height -= this.split.el.getHeight();
31267             this.split.el.setLeft(box.x);
31268             this.split.el.setTop(box.y+box.height);
31269             this.split.el.setWidth(box.width);
31270         }
31271         if(this.collapsed){
31272             this.updateBody(box.width, null);
31273         }
31274         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31275     }
31276 });
31277
31278 Roo.SouthLayoutRegion = function(mgr, config){
31279     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
31280     if(this.split){
31281         this.split.placement = Roo.SplitBar.BOTTOM;
31282         this.split.orientation = Roo.SplitBar.VERTICAL;
31283         this.split.el.addClass("x-layout-split-v");
31284     }
31285     var size = config.initialSize || config.height;
31286     if(typeof size != "undefined"){
31287         this.el.setHeight(size);
31288     }
31289 };
31290 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
31291     orientation: Roo.SplitBar.VERTICAL,
31292     getBox : function(){
31293         if(this.collapsed){
31294             return this.collapsedEl.getBox();
31295         }
31296         var box = this.el.getBox();
31297         if(this.split){
31298             var sh = this.split.el.getHeight();
31299             box.height += sh;
31300             box.y -= sh;
31301         }
31302         return box;
31303     },
31304     
31305     updateBox : function(box){
31306         if(this.split && !this.collapsed){
31307             var sh = this.split.el.getHeight();
31308             box.height -= sh;
31309             box.y += sh;
31310             this.split.el.setLeft(box.x);
31311             this.split.el.setTop(box.y-sh);
31312             this.split.el.setWidth(box.width);
31313         }
31314         if(this.collapsed){
31315             this.updateBody(box.width, null);
31316         }
31317         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31318     }
31319 });
31320
31321 Roo.EastLayoutRegion = function(mgr, config){
31322     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
31323     if(this.split){
31324         this.split.placement = Roo.SplitBar.RIGHT;
31325         this.split.orientation = Roo.SplitBar.HORIZONTAL;
31326         this.split.el.addClass("x-layout-split-h");
31327     }
31328     var size = config.initialSize || config.width;
31329     if(typeof size != "undefined"){
31330         this.el.setWidth(size);
31331     }
31332 };
31333 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
31334     orientation: Roo.SplitBar.HORIZONTAL,
31335     getBox : function(){
31336         if(this.collapsed){
31337             return this.collapsedEl.getBox();
31338         }
31339         var box = this.el.getBox();
31340         if(this.split){
31341             var sw = this.split.el.getWidth();
31342             box.width += sw;
31343             box.x -= sw;
31344         }
31345         return box;
31346     },
31347
31348     updateBox : function(box){
31349         if(this.split && !this.collapsed){
31350             var sw = this.split.el.getWidth();
31351             box.width -= sw;
31352             this.split.el.setLeft(box.x);
31353             this.split.el.setTop(box.y);
31354             this.split.el.setHeight(box.height);
31355             box.x += sw;
31356         }
31357         if(this.collapsed){
31358             this.updateBody(null, box.height);
31359         }
31360         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31361     }
31362 });
31363
31364 Roo.WestLayoutRegion = function(mgr, config){
31365     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
31366     if(this.split){
31367         this.split.placement = Roo.SplitBar.LEFT;
31368         this.split.orientation = Roo.SplitBar.HORIZONTAL;
31369         this.split.el.addClass("x-layout-split-h");
31370     }
31371     var size = config.initialSize || config.width;
31372     if(typeof size != "undefined"){
31373         this.el.setWidth(size);
31374     }
31375 };
31376 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
31377     orientation: Roo.SplitBar.HORIZONTAL,
31378     getBox : function(){
31379         if(this.collapsed){
31380             return this.collapsedEl.getBox();
31381         }
31382         var box = this.el.getBox();
31383         if(this.split){
31384             box.width += this.split.el.getWidth();
31385         }
31386         return box;
31387     },
31388     
31389     updateBox : function(box){
31390         if(this.split && !this.collapsed){
31391             var sw = this.split.el.getWidth();
31392             box.width -= sw;
31393             this.split.el.setLeft(box.x+box.width);
31394             this.split.el.setTop(box.y);
31395             this.split.el.setHeight(box.height);
31396         }
31397         if(this.collapsed){
31398             this.updateBody(null, box.height);
31399         }
31400         Roo.LayoutRegion.prototype.updateBox.call(this, box);
31401     }
31402 });
31403 /*
31404  * Based on:
31405  * Ext JS Library 1.1.1
31406  * Copyright(c) 2006-2007, Ext JS, LLC.
31407  *
31408  * Originally Released Under LGPL - original licence link has changed is not relivant.
31409  *
31410  * Fork - LGPL
31411  * <script type="text/javascript">
31412  */
31413  
31414  
31415 /*
31416  * Private internal class for reading and applying state
31417  */
31418 Roo.LayoutStateManager = function(layout){
31419      // default empty state
31420      this.state = {
31421         north: {},
31422         south: {},
31423         east: {},
31424         west: {}       
31425     };
31426 };
31427
31428 Roo.LayoutStateManager.prototype = {
31429     init : function(layout, provider){
31430         this.provider = provider;
31431         var state = provider.get(layout.id+"-layout-state");
31432         if(state){
31433             var wasUpdating = layout.isUpdating();
31434             if(!wasUpdating){
31435                 layout.beginUpdate();
31436             }
31437             for(var key in state){
31438                 if(typeof state[key] != "function"){
31439                     var rstate = state[key];
31440                     var r = layout.getRegion(key);
31441                     if(r && rstate){
31442                         if(rstate.size){
31443                             r.resizeTo(rstate.size);
31444                         }
31445                         if(rstate.collapsed == true){
31446                             r.collapse(true);
31447                         }else{
31448                             r.expand(null, true);
31449                         }
31450                     }
31451                 }
31452             }
31453             if(!wasUpdating){
31454                 layout.endUpdate();
31455             }
31456             this.state = state; 
31457         }
31458         this.layout = layout;
31459         layout.on("regionresized", this.onRegionResized, this);
31460         layout.on("regioncollapsed", this.onRegionCollapsed, this);
31461         layout.on("regionexpanded", this.onRegionExpanded, this);
31462     },
31463     
31464     storeState : function(){
31465         this.provider.set(this.layout.id+"-layout-state", this.state);
31466     },
31467     
31468     onRegionResized : function(region, newSize){
31469         this.state[region.getPosition()].size = newSize;
31470         this.storeState();
31471     },
31472     
31473     onRegionCollapsed : function(region){
31474         this.state[region.getPosition()].collapsed = true;
31475         this.storeState();
31476     },
31477     
31478     onRegionExpanded : function(region){
31479         this.state[region.getPosition()].collapsed = false;
31480         this.storeState();
31481     }
31482 };/*
31483  * Based on:
31484  * Ext JS Library 1.1.1
31485  * Copyright(c) 2006-2007, Ext JS, LLC.
31486  *
31487  * Originally Released Under LGPL - original licence link has changed is not relivant.
31488  *
31489  * Fork - LGPL
31490  * <script type="text/javascript">
31491  */
31492 /**
31493  * @class Roo.ContentPanel
31494  * @extends Roo.util.Observable
31495  * A basic ContentPanel element.
31496  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
31497  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
31498  * @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
31499  * @cfg {Boolean}   closable      True if the panel can be closed/removed
31500  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
31501  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
31502  * @cfg {Toolbar}   toolbar       A toolbar for this panel
31503  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
31504  * @cfg {String} title          The title for this panel
31505  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
31506  * @cfg {String} url            Calls {@link #setUrl} with this value
31507  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
31508  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
31509  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
31510  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
31511
31512  * @constructor
31513  * Create a new ContentPanel.
31514  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
31515  * @param {String/Object} config A string to set only the title or a config object
31516  * @param {String} content (optional) Set the HTML content for this panel
31517  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
31518  */
31519 Roo.ContentPanel = function(el, config, content){
31520     
31521      
31522     /*
31523     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
31524         config = el;
31525         el = Roo.id();
31526     }
31527     if (config && config.parentLayout) { 
31528         el = config.parentLayout.el.createChild(); 
31529     }
31530     */
31531     if(el.autoCreate){ // xtype is available if this is called from factory
31532         config = el;
31533         el = Roo.id();
31534     }
31535     this.el = Roo.get(el);
31536     if(!this.el && config && config.autoCreate){
31537         if(typeof config.autoCreate == "object"){
31538             if(!config.autoCreate.id){
31539                 config.autoCreate.id = config.id||el;
31540             }
31541             this.el = Roo.DomHelper.append(document.body,
31542                         config.autoCreate, true);
31543         }else{
31544             this.el = Roo.DomHelper.append(document.body,
31545                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
31546         }
31547     }
31548     this.closable = false;
31549     this.loaded = false;
31550     this.active = false;
31551     if(typeof config == "string"){
31552         this.title = config;
31553     }else{
31554         Roo.apply(this, config);
31555     }
31556     
31557     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
31558         this.wrapEl = this.el.wrap();
31559         this.toolbar.container = this.el.insertSibling(false, 'before');
31560         this.toolbar = new Roo.Toolbar(this.toolbar);
31561     }
31562     
31563     // xtype created footer. - not sure if will work as we normally have to render first..
31564     if (this.footer && !this.footer.el && this.footer.xtype) {
31565         if (!this.wrapEl) {
31566             this.wrapEl = this.el.wrap();
31567         }
31568     
31569         this.footer.container = this.wrapEl.createChild();
31570          
31571         this.footer = Roo.factory(this.footer, Roo);
31572         
31573     }
31574     
31575     if(this.resizeEl){
31576         this.resizeEl = Roo.get(this.resizeEl, true);
31577     }else{
31578         this.resizeEl = this.el;
31579     }
31580     // handle view.xtype
31581     
31582  
31583     
31584     
31585     this.addEvents({
31586         /**
31587          * @event activate
31588          * Fires when this panel is activated. 
31589          * @param {Roo.ContentPanel} this
31590          */
31591         "activate" : true,
31592         /**
31593          * @event deactivate
31594          * Fires when this panel is activated. 
31595          * @param {Roo.ContentPanel} this
31596          */
31597         "deactivate" : true,
31598
31599         /**
31600          * @event resize
31601          * Fires when this panel is resized if fitToFrame is true.
31602          * @param {Roo.ContentPanel} this
31603          * @param {Number} width The width after any component adjustments
31604          * @param {Number} height The height after any component adjustments
31605          */
31606         "resize" : true,
31607         
31608          /**
31609          * @event render
31610          * Fires when this tab is created
31611          * @param {Roo.ContentPanel} this
31612          */
31613         "render" : true
31614          
31615         
31616     });
31617     
31618
31619     
31620     
31621     if(this.autoScroll){
31622         this.resizeEl.setStyle("overflow", "auto");
31623     } else {
31624         // fix randome scrolling
31625         this.el.on('scroll', function() {
31626             Roo.log('fix random scolling');
31627             this.scrollTo('top',0); 
31628         });
31629     }
31630     content = content || this.content;
31631     if(content){
31632         this.setContent(content);
31633     }
31634     if(config && config.url){
31635         this.setUrl(this.url, this.params, this.loadOnce);
31636     }
31637     
31638     
31639     
31640     Roo.ContentPanel.superclass.constructor.call(this);
31641     
31642     if (this.view && typeof(this.view.xtype) != 'undefined') {
31643         this.view.el = this.el.appendChild(document.createElement("div"));
31644         this.view = Roo.factory(this.view); 
31645         this.view.render  &&  this.view.render(false, '');  
31646     }
31647     
31648     
31649     this.fireEvent('render', this);
31650 };
31651
31652 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
31653     tabTip:'',
31654     setRegion : function(region){
31655         this.region = region;
31656         if(region){
31657            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
31658         }else{
31659            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
31660         } 
31661     },
31662     
31663     /**
31664      * Returns the toolbar for this Panel if one was configured. 
31665      * @return {Roo.Toolbar} 
31666      */
31667     getToolbar : function(){
31668         return this.toolbar;
31669     },
31670     
31671     setActiveState : function(active){
31672         this.active = active;
31673         if(!active){
31674             this.fireEvent("deactivate", this);
31675         }else{
31676             this.fireEvent("activate", this);
31677         }
31678     },
31679     /**
31680      * Updates this panel's element
31681      * @param {String} content The new content
31682      * @param {Boolean} loadScripts (optional) true to look for and process scripts
31683     */
31684     setContent : function(content, loadScripts){
31685         this.el.update(content, loadScripts);
31686     },
31687
31688     ignoreResize : function(w, h){
31689         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
31690             return true;
31691         }else{
31692             this.lastSize = {width: w, height: h};
31693             return false;
31694         }
31695     },
31696     /**
31697      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
31698      * @return {Roo.UpdateManager} The UpdateManager
31699      */
31700     getUpdateManager : function(){
31701         return this.el.getUpdateManager();
31702     },
31703      /**
31704      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
31705      * @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:
31706 <pre><code>
31707 panel.load({
31708     url: "your-url.php",
31709     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
31710     callback: yourFunction,
31711     scope: yourObject, //(optional scope)
31712     discardUrl: false,
31713     nocache: false,
31714     text: "Loading...",
31715     timeout: 30,
31716     scripts: false
31717 });
31718 </code></pre>
31719      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
31720      * 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.
31721      * @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}
31722      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
31723      * @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.
31724      * @return {Roo.ContentPanel} this
31725      */
31726     load : function(){
31727         var um = this.el.getUpdateManager();
31728         um.update.apply(um, arguments);
31729         return this;
31730     },
31731
31732
31733     /**
31734      * 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.
31735      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
31736      * @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)
31737      * @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)
31738      * @return {Roo.UpdateManager} The UpdateManager
31739      */
31740     setUrl : function(url, params, loadOnce){
31741         if(this.refreshDelegate){
31742             this.removeListener("activate", this.refreshDelegate);
31743         }
31744         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
31745         this.on("activate", this.refreshDelegate);
31746         return this.el.getUpdateManager();
31747     },
31748     
31749     _handleRefresh : function(url, params, loadOnce){
31750         if(!loadOnce || !this.loaded){
31751             var updater = this.el.getUpdateManager();
31752             updater.update(url, params, this._setLoaded.createDelegate(this));
31753         }
31754     },
31755     
31756     _setLoaded : function(){
31757         this.loaded = true;
31758     }, 
31759     
31760     /**
31761      * Returns this panel's id
31762      * @return {String} 
31763      */
31764     getId : function(){
31765         return this.el.id;
31766     },
31767     
31768     /** 
31769      * Returns this panel's element - used by regiosn to add.
31770      * @return {Roo.Element} 
31771      */
31772     getEl : function(){
31773         return this.wrapEl || this.el;
31774     },
31775     
31776     adjustForComponents : function(width, height)
31777     {
31778         //Roo.log('adjustForComponents ');
31779         if(this.resizeEl != this.el){
31780             width -= this.el.getFrameWidth('lr');
31781             height -= this.el.getFrameWidth('tb');
31782         }
31783         if(this.toolbar){
31784             var te = this.toolbar.getEl();
31785             height -= te.getHeight();
31786             te.setWidth(width);
31787         }
31788         if(this.footer){
31789             var te = this.footer.getEl();
31790             //Roo.log("footer:" + te.getHeight());
31791             
31792             height -= te.getHeight();
31793             te.setWidth(width);
31794         }
31795         
31796         
31797         if(this.adjustments){
31798             width += this.adjustments[0];
31799             height += this.adjustments[1];
31800         }
31801         return {"width": width, "height": height};
31802     },
31803     
31804     setSize : function(width, height){
31805         if(this.fitToFrame && !this.ignoreResize(width, height)){
31806             if(this.fitContainer && this.resizeEl != this.el){
31807                 this.el.setSize(width, height);
31808             }
31809             var size = this.adjustForComponents(width, height);
31810             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
31811             this.fireEvent('resize', this, size.width, size.height);
31812         }
31813     },
31814     
31815     /**
31816      * Returns this panel's title
31817      * @return {String} 
31818      */
31819     getTitle : function(){
31820         return this.title;
31821     },
31822     
31823     /**
31824      * Set this panel's title
31825      * @param {String} title
31826      */
31827     setTitle : function(title){
31828         this.title = title;
31829         if(this.region){
31830             this.region.updatePanelTitle(this, title);
31831         }
31832     },
31833     
31834     /**
31835      * Returns true is this panel was configured to be closable
31836      * @return {Boolean} 
31837      */
31838     isClosable : function(){
31839         return this.closable;
31840     },
31841     
31842     beforeSlide : function(){
31843         this.el.clip();
31844         this.resizeEl.clip();
31845     },
31846     
31847     afterSlide : function(){
31848         this.el.unclip();
31849         this.resizeEl.unclip();
31850     },
31851     
31852     /**
31853      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
31854      *   Will fail silently if the {@link #setUrl} method has not been called.
31855      *   This does not activate the panel, just updates its content.
31856      */
31857     refresh : function(){
31858         if(this.refreshDelegate){
31859            this.loaded = false;
31860            this.refreshDelegate();
31861         }
31862     },
31863     
31864     /**
31865      * Destroys this panel
31866      */
31867     destroy : function(){
31868         this.el.removeAllListeners();
31869         var tempEl = document.createElement("span");
31870         tempEl.appendChild(this.el.dom);
31871         tempEl.innerHTML = "";
31872         this.el.remove();
31873         this.el = null;
31874     },
31875     
31876     /**
31877      * form - if the content panel contains a form - this is a reference to it.
31878      * @type {Roo.form.Form}
31879      */
31880     form : false,
31881     /**
31882      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
31883      *    This contains a reference to it.
31884      * @type {Roo.View}
31885      */
31886     view : false,
31887     
31888       /**
31889      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
31890      * <pre><code>
31891
31892 layout.addxtype({
31893        xtype : 'Form',
31894        items: [ .... ]
31895    }
31896 );
31897
31898 </code></pre>
31899      * @param {Object} cfg Xtype definition of item to add.
31900      */
31901     
31902     addxtype : function(cfg) {
31903         // add form..
31904         if (cfg.xtype.match(/^Form$/)) {
31905             
31906             var el;
31907             //if (this.footer) {
31908             //    el = this.footer.container.insertSibling(false, 'before');
31909             //} else {
31910                 el = this.el.createChild();
31911             //}
31912
31913             this.form = new  Roo.form.Form(cfg);
31914             
31915             
31916             if ( this.form.allItems.length) {
31917                 this.form.render(el.dom);
31918             }
31919             return this.form;
31920         }
31921         // should only have one of theses..
31922         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
31923             // views.. should not be just added - used named prop 'view''
31924             
31925             cfg.el = this.el.appendChild(document.createElement("div"));
31926             // factory?
31927             
31928             var ret = new Roo.factory(cfg);
31929              
31930              ret.render && ret.render(false, ''); // render blank..
31931             this.view = ret;
31932             return ret;
31933         }
31934         return false;
31935     }
31936 });
31937
31938 /**
31939  * @class Roo.GridPanel
31940  * @extends Roo.ContentPanel
31941  * @constructor
31942  * Create a new GridPanel.
31943  * @param {Roo.grid.Grid} grid The grid for this panel
31944  * @param {String/Object} config A string to set only the panel's title, or a config object
31945  */
31946 Roo.GridPanel = function(grid, config){
31947     
31948   
31949     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
31950         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
31951         
31952     this.wrapper.dom.appendChild(grid.getGridEl().dom);
31953     
31954     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
31955     
31956     if(this.toolbar){
31957         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
31958     }
31959     // xtype created footer. - not sure if will work as we normally have to render first..
31960     if (this.footer && !this.footer.el && this.footer.xtype) {
31961         
31962         this.footer.container = this.grid.getView().getFooterPanel(true);
31963         this.footer.dataSource = this.grid.dataSource;
31964         this.footer = Roo.factory(this.footer, Roo);
31965         
31966     }
31967     
31968     grid.monitorWindowResize = false; // turn off autosizing
31969     grid.autoHeight = false;
31970     grid.autoWidth = false;
31971     this.grid = grid;
31972     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
31973 };
31974
31975 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
31976     getId : function(){
31977         return this.grid.id;
31978     },
31979     
31980     /**
31981      * Returns the grid for this panel
31982      * @return {Roo.grid.Grid} 
31983      */
31984     getGrid : function(){
31985         return this.grid;    
31986     },
31987     
31988     setSize : function(width, height){
31989         if(!this.ignoreResize(width, height)){
31990             var grid = this.grid;
31991             var size = this.adjustForComponents(width, height);
31992             grid.getGridEl().setSize(size.width, size.height);
31993             grid.autoSize();
31994         }
31995     },
31996     
31997     beforeSlide : function(){
31998         this.grid.getView().scroller.clip();
31999     },
32000     
32001     afterSlide : function(){
32002         this.grid.getView().scroller.unclip();
32003     },
32004     
32005     destroy : function(){
32006         this.grid.destroy();
32007         delete this.grid;
32008         Roo.GridPanel.superclass.destroy.call(this); 
32009     }
32010 });
32011
32012
32013 /**
32014  * @class Roo.NestedLayoutPanel
32015  * @extends Roo.ContentPanel
32016  * @constructor
32017  * Create a new NestedLayoutPanel.
32018  * 
32019  * 
32020  * @param {Roo.BorderLayout} layout The layout for this panel
32021  * @param {String/Object} config A string to set only the title or a config object
32022  */
32023 Roo.NestedLayoutPanel = function(layout, config)
32024 {
32025     // construct with only one argument..
32026     /* FIXME - implement nicer consturctors
32027     if (layout.layout) {
32028         config = layout;
32029         layout = config.layout;
32030         delete config.layout;
32031     }
32032     if (layout.xtype && !layout.getEl) {
32033         // then layout needs constructing..
32034         layout = Roo.factory(layout, Roo);
32035     }
32036     */
32037     
32038     
32039     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
32040     
32041     layout.monitorWindowResize = false; // turn off autosizing
32042     this.layout = layout;
32043     this.layout.getEl().addClass("x-layout-nested-layout");
32044     
32045     
32046     
32047     
32048 };
32049
32050 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
32051
32052     setSize : function(width, height){
32053         if(!this.ignoreResize(width, height)){
32054             var size = this.adjustForComponents(width, height);
32055             var el = this.layout.getEl();
32056             el.setSize(size.width, size.height);
32057             var touch = el.dom.offsetWidth;
32058             this.layout.layout();
32059             // ie requires a double layout on the first pass
32060             if(Roo.isIE && !this.initialized){
32061                 this.initialized = true;
32062                 this.layout.layout();
32063             }
32064         }
32065     },
32066     
32067     // activate all subpanels if not currently active..
32068     
32069     setActiveState : function(active){
32070         this.active = active;
32071         if(!active){
32072             this.fireEvent("deactivate", this);
32073             return;
32074         }
32075         
32076         this.fireEvent("activate", this);
32077         // not sure if this should happen before or after..
32078         if (!this.layout) {
32079             return; // should not happen..
32080         }
32081         var reg = false;
32082         for (var r in this.layout.regions) {
32083             reg = this.layout.getRegion(r);
32084             if (reg.getActivePanel()) {
32085                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
32086                 reg.setActivePanel(reg.getActivePanel());
32087                 continue;
32088             }
32089             if (!reg.panels.length) {
32090                 continue;
32091             }
32092             reg.showPanel(reg.getPanel(0));
32093         }
32094         
32095         
32096         
32097         
32098     },
32099     
32100     /**
32101      * Returns the nested BorderLayout for this panel
32102      * @return {Roo.BorderLayout} 
32103      */
32104     getLayout : function(){
32105         return this.layout;
32106     },
32107     
32108      /**
32109      * Adds a xtype elements to the layout of the nested panel
32110      * <pre><code>
32111
32112 panel.addxtype({
32113        xtype : 'ContentPanel',
32114        region: 'west',
32115        items: [ .... ]
32116    }
32117 );
32118
32119 panel.addxtype({
32120         xtype : 'NestedLayoutPanel',
32121         region: 'west',
32122         layout: {
32123            center: { },
32124            west: { }   
32125         },
32126         items : [ ... list of content panels or nested layout panels.. ]
32127    }
32128 );
32129 </code></pre>
32130      * @param {Object} cfg Xtype definition of item to add.
32131      */
32132     addxtype : function(cfg) {
32133         return this.layout.addxtype(cfg);
32134     
32135     }
32136 });
32137
32138 Roo.ScrollPanel = function(el, config, content){
32139     config = config || {};
32140     config.fitToFrame = true;
32141     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
32142     
32143     this.el.dom.style.overflow = "hidden";
32144     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
32145     this.el.removeClass("x-layout-inactive-content");
32146     this.el.on("mousewheel", this.onWheel, this);
32147
32148     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
32149     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
32150     up.unselectable(); down.unselectable();
32151     up.on("click", this.scrollUp, this);
32152     down.on("click", this.scrollDown, this);
32153     up.addClassOnOver("x-scroller-btn-over");
32154     down.addClassOnOver("x-scroller-btn-over");
32155     up.addClassOnClick("x-scroller-btn-click");
32156     down.addClassOnClick("x-scroller-btn-click");
32157     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
32158
32159     this.resizeEl = this.el;
32160     this.el = wrap; this.up = up; this.down = down;
32161 };
32162
32163 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
32164     increment : 100,
32165     wheelIncrement : 5,
32166     scrollUp : function(){
32167         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
32168     },
32169
32170     scrollDown : function(){
32171         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
32172     },
32173
32174     afterScroll : function(){
32175         var el = this.resizeEl;
32176         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
32177         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
32178         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
32179     },
32180
32181     setSize : function(){
32182         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
32183         this.afterScroll();
32184     },
32185
32186     onWheel : function(e){
32187         var d = e.getWheelDelta();
32188         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
32189         this.afterScroll();
32190         e.stopEvent();
32191     },
32192
32193     setContent : function(content, loadScripts){
32194         this.resizeEl.update(content, loadScripts);
32195     }
32196
32197 });
32198
32199
32200
32201
32202
32203
32204
32205
32206
32207 /**
32208  * @class Roo.TreePanel
32209  * @extends Roo.ContentPanel
32210  * @constructor
32211  * Create a new TreePanel. - defaults to fit/scoll contents.
32212  * @param {String/Object} config A string to set only the panel's title, or a config object
32213  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
32214  */
32215 Roo.TreePanel = function(config){
32216     var el = config.el;
32217     var tree = config.tree;
32218     delete config.tree; 
32219     delete config.el; // hopefull!
32220     
32221     // wrapper for IE7 strict & safari scroll issue
32222     
32223     var treeEl = el.createChild();
32224     config.resizeEl = treeEl;
32225     
32226     
32227     
32228     Roo.TreePanel.superclass.constructor.call(this, el, config);
32229  
32230  
32231     this.tree = new Roo.tree.TreePanel(treeEl , tree);
32232     //console.log(tree);
32233     this.on('activate', function()
32234     {
32235         if (this.tree.rendered) {
32236             return;
32237         }
32238         //console.log('render tree');
32239         this.tree.render();
32240     });
32241     // this should not be needed.. - it's actually the 'el' that resizes?
32242     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
32243     
32244     //this.on('resize',  function (cp, w, h) {
32245     //        this.tree.innerCt.setWidth(w);
32246     //        this.tree.innerCt.setHeight(h);
32247     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
32248     //});
32249
32250         
32251     
32252 };
32253
32254 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
32255     fitToFrame : true,
32256     autoScroll : true
32257 });
32258
32259
32260
32261
32262
32263
32264
32265
32266
32267
32268
32269 /*
32270  * Based on:
32271  * Ext JS Library 1.1.1
32272  * Copyright(c) 2006-2007, Ext JS, LLC.
32273  *
32274  * Originally Released Under LGPL - original licence link has changed is not relivant.
32275  *
32276  * Fork - LGPL
32277  * <script type="text/javascript">
32278  */
32279  
32280
32281 /**
32282  * @class Roo.ReaderLayout
32283  * @extends Roo.BorderLayout
32284  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
32285  * center region containing two nested regions (a top one for a list view and one for item preview below),
32286  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
32287  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
32288  * expedites the setup of the overall layout and regions for this common application style.
32289  * Example:
32290  <pre><code>
32291 var reader = new Roo.ReaderLayout();
32292 var CP = Roo.ContentPanel;  // shortcut for adding
32293
32294 reader.beginUpdate();
32295 reader.add("north", new CP("north", "North"));
32296 reader.add("west", new CP("west", {title: "West"}));
32297 reader.add("east", new CP("east", {title: "East"}));
32298
32299 reader.regions.listView.add(new CP("listView", "List"));
32300 reader.regions.preview.add(new CP("preview", "Preview"));
32301 reader.endUpdate();
32302 </code></pre>
32303 * @constructor
32304 * Create a new ReaderLayout
32305 * @param {Object} config Configuration options
32306 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
32307 * document.body if omitted)
32308 */
32309 Roo.ReaderLayout = function(config, renderTo){
32310     var c = config || {size:{}};
32311     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
32312         north: c.north !== false ? Roo.apply({
32313             split:false,
32314             initialSize: 32,
32315             titlebar: false
32316         }, c.north) : false,
32317         west: c.west !== false ? Roo.apply({
32318             split:true,
32319             initialSize: 200,
32320             minSize: 175,
32321             maxSize: 400,
32322             titlebar: true,
32323             collapsible: true,
32324             animate: true,
32325             margins:{left:5,right:0,bottom:5,top:5},
32326             cmargins:{left:5,right:5,bottom:5,top:5}
32327         }, c.west) : false,
32328         east: c.east !== false ? Roo.apply({
32329             split:true,
32330             initialSize: 200,
32331             minSize: 175,
32332             maxSize: 400,
32333             titlebar: true,
32334             collapsible: true,
32335             animate: true,
32336             margins:{left:0,right:5,bottom:5,top:5},
32337             cmargins:{left:5,right:5,bottom:5,top:5}
32338         }, c.east) : false,
32339         center: Roo.apply({
32340             tabPosition: 'top',
32341             autoScroll:false,
32342             closeOnTab: true,
32343             titlebar:false,
32344             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
32345         }, c.center)
32346     });
32347
32348     this.el.addClass('x-reader');
32349
32350     this.beginUpdate();
32351
32352     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
32353         south: c.preview !== false ? Roo.apply({
32354             split:true,
32355             initialSize: 200,
32356             minSize: 100,
32357             autoScroll:true,
32358             collapsible:true,
32359             titlebar: true,
32360             cmargins:{top:5,left:0, right:0, bottom:0}
32361         }, c.preview) : false,
32362         center: Roo.apply({
32363             autoScroll:false,
32364             titlebar:false,
32365             minHeight:200
32366         }, c.listView)
32367     });
32368     this.add('center', new Roo.NestedLayoutPanel(inner,
32369             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
32370
32371     this.endUpdate();
32372
32373     this.regions.preview = inner.getRegion('south');
32374     this.regions.listView = inner.getRegion('center');
32375 };
32376
32377 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
32378  * Based on:
32379  * Ext JS Library 1.1.1
32380  * Copyright(c) 2006-2007, Ext JS, LLC.
32381  *
32382  * Originally Released Under LGPL - original licence link has changed is not relivant.
32383  *
32384  * Fork - LGPL
32385  * <script type="text/javascript">
32386  */
32387  
32388 /**
32389  * @class Roo.grid.Grid
32390  * @extends Roo.util.Observable
32391  * This class represents the primary interface of a component based grid control.
32392  * <br><br>Usage:<pre><code>
32393  var grid = new Roo.grid.Grid("my-container-id", {
32394      ds: myDataStore,
32395      cm: myColModel,
32396      selModel: mySelectionModel,
32397      autoSizeColumns: true,
32398      monitorWindowResize: false,
32399      trackMouseOver: true
32400  });
32401  // set any options
32402  grid.render();
32403  * </code></pre>
32404  * <b>Common Problems:</b><br/>
32405  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
32406  * element will correct this<br/>
32407  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
32408  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
32409  * are unpredictable.<br/>
32410  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
32411  * grid to calculate dimensions/offsets.<br/>
32412   * @constructor
32413  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
32414  * The container MUST have some type of size defined for the grid to fill. The container will be
32415  * automatically set to position relative if it isn't already.
32416  * @param {Object} config A config object that sets properties on this grid.
32417  */
32418 Roo.grid.Grid = function(container, config){
32419         // initialize the container
32420         this.container = Roo.get(container);
32421         this.container.update("");
32422         this.container.setStyle("overflow", "hidden");
32423     this.container.addClass('x-grid-container');
32424
32425     this.id = this.container.id;
32426
32427     Roo.apply(this, config);
32428     // check and correct shorthanded configs
32429     if(this.ds){
32430         this.dataSource = this.ds;
32431         delete this.ds;
32432     }
32433     if(this.cm){
32434         this.colModel = this.cm;
32435         delete this.cm;
32436     }
32437     if(this.sm){
32438         this.selModel = this.sm;
32439         delete this.sm;
32440     }
32441
32442     if (this.selModel) {
32443         this.selModel = Roo.factory(this.selModel, Roo.grid);
32444         this.sm = this.selModel;
32445         this.sm.xmodule = this.xmodule || false;
32446     }
32447     if (typeof(this.colModel.config) == 'undefined') {
32448         this.colModel = new Roo.grid.ColumnModel(this.colModel);
32449         this.cm = this.colModel;
32450         this.cm.xmodule = this.xmodule || false;
32451     }
32452     if (this.dataSource) {
32453         this.dataSource= Roo.factory(this.dataSource, Roo.data);
32454         this.ds = this.dataSource;
32455         this.ds.xmodule = this.xmodule || false;
32456          
32457     }
32458     
32459     
32460     
32461     if(this.width){
32462         this.container.setWidth(this.width);
32463     }
32464
32465     if(this.height){
32466         this.container.setHeight(this.height);
32467     }
32468     /** @private */
32469         this.addEvents({
32470         // raw events
32471         /**
32472          * @event click
32473          * The raw click event for the entire grid.
32474          * @param {Roo.EventObject} e
32475          */
32476         "click" : true,
32477         /**
32478          * @event dblclick
32479          * The raw dblclick event for the entire grid.
32480          * @param {Roo.EventObject} e
32481          */
32482         "dblclick" : true,
32483         /**
32484          * @event contextmenu
32485          * The raw contextmenu event for the entire grid.
32486          * @param {Roo.EventObject} e
32487          */
32488         "contextmenu" : true,
32489         /**
32490          * @event mousedown
32491          * The raw mousedown event for the entire grid.
32492          * @param {Roo.EventObject} e
32493          */
32494         "mousedown" : true,
32495         /**
32496          * @event mouseup
32497          * The raw mouseup event for the entire grid.
32498          * @param {Roo.EventObject} e
32499          */
32500         "mouseup" : true,
32501         /**
32502          * @event mouseover
32503          * The raw mouseover event for the entire grid.
32504          * @param {Roo.EventObject} e
32505          */
32506         "mouseover" : true,
32507         /**
32508          * @event mouseout
32509          * The raw mouseout event for the entire grid.
32510          * @param {Roo.EventObject} e
32511          */
32512         "mouseout" : true,
32513         /**
32514          * @event keypress
32515          * The raw keypress event for the entire grid.
32516          * @param {Roo.EventObject} e
32517          */
32518         "keypress" : true,
32519         /**
32520          * @event keydown
32521          * The raw keydown event for the entire grid.
32522          * @param {Roo.EventObject} e
32523          */
32524         "keydown" : true,
32525
32526         // custom events
32527
32528         /**
32529          * @event cellclick
32530          * Fires when a cell is clicked
32531          * @param {Grid} this
32532          * @param {Number} rowIndex
32533          * @param {Number} columnIndex
32534          * @param {Roo.EventObject} e
32535          */
32536         "cellclick" : true,
32537         /**
32538          * @event celldblclick
32539          * Fires when a cell is double clicked
32540          * @param {Grid} this
32541          * @param {Number} rowIndex
32542          * @param {Number} columnIndex
32543          * @param {Roo.EventObject} e
32544          */
32545         "celldblclick" : true,
32546         /**
32547          * @event rowclick
32548          * Fires when a row is clicked
32549          * @param {Grid} this
32550          * @param {Number} rowIndex
32551          * @param {Roo.EventObject} e
32552          */
32553         "rowclick" : true,
32554         /**
32555          * @event rowdblclick
32556          * Fires when a row is double clicked
32557          * @param {Grid} this
32558          * @param {Number} rowIndex
32559          * @param {Roo.EventObject} e
32560          */
32561         "rowdblclick" : true,
32562         /**
32563          * @event headerclick
32564          * Fires when a header is clicked
32565          * @param {Grid} this
32566          * @param {Number} columnIndex
32567          * @param {Roo.EventObject} e
32568          */
32569         "headerclick" : true,
32570         /**
32571          * @event headerdblclick
32572          * Fires when a header cell is double clicked
32573          * @param {Grid} this
32574          * @param {Number} columnIndex
32575          * @param {Roo.EventObject} e
32576          */
32577         "headerdblclick" : true,
32578         /**
32579          * @event rowcontextmenu
32580          * Fires when a row is right clicked
32581          * @param {Grid} this
32582          * @param {Number} rowIndex
32583          * @param {Roo.EventObject} e
32584          */
32585         "rowcontextmenu" : true,
32586         /**
32587          * @event cellcontextmenu
32588          * Fires when a cell is right clicked
32589          * @param {Grid} this
32590          * @param {Number} rowIndex
32591          * @param {Number} cellIndex
32592          * @param {Roo.EventObject} e
32593          */
32594          "cellcontextmenu" : true,
32595         /**
32596          * @event headercontextmenu
32597          * Fires when a header is right clicked
32598          * @param {Grid} this
32599          * @param {Number} columnIndex
32600          * @param {Roo.EventObject} e
32601          */
32602         "headercontextmenu" : true,
32603         /**
32604          * @event bodyscroll
32605          * Fires when the body element is scrolled
32606          * @param {Number} scrollLeft
32607          * @param {Number} scrollTop
32608          */
32609         "bodyscroll" : true,
32610         /**
32611          * @event columnresize
32612          * Fires when the user resizes a column
32613          * @param {Number} columnIndex
32614          * @param {Number} newSize
32615          */
32616         "columnresize" : true,
32617         /**
32618          * @event columnmove
32619          * Fires when the user moves a column
32620          * @param {Number} oldIndex
32621          * @param {Number} newIndex
32622          */
32623         "columnmove" : true,
32624         /**
32625          * @event startdrag
32626          * Fires when row(s) start being dragged
32627          * @param {Grid} this
32628          * @param {Roo.GridDD} dd The drag drop object
32629          * @param {event} e The raw browser event
32630          */
32631         "startdrag" : true,
32632         /**
32633          * @event enddrag
32634          * Fires when a drag operation is complete
32635          * @param {Grid} this
32636          * @param {Roo.GridDD} dd The drag drop object
32637          * @param {event} e The raw browser event
32638          */
32639         "enddrag" : true,
32640         /**
32641          * @event dragdrop
32642          * Fires when dragged row(s) are dropped on a valid DD target
32643          * @param {Grid} this
32644          * @param {Roo.GridDD} dd The drag drop object
32645          * @param {String} targetId The target drag drop object
32646          * @param {event} e The raw browser event
32647          */
32648         "dragdrop" : true,
32649         /**
32650          * @event dragover
32651          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
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         "dragover" : true,
32658         /**
32659          * @event dragenter
32660          *  Fires when the dragged row(s) first cross another DD target while being dragged
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         "dragenter" : true,
32667         /**
32668          * @event dragout
32669          * Fires when the dragged row(s) leave 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         "dragout" : true,
32676         /**
32677          * @event rowclass
32678          * Fires when a row is rendered, so you can change add a style to it.
32679          * @param {GridView} gridview   The grid view
32680          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
32681          */
32682         'rowclass' : true,
32683
32684         /**
32685          * @event render
32686          * Fires when the grid is rendered
32687          * @param {Grid} grid
32688          */
32689         'render' : true
32690     });
32691
32692     Roo.grid.Grid.superclass.constructor.call(this);
32693 };
32694 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
32695     
32696     /**
32697      * @cfg {String} ddGroup - drag drop group.
32698      */
32699
32700     /**
32701      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
32702      */
32703     minColumnWidth : 25,
32704
32705     /**
32706      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
32707      * <b>on initial render.</b> It is more efficient to explicitly size the columns
32708      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
32709      */
32710     autoSizeColumns : false,
32711
32712     /**
32713      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
32714      */
32715     autoSizeHeaders : true,
32716
32717     /**
32718      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
32719      */
32720     monitorWindowResize : true,
32721
32722     /**
32723      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
32724      * rows measured to get a columns size. Default is 0 (all rows).
32725      */
32726     maxRowsToMeasure : 0,
32727
32728     /**
32729      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
32730      */
32731     trackMouseOver : true,
32732
32733     /**
32734     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
32735     */
32736     
32737     /**
32738     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
32739     */
32740     enableDragDrop : false,
32741     
32742     /**
32743     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
32744     */
32745     enableColumnMove : true,
32746     
32747     /**
32748     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
32749     */
32750     enableColumnHide : true,
32751     
32752     /**
32753     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
32754     */
32755     enableRowHeightSync : false,
32756     
32757     /**
32758     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
32759     */
32760     stripeRows : true,
32761     
32762     /**
32763     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
32764     */
32765     autoHeight : false,
32766
32767     /**
32768      * @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.
32769      */
32770     autoExpandColumn : false,
32771
32772     /**
32773     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
32774     * Default is 50.
32775     */
32776     autoExpandMin : 50,
32777
32778     /**
32779     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
32780     */
32781     autoExpandMax : 1000,
32782
32783     /**
32784     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
32785     */
32786     view : null,
32787
32788     /**
32789     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
32790     */
32791     loadMask : false,
32792     /**
32793     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
32794     */
32795     dropTarget: false,
32796     
32797    
32798     
32799     // private
32800     rendered : false,
32801
32802     /**
32803     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
32804     * of a fixed width. Default is false.
32805     */
32806     /**
32807     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
32808     */
32809     /**
32810      * Called once after all setup has been completed and the grid is ready to be rendered.
32811      * @return {Roo.grid.Grid} this
32812      */
32813     render : function()
32814     {
32815         var c = this.container;
32816         // try to detect autoHeight/width mode
32817         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
32818             this.autoHeight = true;
32819         }
32820         var view = this.getView();
32821         view.init(this);
32822
32823         c.on("click", this.onClick, this);
32824         c.on("dblclick", this.onDblClick, this);
32825         c.on("contextmenu", this.onContextMenu, this);
32826         c.on("keydown", this.onKeyDown, this);
32827         if (Roo.isTouch) {
32828             c.on("touchstart", this.onTouchStart, this);
32829         }
32830
32831         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
32832
32833         this.getSelectionModel().init(this);
32834
32835         view.render();
32836
32837         if(this.loadMask){
32838             this.loadMask = new Roo.LoadMask(this.container,
32839                     Roo.apply({store:this.dataSource}, this.loadMask));
32840         }
32841         
32842         
32843         if (this.toolbar && this.toolbar.xtype) {
32844             this.toolbar.container = this.getView().getHeaderPanel(true);
32845             this.toolbar = new Roo.Toolbar(this.toolbar);
32846         }
32847         if (this.footer && this.footer.xtype) {
32848             this.footer.dataSource = this.getDataSource();
32849             this.footer.container = this.getView().getFooterPanel(true);
32850             this.footer = Roo.factory(this.footer, Roo);
32851         }
32852         if (this.dropTarget && this.dropTarget.xtype) {
32853             delete this.dropTarget.xtype;
32854             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
32855         }
32856         
32857         
32858         this.rendered = true;
32859         this.fireEvent('render', this);
32860         return this;
32861     },
32862
32863         /**
32864          * Reconfigures the grid to use a different Store and Column Model.
32865          * The View will be bound to the new objects and refreshed.
32866          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
32867          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
32868          */
32869     reconfigure : function(dataSource, colModel){
32870         if(this.loadMask){
32871             this.loadMask.destroy();
32872             this.loadMask = new Roo.LoadMask(this.container,
32873                     Roo.apply({store:dataSource}, this.loadMask));
32874         }
32875         this.view.bind(dataSource, colModel);
32876         this.dataSource = dataSource;
32877         this.colModel = colModel;
32878         this.view.refresh(true);
32879     },
32880
32881     // private
32882     onKeyDown : function(e){
32883         this.fireEvent("keydown", e);
32884     },
32885
32886     /**
32887      * Destroy this grid.
32888      * @param {Boolean} removeEl True to remove the element
32889      */
32890     destroy : function(removeEl, keepListeners){
32891         if(this.loadMask){
32892             this.loadMask.destroy();
32893         }
32894         var c = this.container;
32895         c.removeAllListeners();
32896         this.view.destroy();
32897         this.colModel.purgeListeners();
32898         if(!keepListeners){
32899             this.purgeListeners();
32900         }
32901         c.update("");
32902         if(removeEl === true){
32903             c.remove();
32904         }
32905     },
32906
32907     // private
32908     processEvent : function(name, e){
32909         // does this fire select???
32910         //Roo.log('grid:processEvent '  + name);
32911         
32912         if (name != 'touchstart' ) {
32913             this.fireEvent(name, e);    
32914         }
32915         
32916         var t = e.getTarget();
32917         var v = this.view;
32918         var header = v.findHeaderIndex(t);
32919         if(header !== false){
32920             var ename = name == 'touchstart' ? 'click' : name;
32921              
32922             this.fireEvent("header" + ename, this, header, e);
32923         }else{
32924             var row = v.findRowIndex(t);
32925             var cell = v.findCellIndex(t);
32926             if (name == 'touchstart') {
32927                 // first touch is always a click.
32928                 // hopefull this happens after selection is updated.?
32929                 name = false;
32930                 
32931                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
32932                     var cs = this.selModel.getSelectedCell();
32933                     if (row == cs[0] && cell == cs[1]){
32934                         name = 'dblclick';
32935                     }
32936                 }
32937                 if (typeof(this.selModel.getSelections) != 'undefined') {
32938                     var cs = this.selModel.getSelections();
32939                     var ds = this.dataSource;
32940                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
32941                         name = 'dblclick';
32942                     }
32943                 }
32944                 if (!name) {
32945                     return;
32946                 }
32947             }
32948             
32949             
32950             if(row !== false){
32951                 this.fireEvent("row" + name, this, row, e);
32952                 if(cell !== false){
32953                     this.fireEvent("cell" + name, this, row, cell, e);
32954                 }
32955             }
32956         }
32957     },
32958
32959     // private
32960     onClick : function(e){
32961         this.processEvent("click", e);
32962     },
32963    // private
32964     onTouchStart : function(e){
32965         this.processEvent("touchstart", e);
32966     },
32967
32968     // private
32969     onContextMenu : function(e, t){
32970         this.processEvent("contextmenu", e);
32971     },
32972
32973     // private
32974     onDblClick : function(e){
32975         this.processEvent("dblclick", e);
32976     },
32977
32978     // private
32979     walkCells : function(row, col, step, fn, scope){
32980         var cm = this.colModel, clen = cm.getColumnCount();
32981         var ds = this.dataSource, rlen = ds.getCount(), first = true;
32982         if(step < 0){
32983             if(col < 0){
32984                 row--;
32985                 first = false;
32986             }
32987             while(row >= 0){
32988                 if(!first){
32989                     col = clen-1;
32990                 }
32991                 first = false;
32992                 while(col >= 0){
32993                     if(fn.call(scope || this, row, col, cm) === true){
32994                         return [row, col];
32995                     }
32996                     col--;
32997                 }
32998                 row--;
32999             }
33000         } else {
33001             if(col >= clen){
33002                 row++;
33003                 first = false;
33004             }
33005             while(row < rlen){
33006                 if(!first){
33007                     col = 0;
33008                 }
33009                 first = false;
33010                 while(col < clen){
33011                     if(fn.call(scope || this, row, col, cm) === true){
33012                         return [row, col];
33013                     }
33014                     col++;
33015                 }
33016                 row++;
33017             }
33018         }
33019         return null;
33020     },
33021
33022     // private
33023     getSelections : function(){
33024         return this.selModel.getSelections();
33025     },
33026
33027     /**
33028      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
33029      * but if manual update is required this method will initiate it.
33030      */
33031     autoSize : function(){
33032         if(this.rendered){
33033             this.view.layout();
33034             if(this.view.adjustForScroll){
33035                 this.view.adjustForScroll();
33036             }
33037         }
33038     },
33039
33040     /**
33041      * Returns the grid's underlying element.
33042      * @return {Element} The element
33043      */
33044     getGridEl : function(){
33045         return this.container;
33046     },
33047
33048     // private for compatibility, overridden by editor grid
33049     stopEditing : function(){},
33050
33051     /**
33052      * Returns the grid's SelectionModel.
33053      * @return {SelectionModel}
33054      */
33055     getSelectionModel : function(){
33056         if(!this.selModel){
33057             this.selModel = new Roo.grid.RowSelectionModel();
33058         }
33059         return this.selModel;
33060     },
33061
33062     /**
33063      * Returns the grid's DataSource.
33064      * @return {DataSource}
33065      */
33066     getDataSource : function(){
33067         return this.dataSource;
33068     },
33069
33070     /**
33071      * Returns the grid's ColumnModel.
33072      * @return {ColumnModel}
33073      */
33074     getColumnModel : function(){
33075         return this.colModel;
33076     },
33077
33078     /**
33079      * Returns the grid's GridView object.
33080      * @return {GridView}
33081      */
33082     getView : function(){
33083         if(!this.view){
33084             this.view = new Roo.grid.GridView(this.viewConfig);
33085         }
33086         return this.view;
33087     },
33088     /**
33089      * Called to get grid's drag proxy text, by default returns this.ddText.
33090      * @return {String}
33091      */
33092     getDragDropText : function(){
33093         var count = this.selModel.getCount();
33094         return String.format(this.ddText, count, count == 1 ? '' : 's');
33095     }
33096 });
33097 /**
33098  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
33099  * %0 is replaced with the number of selected rows.
33100  * @type String
33101  */
33102 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
33103  * Based on:
33104  * Ext JS Library 1.1.1
33105  * Copyright(c) 2006-2007, Ext JS, LLC.
33106  *
33107  * Originally Released Under LGPL - original licence link has changed is not relivant.
33108  *
33109  * Fork - LGPL
33110  * <script type="text/javascript">
33111  */
33112  
33113 Roo.grid.AbstractGridView = function(){
33114         this.grid = null;
33115         
33116         this.events = {
33117             "beforerowremoved" : true,
33118             "beforerowsinserted" : true,
33119             "beforerefresh" : true,
33120             "rowremoved" : true,
33121             "rowsinserted" : true,
33122             "rowupdated" : true,
33123             "refresh" : true
33124         };
33125     Roo.grid.AbstractGridView.superclass.constructor.call(this);
33126 };
33127
33128 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
33129     rowClass : "x-grid-row",
33130     cellClass : "x-grid-cell",
33131     tdClass : "x-grid-td",
33132     hdClass : "x-grid-hd",
33133     splitClass : "x-grid-hd-split",
33134     
33135     init: function(grid){
33136         this.grid = grid;
33137                 var cid = this.grid.getGridEl().id;
33138         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
33139         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
33140         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
33141         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
33142         },
33143         
33144     getColumnRenderers : function(){
33145         var renderers = [];
33146         var cm = this.grid.colModel;
33147         var colCount = cm.getColumnCount();
33148         for(var i = 0; i < colCount; i++){
33149             renderers[i] = cm.getRenderer(i);
33150         }
33151         return renderers;
33152     },
33153     
33154     getColumnIds : function(){
33155         var ids = [];
33156         var cm = this.grid.colModel;
33157         var colCount = cm.getColumnCount();
33158         for(var i = 0; i < colCount; i++){
33159             ids[i] = cm.getColumnId(i);
33160         }
33161         return ids;
33162     },
33163     
33164     getDataIndexes : function(){
33165         if(!this.indexMap){
33166             this.indexMap = this.buildIndexMap();
33167         }
33168         return this.indexMap.colToData;
33169     },
33170     
33171     getColumnIndexByDataIndex : function(dataIndex){
33172         if(!this.indexMap){
33173             this.indexMap = this.buildIndexMap();
33174         }
33175         return this.indexMap.dataToCol[dataIndex];
33176     },
33177     
33178     /**
33179      * Set a css style for a column dynamically. 
33180      * @param {Number} colIndex The index of the column
33181      * @param {String} name The css property name
33182      * @param {String} value The css value
33183      */
33184     setCSSStyle : function(colIndex, name, value){
33185         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
33186         Roo.util.CSS.updateRule(selector, name, value);
33187     },
33188     
33189     generateRules : function(cm){
33190         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
33191         Roo.util.CSS.removeStyleSheet(rulesId);
33192         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33193             var cid = cm.getColumnId(i);
33194             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
33195                          this.tdSelector, cid, " {\n}\n",
33196                          this.hdSelector, cid, " {\n}\n",
33197                          this.splitSelector, cid, " {\n}\n");
33198         }
33199         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
33200     }
33201 });/*
33202  * Based on:
33203  * Ext JS Library 1.1.1
33204  * Copyright(c) 2006-2007, Ext JS, LLC.
33205  *
33206  * Originally Released Under LGPL - original licence link has changed is not relivant.
33207  *
33208  * Fork - LGPL
33209  * <script type="text/javascript">
33210  */
33211
33212 // private
33213 // This is a support class used internally by the Grid components
33214 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
33215     this.grid = grid;
33216     this.view = grid.getView();
33217     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
33218     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
33219     if(hd2){
33220         this.setHandleElId(Roo.id(hd));
33221         this.setOuterHandleElId(Roo.id(hd2));
33222     }
33223     this.scroll = false;
33224 };
33225 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
33226     maxDragWidth: 120,
33227     getDragData : function(e){
33228         var t = Roo.lib.Event.getTarget(e);
33229         var h = this.view.findHeaderCell(t);
33230         if(h){
33231             return {ddel: h.firstChild, header:h};
33232         }
33233         return false;
33234     },
33235
33236     onInitDrag : function(e){
33237         this.view.headersDisabled = true;
33238         var clone = this.dragData.ddel.cloneNode(true);
33239         clone.id = Roo.id();
33240         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
33241         this.proxy.update(clone);
33242         return true;
33243     },
33244
33245     afterValidDrop : function(){
33246         var v = this.view;
33247         setTimeout(function(){
33248             v.headersDisabled = false;
33249         }, 50);
33250     },
33251
33252     afterInvalidDrop : function(){
33253         var v = this.view;
33254         setTimeout(function(){
33255             v.headersDisabled = false;
33256         }, 50);
33257     }
33258 });
33259 /*
33260  * Based on:
33261  * Ext JS Library 1.1.1
33262  * Copyright(c) 2006-2007, Ext JS, LLC.
33263  *
33264  * Originally Released Under LGPL - original licence link has changed is not relivant.
33265  *
33266  * Fork - LGPL
33267  * <script type="text/javascript">
33268  */
33269 // private
33270 // This is a support class used internally by the Grid components
33271 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
33272     this.grid = grid;
33273     this.view = grid.getView();
33274     // split the proxies so they don't interfere with mouse events
33275     this.proxyTop = Roo.DomHelper.append(document.body, {
33276         cls:"col-move-top", html:"&#160;"
33277     }, true);
33278     this.proxyBottom = Roo.DomHelper.append(document.body, {
33279         cls:"col-move-bottom", html:"&#160;"
33280     }, true);
33281     this.proxyTop.hide = this.proxyBottom.hide = function(){
33282         this.setLeftTop(-100,-100);
33283         this.setStyle("visibility", "hidden");
33284     };
33285     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
33286     // temporarily disabled
33287     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
33288     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
33289 };
33290 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
33291     proxyOffsets : [-4, -9],
33292     fly: Roo.Element.fly,
33293
33294     getTargetFromEvent : function(e){
33295         var t = Roo.lib.Event.getTarget(e);
33296         var cindex = this.view.findCellIndex(t);
33297         if(cindex !== false){
33298             return this.view.getHeaderCell(cindex);
33299         }
33300         return null;
33301     },
33302
33303     nextVisible : function(h){
33304         var v = this.view, cm = this.grid.colModel;
33305         h = h.nextSibling;
33306         while(h){
33307             if(!cm.isHidden(v.getCellIndex(h))){
33308                 return h;
33309             }
33310             h = h.nextSibling;
33311         }
33312         return null;
33313     },
33314
33315     prevVisible : function(h){
33316         var v = this.view, cm = this.grid.colModel;
33317         h = h.prevSibling;
33318         while(h){
33319             if(!cm.isHidden(v.getCellIndex(h))){
33320                 return h;
33321             }
33322             h = h.prevSibling;
33323         }
33324         return null;
33325     },
33326
33327     positionIndicator : function(h, n, e){
33328         var x = Roo.lib.Event.getPageX(e);
33329         var r = Roo.lib.Dom.getRegion(n.firstChild);
33330         var px, pt, py = r.top + this.proxyOffsets[1];
33331         if((r.right - x) <= (r.right-r.left)/2){
33332             px = r.right+this.view.borderWidth;
33333             pt = "after";
33334         }else{
33335             px = r.left;
33336             pt = "before";
33337         }
33338         var oldIndex = this.view.getCellIndex(h);
33339         var newIndex = this.view.getCellIndex(n);
33340
33341         if(this.grid.colModel.isFixed(newIndex)){
33342             return false;
33343         }
33344
33345         var locked = this.grid.colModel.isLocked(newIndex);
33346
33347         if(pt == "after"){
33348             newIndex++;
33349         }
33350         if(oldIndex < newIndex){
33351             newIndex--;
33352         }
33353         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
33354             return false;
33355         }
33356         px +=  this.proxyOffsets[0];
33357         this.proxyTop.setLeftTop(px, py);
33358         this.proxyTop.show();
33359         if(!this.bottomOffset){
33360             this.bottomOffset = this.view.mainHd.getHeight();
33361         }
33362         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
33363         this.proxyBottom.show();
33364         return pt;
33365     },
33366
33367     onNodeEnter : function(n, dd, e, data){
33368         if(data.header != n){
33369             this.positionIndicator(data.header, n, e);
33370         }
33371     },
33372
33373     onNodeOver : function(n, dd, e, data){
33374         var result = false;
33375         if(data.header != n){
33376             result = this.positionIndicator(data.header, n, e);
33377         }
33378         if(!result){
33379             this.proxyTop.hide();
33380             this.proxyBottom.hide();
33381         }
33382         return result ? this.dropAllowed : this.dropNotAllowed;
33383     },
33384
33385     onNodeOut : function(n, dd, e, data){
33386         this.proxyTop.hide();
33387         this.proxyBottom.hide();
33388     },
33389
33390     onNodeDrop : function(n, dd, e, data){
33391         var h = data.header;
33392         if(h != n){
33393             var cm = this.grid.colModel;
33394             var x = Roo.lib.Event.getPageX(e);
33395             var r = Roo.lib.Dom.getRegion(n.firstChild);
33396             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
33397             var oldIndex = this.view.getCellIndex(h);
33398             var newIndex = this.view.getCellIndex(n);
33399             var locked = cm.isLocked(newIndex);
33400             if(pt == "after"){
33401                 newIndex++;
33402             }
33403             if(oldIndex < newIndex){
33404                 newIndex--;
33405             }
33406             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
33407                 return false;
33408             }
33409             cm.setLocked(oldIndex, locked, true);
33410             cm.moveColumn(oldIndex, newIndex);
33411             this.grid.fireEvent("columnmove", oldIndex, newIndex);
33412             return true;
33413         }
33414         return false;
33415     }
33416 });
33417 /*
33418  * Based on:
33419  * Ext JS Library 1.1.1
33420  * Copyright(c) 2006-2007, Ext JS, LLC.
33421  *
33422  * Originally Released Under LGPL - original licence link has changed is not relivant.
33423  *
33424  * Fork - LGPL
33425  * <script type="text/javascript">
33426  */
33427   
33428 /**
33429  * @class Roo.grid.GridView
33430  * @extends Roo.util.Observable
33431  *
33432  * @constructor
33433  * @param {Object} config
33434  */
33435 Roo.grid.GridView = function(config){
33436     Roo.grid.GridView.superclass.constructor.call(this);
33437     this.el = null;
33438
33439     Roo.apply(this, config);
33440 };
33441
33442 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
33443
33444     unselectable :  'unselectable="on"',
33445     unselectableCls :  'x-unselectable',
33446     
33447     
33448     rowClass : "x-grid-row",
33449
33450     cellClass : "x-grid-col",
33451
33452     tdClass : "x-grid-td",
33453
33454     hdClass : "x-grid-hd",
33455
33456     splitClass : "x-grid-split",
33457
33458     sortClasses : ["sort-asc", "sort-desc"],
33459
33460     enableMoveAnim : false,
33461
33462     hlColor: "C3DAF9",
33463
33464     dh : Roo.DomHelper,
33465
33466     fly : Roo.Element.fly,
33467
33468     css : Roo.util.CSS,
33469
33470     borderWidth: 1,
33471
33472     splitOffset: 3,
33473
33474     scrollIncrement : 22,
33475
33476     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
33477
33478     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
33479
33480     bind : function(ds, cm){
33481         if(this.ds){
33482             this.ds.un("load", this.onLoad, this);
33483             this.ds.un("datachanged", this.onDataChange, this);
33484             this.ds.un("add", this.onAdd, this);
33485             this.ds.un("remove", this.onRemove, this);
33486             this.ds.un("update", this.onUpdate, this);
33487             this.ds.un("clear", this.onClear, this);
33488         }
33489         if(ds){
33490             ds.on("load", this.onLoad, this);
33491             ds.on("datachanged", this.onDataChange, this);
33492             ds.on("add", this.onAdd, this);
33493             ds.on("remove", this.onRemove, this);
33494             ds.on("update", this.onUpdate, this);
33495             ds.on("clear", this.onClear, this);
33496         }
33497         this.ds = ds;
33498
33499         if(this.cm){
33500             this.cm.un("widthchange", this.onColWidthChange, this);
33501             this.cm.un("headerchange", this.onHeaderChange, this);
33502             this.cm.un("hiddenchange", this.onHiddenChange, this);
33503             this.cm.un("columnmoved", this.onColumnMove, this);
33504             this.cm.un("columnlockchange", this.onColumnLock, this);
33505         }
33506         if(cm){
33507             this.generateRules(cm);
33508             cm.on("widthchange", this.onColWidthChange, this);
33509             cm.on("headerchange", this.onHeaderChange, this);
33510             cm.on("hiddenchange", this.onHiddenChange, this);
33511             cm.on("columnmoved", this.onColumnMove, this);
33512             cm.on("columnlockchange", this.onColumnLock, this);
33513         }
33514         this.cm = cm;
33515     },
33516
33517     init: function(grid){
33518         Roo.grid.GridView.superclass.init.call(this, grid);
33519
33520         this.bind(grid.dataSource, grid.colModel);
33521
33522         grid.on("headerclick", this.handleHeaderClick, this);
33523
33524         if(grid.trackMouseOver){
33525             grid.on("mouseover", this.onRowOver, this);
33526             grid.on("mouseout", this.onRowOut, this);
33527         }
33528         grid.cancelTextSelection = function(){};
33529         this.gridId = grid.id;
33530
33531         var tpls = this.templates || {};
33532
33533         if(!tpls.master){
33534             tpls.master = new Roo.Template(
33535                '<div class="x-grid" hidefocus="true">',
33536                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
33537                   '<div class="x-grid-topbar"></div>',
33538                   '<div class="x-grid-scroller"><div></div></div>',
33539                   '<div class="x-grid-locked">',
33540                       '<div class="x-grid-header">{lockedHeader}</div>',
33541                       '<div class="x-grid-body">{lockedBody}</div>',
33542                   "</div>",
33543                   '<div class="x-grid-viewport">',
33544                       '<div class="x-grid-header">{header}</div>',
33545                       '<div class="x-grid-body">{body}</div>',
33546                   "</div>",
33547                   '<div class="x-grid-bottombar"></div>',
33548                  
33549                   '<div class="x-grid-resize-proxy">&#160;</div>',
33550                "</div>"
33551             );
33552             tpls.master.disableformats = true;
33553         }
33554
33555         if(!tpls.header){
33556             tpls.header = new Roo.Template(
33557                '<table border="0" cellspacing="0" cellpadding="0">',
33558                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
33559                "</table>{splits}"
33560             );
33561             tpls.header.disableformats = true;
33562         }
33563         tpls.header.compile();
33564
33565         if(!tpls.hcell){
33566             tpls.hcell = new Roo.Template(
33567                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
33568                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
33569                 "</div></td>"
33570              );
33571              tpls.hcell.disableFormats = true;
33572         }
33573         tpls.hcell.compile();
33574
33575         if(!tpls.hsplit){
33576             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
33577                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
33578             tpls.hsplit.disableFormats = true;
33579         }
33580         tpls.hsplit.compile();
33581
33582         if(!tpls.body){
33583             tpls.body = new Roo.Template(
33584                '<table border="0" cellspacing="0" cellpadding="0">',
33585                "<tbody>{rows}</tbody>",
33586                "</table>"
33587             );
33588             tpls.body.disableFormats = true;
33589         }
33590         tpls.body.compile();
33591
33592         if(!tpls.row){
33593             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
33594             tpls.row.disableFormats = true;
33595         }
33596         tpls.row.compile();
33597
33598         if(!tpls.cell){
33599             tpls.cell = new Roo.Template(
33600                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
33601                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
33602                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
33603                 "</td>"
33604             );
33605             tpls.cell.disableFormats = true;
33606         }
33607         tpls.cell.compile();
33608
33609         this.templates = tpls;
33610     },
33611
33612     // remap these for backwards compat
33613     onColWidthChange : function(){
33614         this.updateColumns.apply(this, arguments);
33615     },
33616     onHeaderChange : function(){
33617         this.updateHeaders.apply(this, arguments);
33618     }, 
33619     onHiddenChange : function(){
33620         this.handleHiddenChange.apply(this, arguments);
33621     },
33622     onColumnMove : function(){
33623         this.handleColumnMove.apply(this, arguments);
33624     },
33625     onColumnLock : function(){
33626         this.handleLockChange.apply(this, arguments);
33627     },
33628
33629     onDataChange : function(){
33630         this.refresh();
33631         this.updateHeaderSortState();
33632     },
33633
33634     onClear : function(){
33635         this.refresh();
33636     },
33637
33638     onUpdate : function(ds, record){
33639         this.refreshRow(record);
33640     },
33641
33642     refreshRow : function(record){
33643         var ds = this.ds, index;
33644         if(typeof record == 'number'){
33645             index = record;
33646             record = ds.getAt(index);
33647         }else{
33648             index = ds.indexOf(record);
33649         }
33650         this.insertRows(ds, index, index, true);
33651         this.onRemove(ds, record, index+1, true);
33652         this.syncRowHeights(index, index);
33653         this.layout();
33654         this.fireEvent("rowupdated", this, index, record);
33655     },
33656
33657     onAdd : function(ds, records, index){
33658         this.insertRows(ds, index, index + (records.length-1));
33659     },
33660
33661     onRemove : function(ds, record, index, isUpdate){
33662         if(isUpdate !== true){
33663             this.fireEvent("beforerowremoved", this, index, record);
33664         }
33665         var bt = this.getBodyTable(), lt = this.getLockedTable();
33666         if(bt.rows[index]){
33667             bt.firstChild.removeChild(bt.rows[index]);
33668         }
33669         if(lt.rows[index]){
33670             lt.firstChild.removeChild(lt.rows[index]);
33671         }
33672         if(isUpdate !== true){
33673             this.stripeRows(index);
33674             this.syncRowHeights(index, index);
33675             this.layout();
33676             this.fireEvent("rowremoved", this, index, record);
33677         }
33678     },
33679
33680     onLoad : function(){
33681         this.scrollToTop();
33682     },
33683
33684     /**
33685      * Scrolls the grid to the top
33686      */
33687     scrollToTop : function(){
33688         if(this.scroller){
33689             this.scroller.dom.scrollTop = 0;
33690             this.syncScroll();
33691         }
33692     },
33693
33694     /**
33695      * Gets a panel in the header of the grid that can be used for toolbars etc.
33696      * After modifying the contents of this panel a call to grid.autoSize() may be
33697      * required to register any changes in size.
33698      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
33699      * @return Roo.Element
33700      */
33701     getHeaderPanel : function(doShow){
33702         if(doShow){
33703             this.headerPanel.show();
33704         }
33705         return this.headerPanel;
33706     },
33707
33708     /**
33709      * Gets a panel in the footer of the grid that can be used for toolbars etc.
33710      * After modifying the contents of this panel a call to grid.autoSize() may be
33711      * required to register any changes in size.
33712      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
33713      * @return Roo.Element
33714      */
33715     getFooterPanel : function(doShow){
33716         if(doShow){
33717             this.footerPanel.show();
33718         }
33719         return this.footerPanel;
33720     },
33721
33722     initElements : function(){
33723         var E = Roo.Element;
33724         var el = this.grid.getGridEl().dom.firstChild;
33725         var cs = el.childNodes;
33726
33727         this.el = new E(el);
33728         
33729          this.focusEl = new E(el.firstChild);
33730         this.focusEl.swallowEvent("click", true);
33731         
33732         this.headerPanel = new E(cs[1]);
33733         this.headerPanel.enableDisplayMode("block");
33734
33735         this.scroller = new E(cs[2]);
33736         this.scrollSizer = new E(this.scroller.dom.firstChild);
33737
33738         this.lockedWrap = new E(cs[3]);
33739         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
33740         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
33741
33742         this.mainWrap = new E(cs[4]);
33743         this.mainHd = new E(this.mainWrap.dom.firstChild);
33744         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
33745
33746         this.footerPanel = new E(cs[5]);
33747         this.footerPanel.enableDisplayMode("block");
33748
33749         this.resizeProxy = new E(cs[6]);
33750
33751         this.headerSelector = String.format(
33752            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
33753            this.lockedHd.id, this.mainHd.id
33754         );
33755
33756         this.splitterSelector = String.format(
33757            '#{0} div.x-grid-split, #{1} div.x-grid-split',
33758            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
33759         );
33760     },
33761     idToCssName : function(s)
33762     {
33763         return s.replace(/[^a-z0-9]+/ig, '-');
33764     },
33765
33766     getHeaderCell : function(index){
33767         return Roo.DomQuery.select(this.headerSelector)[index];
33768     },
33769
33770     getHeaderCellMeasure : function(index){
33771         return this.getHeaderCell(index).firstChild;
33772     },
33773
33774     getHeaderCellText : function(index){
33775         return this.getHeaderCell(index).firstChild.firstChild;
33776     },
33777
33778     getLockedTable : function(){
33779         return this.lockedBody.dom.firstChild;
33780     },
33781
33782     getBodyTable : function(){
33783         return this.mainBody.dom.firstChild;
33784     },
33785
33786     getLockedRow : function(index){
33787         return this.getLockedTable().rows[index];
33788     },
33789
33790     getRow : function(index){
33791         return this.getBodyTable().rows[index];
33792     },
33793
33794     getRowComposite : function(index){
33795         if(!this.rowEl){
33796             this.rowEl = new Roo.CompositeElementLite();
33797         }
33798         var els = [], lrow, mrow;
33799         if(lrow = this.getLockedRow(index)){
33800             els.push(lrow);
33801         }
33802         if(mrow = this.getRow(index)){
33803             els.push(mrow);
33804         }
33805         this.rowEl.elements = els;
33806         return this.rowEl;
33807     },
33808     /**
33809      * Gets the 'td' of the cell
33810      * 
33811      * @param {Integer} rowIndex row to select
33812      * @param {Integer} colIndex column to select
33813      * 
33814      * @return {Object} 
33815      */
33816     getCell : function(rowIndex, colIndex){
33817         var locked = this.cm.getLockedCount();
33818         var source;
33819         if(colIndex < locked){
33820             source = this.lockedBody.dom.firstChild;
33821         }else{
33822             source = this.mainBody.dom.firstChild;
33823             colIndex -= locked;
33824         }
33825         return source.rows[rowIndex].childNodes[colIndex];
33826     },
33827
33828     getCellText : function(rowIndex, colIndex){
33829         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
33830     },
33831
33832     getCellBox : function(cell){
33833         var b = this.fly(cell).getBox();
33834         if(Roo.isOpera){ // opera fails to report the Y
33835             b.y = cell.offsetTop + this.mainBody.getY();
33836         }
33837         return b;
33838     },
33839
33840     getCellIndex : function(cell){
33841         var id = String(cell.className).match(this.cellRE);
33842         if(id){
33843             return parseInt(id[1], 10);
33844         }
33845         return 0;
33846     },
33847
33848     findHeaderIndex : function(n){
33849         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
33850         return r ? this.getCellIndex(r) : false;
33851     },
33852
33853     findHeaderCell : function(n){
33854         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
33855         return r ? r : false;
33856     },
33857
33858     findRowIndex : function(n){
33859         if(!n){
33860             return false;
33861         }
33862         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
33863         return r ? r.rowIndex : false;
33864     },
33865
33866     findCellIndex : function(node){
33867         var stop = this.el.dom;
33868         while(node && node != stop){
33869             if(this.findRE.test(node.className)){
33870                 return this.getCellIndex(node);
33871             }
33872             node = node.parentNode;
33873         }
33874         return false;
33875     },
33876
33877     getColumnId : function(index){
33878         return this.cm.getColumnId(index);
33879     },
33880
33881     getSplitters : function()
33882     {
33883         if(this.splitterSelector){
33884            return Roo.DomQuery.select(this.splitterSelector);
33885         }else{
33886             return null;
33887       }
33888     },
33889
33890     getSplitter : function(index){
33891         return this.getSplitters()[index];
33892     },
33893
33894     onRowOver : function(e, t){
33895         var row;
33896         if((row = this.findRowIndex(t)) !== false){
33897             this.getRowComposite(row).addClass("x-grid-row-over");
33898         }
33899     },
33900
33901     onRowOut : function(e, t){
33902         var row;
33903         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
33904             this.getRowComposite(row).removeClass("x-grid-row-over");
33905         }
33906     },
33907
33908     renderHeaders : function(){
33909         var cm = this.cm;
33910         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
33911         var cb = [], lb = [], sb = [], lsb = [], p = {};
33912         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
33913             p.cellId = "x-grid-hd-0-" + i;
33914             p.splitId = "x-grid-csplit-0-" + i;
33915             p.id = cm.getColumnId(i);
33916             p.value = cm.getColumnHeader(i) || "";
33917             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
33918             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
33919             if(!cm.isLocked(i)){
33920                 cb[cb.length] = ct.apply(p);
33921                 sb[sb.length] = st.apply(p);
33922             }else{
33923                 lb[lb.length] = ct.apply(p);
33924                 lsb[lsb.length] = st.apply(p);
33925             }
33926         }
33927         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
33928                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
33929     },
33930
33931     updateHeaders : function(){
33932         var html = this.renderHeaders();
33933         this.lockedHd.update(html[0]);
33934         this.mainHd.update(html[1]);
33935     },
33936
33937     /**
33938      * Focuses the specified row.
33939      * @param {Number} row The row index
33940      */
33941     focusRow : function(row)
33942     {
33943         //Roo.log('GridView.focusRow');
33944         var x = this.scroller.dom.scrollLeft;
33945         this.focusCell(row, 0, false);
33946         this.scroller.dom.scrollLeft = x;
33947     },
33948
33949     /**
33950      * Focuses the specified cell.
33951      * @param {Number} row The row index
33952      * @param {Number} col The column index
33953      * @param {Boolean} hscroll false to disable horizontal scrolling
33954      */
33955     focusCell : function(row, col, hscroll)
33956     {
33957         //Roo.log('GridView.focusCell');
33958         var el = this.ensureVisible(row, col, hscroll);
33959         this.focusEl.alignTo(el, "tl-tl");
33960         if(Roo.isGecko){
33961             this.focusEl.focus();
33962         }else{
33963             this.focusEl.focus.defer(1, this.focusEl);
33964         }
33965     },
33966
33967     /**
33968      * Scrolls the specified cell into view
33969      * @param {Number} row The row index
33970      * @param {Number} col The column index
33971      * @param {Boolean} hscroll false to disable horizontal scrolling
33972      */
33973     ensureVisible : function(row, col, hscroll)
33974     {
33975         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
33976         //return null; //disable for testing.
33977         if(typeof row != "number"){
33978             row = row.rowIndex;
33979         }
33980         if(row < 0 && row >= this.ds.getCount()){
33981             return  null;
33982         }
33983         col = (col !== undefined ? col : 0);
33984         var cm = this.grid.colModel;
33985         while(cm.isHidden(col)){
33986             col++;
33987         }
33988
33989         var el = this.getCell(row, col);
33990         if(!el){
33991             return null;
33992         }
33993         var c = this.scroller.dom;
33994
33995         var ctop = parseInt(el.offsetTop, 10);
33996         var cleft = parseInt(el.offsetLeft, 10);
33997         var cbot = ctop + el.offsetHeight;
33998         var cright = cleft + el.offsetWidth;
33999         
34000         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
34001         var stop = parseInt(c.scrollTop, 10);
34002         var sleft = parseInt(c.scrollLeft, 10);
34003         var sbot = stop + ch;
34004         var sright = sleft + c.clientWidth;
34005         /*
34006         Roo.log('GridView.ensureVisible:' +
34007                 ' ctop:' + ctop +
34008                 ' c.clientHeight:' + c.clientHeight +
34009                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
34010                 ' stop:' + stop +
34011                 ' cbot:' + cbot +
34012                 ' sbot:' + sbot +
34013                 ' ch:' + ch  
34014                 );
34015         */
34016         if(ctop < stop){
34017              c.scrollTop = ctop;
34018             //Roo.log("set scrolltop to ctop DISABLE?");
34019         }else if(cbot > sbot){
34020             //Roo.log("set scrolltop to cbot-ch");
34021             c.scrollTop = cbot-ch;
34022         }
34023         
34024         if(hscroll !== false){
34025             if(cleft < sleft){
34026                 c.scrollLeft = cleft;
34027             }else if(cright > sright){
34028                 c.scrollLeft = cright-c.clientWidth;
34029             }
34030         }
34031          
34032         return el;
34033     },
34034
34035     updateColumns : function(){
34036         this.grid.stopEditing();
34037         var cm = this.grid.colModel, colIds = this.getColumnIds();
34038         //var totalWidth = cm.getTotalWidth();
34039         var pos = 0;
34040         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34041             //if(cm.isHidden(i)) continue;
34042             var w = cm.getColumnWidth(i);
34043             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
34044             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
34045         }
34046         this.updateSplitters();
34047     },
34048
34049     generateRules : function(cm){
34050         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
34051         Roo.util.CSS.removeStyleSheet(rulesId);
34052         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34053             var cid = cm.getColumnId(i);
34054             var align = '';
34055             if(cm.config[i].align){
34056                 align = 'text-align:'+cm.config[i].align+';';
34057             }
34058             var hidden = '';
34059             if(cm.isHidden(i)){
34060                 hidden = 'display:none;';
34061             }
34062             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
34063             ruleBuf.push(
34064                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
34065                     this.hdSelector, cid, " {\n", align, width, "}\n",
34066                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
34067                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
34068         }
34069         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
34070     },
34071
34072     updateSplitters : function(){
34073         var cm = this.cm, s = this.getSplitters();
34074         if(s){ // splitters not created yet
34075             var pos = 0, locked = true;
34076             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34077                 if(cm.isHidden(i)) {
34078                     continue;
34079                 }
34080                 var w = cm.getColumnWidth(i); // make sure it's a number
34081                 if(!cm.isLocked(i) && locked){
34082                     pos = 0;
34083                     locked = false;
34084                 }
34085                 pos += w;
34086                 s[i].style.left = (pos-this.splitOffset) + "px";
34087             }
34088         }
34089     },
34090
34091     handleHiddenChange : function(colModel, colIndex, hidden){
34092         if(hidden){
34093             this.hideColumn(colIndex);
34094         }else{
34095             this.unhideColumn(colIndex);
34096         }
34097     },
34098
34099     hideColumn : function(colIndex){
34100         var cid = this.getColumnId(colIndex);
34101         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
34102         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
34103         if(Roo.isSafari){
34104             this.updateHeaders();
34105         }
34106         this.updateSplitters();
34107         this.layout();
34108     },
34109
34110     unhideColumn : function(colIndex){
34111         var cid = this.getColumnId(colIndex);
34112         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
34113         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
34114
34115         if(Roo.isSafari){
34116             this.updateHeaders();
34117         }
34118         this.updateSplitters();
34119         this.layout();
34120     },
34121
34122     insertRows : function(dm, firstRow, lastRow, isUpdate){
34123         if(firstRow == 0 && lastRow == dm.getCount()-1){
34124             this.refresh();
34125         }else{
34126             if(!isUpdate){
34127                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
34128             }
34129             var s = this.getScrollState();
34130             var markup = this.renderRows(firstRow, lastRow);
34131             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
34132             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
34133             this.restoreScroll(s);
34134             if(!isUpdate){
34135                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
34136                 this.syncRowHeights(firstRow, lastRow);
34137                 this.stripeRows(firstRow);
34138                 this.layout();
34139             }
34140         }
34141     },
34142
34143     bufferRows : function(markup, target, index){
34144         var before = null, trows = target.rows, tbody = target.tBodies[0];
34145         if(index < trows.length){
34146             before = trows[index];
34147         }
34148         var b = document.createElement("div");
34149         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
34150         var rows = b.firstChild.rows;
34151         for(var i = 0, len = rows.length; i < len; i++){
34152             if(before){
34153                 tbody.insertBefore(rows[0], before);
34154             }else{
34155                 tbody.appendChild(rows[0]);
34156             }
34157         }
34158         b.innerHTML = "";
34159         b = null;
34160     },
34161
34162     deleteRows : function(dm, firstRow, lastRow){
34163         if(dm.getRowCount()<1){
34164             this.fireEvent("beforerefresh", this);
34165             this.mainBody.update("");
34166             this.lockedBody.update("");
34167             this.fireEvent("refresh", this);
34168         }else{
34169             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
34170             var bt = this.getBodyTable();
34171             var tbody = bt.firstChild;
34172             var rows = bt.rows;
34173             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
34174                 tbody.removeChild(rows[firstRow]);
34175             }
34176             this.stripeRows(firstRow);
34177             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
34178         }
34179     },
34180
34181     updateRows : function(dataSource, firstRow, lastRow){
34182         var s = this.getScrollState();
34183         this.refresh();
34184         this.restoreScroll(s);
34185     },
34186
34187     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
34188         if(!noRefresh){
34189            this.refresh();
34190         }
34191         this.updateHeaderSortState();
34192     },
34193
34194     getScrollState : function(){
34195         
34196         var sb = this.scroller.dom;
34197         return {left: sb.scrollLeft, top: sb.scrollTop};
34198     },
34199
34200     stripeRows : function(startRow){
34201         if(!this.grid.stripeRows || this.ds.getCount() < 1){
34202             return;
34203         }
34204         startRow = startRow || 0;
34205         var rows = this.getBodyTable().rows;
34206         var lrows = this.getLockedTable().rows;
34207         var cls = ' x-grid-row-alt ';
34208         for(var i = startRow, len = rows.length; i < len; i++){
34209             var row = rows[i], lrow = lrows[i];
34210             var isAlt = ((i+1) % 2 == 0);
34211             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
34212             if(isAlt == hasAlt){
34213                 continue;
34214             }
34215             if(isAlt){
34216                 row.className += " x-grid-row-alt";
34217             }else{
34218                 row.className = row.className.replace("x-grid-row-alt", "");
34219             }
34220             if(lrow){
34221                 lrow.className = row.className;
34222             }
34223         }
34224     },
34225
34226     restoreScroll : function(state){
34227         //Roo.log('GridView.restoreScroll');
34228         var sb = this.scroller.dom;
34229         sb.scrollLeft = state.left;
34230         sb.scrollTop = state.top;
34231         this.syncScroll();
34232     },
34233
34234     syncScroll : function(){
34235         //Roo.log('GridView.syncScroll');
34236         var sb = this.scroller.dom;
34237         var sh = this.mainHd.dom;
34238         var bs = this.mainBody.dom;
34239         var lv = this.lockedBody.dom;
34240         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
34241         lv.scrollTop = bs.scrollTop = sb.scrollTop;
34242     },
34243
34244     handleScroll : function(e){
34245         this.syncScroll();
34246         var sb = this.scroller.dom;
34247         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
34248         e.stopEvent();
34249     },
34250
34251     handleWheel : function(e){
34252         var d = e.getWheelDelta();
34253         this.scroller.dom.scrollTop -= d*22;
34254         // set this here to prevent jumpy scrolling on large tables
34255         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
34256         e.stopEvent();
34257     },
34258
34259     renderRows : function(startRow, endRow){
34260         // pull in all the crap needed to render rows
34261         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
34262         var colCount = cm.getColumnCount();
34263
34264         if(ds.getCount() < 1){
34265             return ["", ""];
34266         }
34267
34268         // build a map for all the columns
34269         var cs = [];
34270         for(var i = 0; i < colCount; i++){
34271             var name = cm.getDataIndex(i);
34272             cs[i] = {
34273                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
34274                 renderer : cm.getRenderer(i),
34275                 id : cm.getColumnId(i),
34276                 locked : cm.isLocked(i),
34277                 has_editor : cm.isCellEditable(i)
34278             };
34279         }
34280
34281         startRow = startRow || 0;
34282         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
34283
34284         // records to render
34285         var rs = ds.getRange(startRow, endRow);
34286
34287         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
34288     },
34289
34290     // As much as I hate to duplicate code, this was branched because FireFox really hates
34291     // [].join("") on strings. The performance difference was substantial enough to
34292     // branch this function
34293     doRender : Roo.isGecko ?
34294             function(cs, rs, ds, startRow, colCount, stripe){
34295                 var ts = this.templates, ct = ts.cell, rt = ts.row;
34296                 // buffers
34297                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
34298                 
34299                 var hasListener = this.grid.hasListener('rowclass');
34300                 var rowcfg = {};
34301                 for(var j = 0, len = rs.length; j < len; j++){
34302                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
34303                     for(var i = 0; i < colCount; i++){
34304                         c = cs[i];
34305                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
34306                         p.id = c.id;
34307                         p.css = p.attr = "";
34308                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
34309                         if(p.value == undefined || p.value === "") {
34310                             p.value = "&#160;";
34311                         }
34312                         if(c.has_editor){
34313                             p.css += ' x-grid-editable-cell';
34314                         }
34315                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
34316                             p.css +=  ' x-grid-dirty-cell';
34317                         }
34318                         var markup = ct.apply(p);
34319                         if(!c.locked){
34320                             cb+= markup;
34321                         }else{
34322                             lcb+= markup;
34323                         }
34324                     }
34325                     var alt = [];
34326                     if(stripe && ((rowIndex+1) % 2 == 0)){
34327                         alt.push("x-grid-row-alt")
34328                     }
34329                     if(r.dirty){
34330                         alt.push(  " x-grid-dirty-row");
34331                     }
34332                     rp.cells = lcb;
34333                     if(this.getRowClass){
34334                         alt.push(this.getRowClass(r, rowIndex));
34335                     }
34336                     if (hasListener) {
34337                         rowcfg = {
34338                              
34339                             record: r,
34340                             rowIndex : rowIndex,
34341                             rowClass : ''
34342                         };
34343                         this.grid.fireEvent('rowclass', this, rowcfg);
34344                         alt.push(rowcfg.rowClass);
34345                     }
34346                     rp.alt = alt.join(" ");
34347                     lbuf+= rt.apply(rp);
34348                     rp.cells = cb;
34349                     buf+=  rt.apply(rp);
34350                 }
34351                 return [lbuf, buf];
34352             } :
34353             function(cs, rs, ds, startRow, colCount, stripe){
34354                 var ts = this.templates, ct = ts.cell, rt = ts.row;
34355                 // buffers
34356                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
34357                 var hasListener = this.grid.hasListener('rowclass');
34358  
34359                 var rowcfg = {};
34360                 for(var j = 0, len = rs.length; j < len; j++){
34361                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
34362                     for(var i = 0; i < colCount; i++){
34363                         c = cs[i];
34364                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
34365                         p.id = c.id;
34366                         p.css = p.attr = "";
34367                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
34368                         if(p.value == undefined || p.value === "") {
34369                             p.value = "&#160;";
34370                         }
34371                         //Roo.log(c);
34372                          if(c.has_editor){
34373                             p.css += ' x-grid-editable-cell';
34374                         }
34375                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
34376                             p.css += ' x-grid-dirty-cell' 
34377                         }
34378                         
34379                         var markup = ct.apply(p);
34380                         if(!c.locked){
34381                             cb[cb.length] = markup;
34382                         }else{
34383                             lcb[lcb.length] = markup;
34384                         }
34385                     }
34386                     var alt = [];
34387                     if(stripe && ((rowIndex+1) % 2 == 0)){
34388                         alt.push( "x-grid-row-alt");
34389                     }
34390                     if(r.dirty){
34391                         alt.push(" x-grid-dirty-row");
34392                     }
34393                     rp.cells = lcb;
34394                     if(this.getRowClass){
34395                         alt.push( this.getRowClass(r, rowIndex));
34396                     }
34397                     if (hasListener) {
34398                         rowcfg = {
34399                              
34400                             record: r,
34401                             rowIndex : rowIndex,
34402                             rowClass : ''
34403                         };
34404                         this.grid.fireEvent('rowclass', this, rowcfg);
34405                         alt.push(rowcfg.rowClass);
34406                     }
34407                     
34408                     rp.alt = alt.join(" ");
34409                     rp.cells = lcb.join("");
34410                     lbuf[lbuf.length] = rt.apply(rp);
34411                     rp.cells = cb.join("");
34412                     buf[buf.length] =  rt.apply(rp);
34413                 }
34414                 return [lbuf.join(""), buf.join("")];
34415             },
34416
34417     renderBody : function(){
34418         var markup = this.renderRows();
34419         var bt = this.templates.body;
34420         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
34421     },
34422
34423     /**
34424      * Refreshes the grid
34425      * @param {Boolean} headersToo
34426      */
34427     refresh : function(headersToo){
34428         this.fireEvent("beforerefresh", this);
34429         this.grid.stopEditing();
34430         var result = this.renderBody();
34431         this.lockedBody.update(result[0]);
34432         this.mainBody.update(result[1]);
34433         if(headersToo === true){
34434             this.updateHeaders();
34435             this.updateColumns();
34436             this.updateSplitters();
34437             this.updateHeaderSortState();
34438         }
34439         this.syncRowHeights();
34440         this.layout();
34441         this.fireEvent("refresh", this);
34442     },
34443
34444     handleColumnMove : function(cm, oldIndex, newIndex){
34445         this.indexMap = null;
34446         var s = this.getScrollState();
34447         this.refresh(true);
34448         this.restoreScroll(s);
34449         this.afterMove(newIndex);
34450     },
34451
34452     afterMove : function(colIndex){
34453         if(this.enableMoveAnim && Roo.enableFx){
34454             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
34455         }
34456         // if multisort - fix sortOrder, and reload..
34457         if (this.grid.dataSource.multiSort) {
34458             // the we can call sort again..
34459             var dm = this.grid.dataSource;
34460             var cm = this.grid.colModel;
34461             var so = [];
34462             for(var i = 0; i < cm.config.length; i++ ) {
34463                 
34464                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
34465                     continue; // dont' bother, it's not in sort list or being set.
34466                 }
34467                 
34468                 so.push(cm.config[i].dataIndex);
34469             };
34470             dm.sortOrder = so;
34471             dm.load(dm.lastOptions);
34472             
34473             
34474         }
34475         
34476     },
34477
34478     updateCell : function(dm, rowIndex, dataIndex){
34479         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
34480         if(typeof colIndex == "undefined"){ // not present in grid
34481             return;
34482         }
34483         var cm = this.grid.colModel;
34484         var cell = this.getCell(rowIndex, colIndex);
34485         var cellText = this.getCellText(rowIndex, colIndex);
34486
34487         var p = {
34488             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
34489             id : cm.getColumnId(colIndex),
34490             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
34491         };
34492         var renderer = cm.getRenderer(colIndex);
34493         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
34494         if(typeof val == "undefined" || val === "") {
34495             val = "&#160;";
34496         }
34497         cellText.innerHTML = val;
34498         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
34499         this.syncRowHeights(rowIndex, rowIndex);
34500     },
34501
34502     calcColumnWidth : function(colIndex, maxRowsToMeasure){
34503         var maxWidth = 0;
34504         if(this.grid.autoSizeHeaders){
34505             var h = this.getHeaderCellMeasure(colIndex);
34506             maxWidth = Math.max(maxWidth, h.scrollWidth);
34507         }
34508         var tb, index;
34509         if(this.cm.isLocked(colIndex)){
34510             tb = this.getLockedTable();
34511             index = colIndex;
34512         }else{
34513             tb = this.getBodyTable();
34514             index = colIndex - this.cm.getLockedCount();
34515         }
34516         if(tb && tb.rows){
34517             var rows = tb.rows;
34518             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
34519             for(var i = 0; i < stopIndex; i++){
34520                 var cell = rows[i].childNodes[index].firstChild;
34521                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
34522             }
34523         }
34524         return maxWidth + /*margin for error in IE*/ 5;
34525     },
34526     /**
34527      * Autofit a column to its content.
34528      * @param {Number} colIndex
34529      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
34530      */
34531      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
34532          if(this.cm.isHidden(colIndex)){
34533              return; // can't calc a hidden column
34534          }
34535         if(forceMinSize){
34536             var cid = this.cm.getColumnId(colIndex);
34537             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
34538            if(this.grid.autoSizeHeaders){
34539                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
34540            }
34541         }
34542         var newWidth = this.calcColumnWidth(colIndex);
34543         this.cm.setColumnWidth(colIndex,
34544             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
34545         if(!suppressEvent){
34546             this.grid.fireEvent("columnresize", colIndex, newWidth);
34547         }
34548     },
34549
34550     /**
34551      * Autofits all columns to their content and then expands to fit any extra space in the grid
34552      */
34553      autoSizeColumns : function(){
34554         var cm = this.grid.colModel;
34555         var colCount = cm.getColumnCount();
34556         for(var i = 0; i < colCount; i++){
34557             this.autoSizeColumn(i, true, true);
34558         }
34559         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
34560             this.fitColumns();
34561         }else{
34562             this.updateColumns();
34563             this.layout();
34564         }
34565     },
34566
34567     /**
34568      * Autofits all columns to the grid's width proportionate with their current size
34569      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
34570      */
34571     fitColumns : function(reserveScrollSpace){
34572         var cm = this.grid.colModel;
34573         var colCount = cm.getColumnCount();
34574         var cols = [];
34575         var width = 0;
34576         var i, w;
34577         for (i = 0; i < colCount; i++){
34578             if(!cm.isHidden(i) && !cm.isFixed(i)){
34579                 w = cm.getColumnWidth(i);
34580                 cols.push(i);
34581                 cols.push(w);
34582                 width += w;
34583             }
34584         }
34585         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
34586         if(reserveScrollSpace){
34587             avail -= 17;
34588         }
34589         var frac = (avail - cm.getTotalWidth())/width;
34590         while (cols.length){
34591             w = cols.pop();
34592             i = cols.pop();
34593             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
34594         }
34595         this.updateColumns();
34596         this.layout();
34597     },
34598
34599     onRowSelect : function(rowIndex){
34600         var row = this.getRowComposite(rowIndex);
34601         row.addClass("x-grid-row-selected");
34602     },
34603
34604     onRowDeselect : function(rowIndex){
34605         var row = this.getRowComposite(rowIndex);
34606         row.removeClass("x-grid-row-selected");
34607     },
34608
34609     onCellSelect : function(row, col){
34610         var cell = this.getCell(row, col);
34611         if(cell){
34612             Roo.fly(cell).addClass("x-grid-cell-selected");
34613         }
34614     },
34615
34616     onCellDeselect : function(row, col){
34617         var cell = this.getCell(row, col);
34618         if(cell){
34619             Roo.fly(cell).removeClass("x-grid-cell-selected");
34620         }
34621     },
34622
34623     updateHeaderSortState : function(){
34624         
34625         // sort state can be single { field: xxx, direction : yyy}
34626         // or   { xxx=>ASC , yyy : DESC ..... }
34627         
34628         var mstate = {};
34629         if (!this.ds.multiSort) { 
34630             var state = this.ds.getSortState();
34631             if(!state){
34632                 return;
34633             }
34634             mstate[state.field] = state.direction;
34635             // FIXME... - this is not used here.. but might be elsewhere..
34636             this.sortState = state;
34637             
34638         } else {
34639             mstate = this.ds.sortToggle;
34640         }
34641         //remove existing sort classes..
34642         
34643         var sc = this.sortClasses;
34644         var hds = this.el.select(this.headerSelector).removeClass(sc);
34645         
34646         for(var f in mstate) {
34647         
34648             var sortColumn = this.cm.findColumnIndex(f);
34649             
34650             if(sortColumn != -1){
34651                 var sortDir = mstate[f];        
34652                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
34653             }
34654         }
34655         
34656          
34657         
34658     },
34659
34660
34661     handleHeaderClick : function(g, index,e){
34662         
34663         Roo.log("header click");
34664         
34665         if (Roo.isTouch) {
34666             // touch events on header are handled by context
34667             this.handleHdCtx(g,index,e);
34668             return;
34669         }
34670         
34671         
34672         if(this.headersDisabled){
34673             return;
34674         }
34675         var dm = g.dataSource, cm = g.colModel;
34676         if(!cm.isSortable(index)){
34677             return;
34678         }
34679         g.stopEditing();
34680         
34681         if (dm.multiSort) {
34682             // update the sortOrder
34683             var so = [];
34684             for(var i = 0; i < cm.config.length; i++ ) {
34685                 
34686                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
34687                     continue; // dont' bother, it's not in sort list or being set.
34688                 }
34689                 
34690                 so.push(cm.config[i].dataIndex);
34691             };
34692             dm.sortOrder = so;
34693         }
34694         
34695         
34696         dm.sort(cm.getDataIndex(index));
34697     },
34698
34699
34700     destroy : function(){
34701         if(this.colMenu){
34702             this.colMenu.removeAll();
34703             Roo.menu.MenuMgr.unregister(this.colMenu);
34704             this.colMenu.getEl().remove();
34705             delete this.colMenu;
34706         }
34707         if(this.hmenu){
34708             this.hmenu.removeAll();
34709             Roo.menu.MenuMgr.unregister(this.hmenu);
34710             this.hmenu.getEl().remove();
34711             delete this.hmenu;
34712         }
34713         if(this.grid.enableColumnMove){
34714             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34715             if(dds){
34716                 for(var dd in dds){
34717                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
34718                         var elid = dds[dd].dragElId;
34719                         dds[dd].unreg();
34720                         Roo.get(elid).remove();
34721                     } else if(dds[dd].config.isTarget){
34722                         dds[dd].proxyTop.remove();
34723                         dds[dd].proxyBottom.remove();
34724                         dds[dd].unreg();
34725                     }
34726                     if(Roo.dd.DDM.locationCache[dd]){
34727                         delete Roo.dd.DDM.locationCache[dd];
34728                     }
34729                 }
34730                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
34731             }
34732         }
34733         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
34734         this.bind(null, null);
34735         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
34736     },
34737
34738     handleLockChange : function(){
34739         this.refresh(true);
34740     },
34741
34742     onDenyColumnLock : function(){
34743
34744     },
34745
34746     onDenyColumnHide : function(){
34747
34748     },
34749
34750     handleHdMenuClick : function(item){
34751         var index = this.hdCtxIndex;
34752         var cm = this.cm, ds = this.ds;
34753         switch(item.id){
34754             case "asc":
34755                 ds.sort(cm.getDataIndex(index), "ASC");
34756                 break;
34757             case "desc":
34758                 ds.sort(cm.getDataIndex(index), "DESC");
34759                 break;
34760             case "lock":
34761                 var lc = cm.getLockedCount();
34762                 if(cm.getColumnCount(true) <= lc+1){
34763                     this.onDenyColumnLock();
34764                     return;
34765                 }
34766                 if(lc != index){
34767                     cm.setLocked(index, true, true);
34768                     cm.moveColumn(index, lc);
34769                     this.grid.fireEvent("columnmove", index, lc);
34770                 }else{
34771                     cm.setLocked(index, true);
34772                 }
34773             break;
34774             case "unlock":
34775                 var lc = cm.getLockedCount();
34776                 if((lc-1) != index){
34777                     cm.setLocked(index, false, true);
34778                     cm.moveColumn(index, lc-1);
34779                     this.grid.fireEvent("columnmove", index, lc-1);
34780                 }else{
34781                     cm.setLocked(index, false);
34782                 }
34783             break;
34784             case 'wider': // used to expand cols on touch..
34785             case 'narrow':
34786                 var cw = cm.getColumnWidth(index);
34787                 cw += (item.id == 'wider' ? 1 : -1) * 50;
34788                 cw = Math.max(0, cw);
34789                 cw = Math.min(cw,4000);
34790                 cm.setColumnWidth(index, cw);
34791                 break;
34792                 
34793             default:
34794                 index = cm.getIndexById(item.id.substr(4));
34795                 if(index != -1){
34796                     if(item.checked && cm.getColumnCount(true) <= 1){
34797                         this.onDenyColumnHide();
34798                         return false;
34799                     }
34800                     cm.setHidden(index, item.checked);
34801                 }
34802         }
34803         return true;
34804     },
34805
34806     beforeColMenuShow : function(){
34807         var cm = this.cm,  colCount = cm.getColumnCount();
34808         this.colMenu.removeAll();
34809         for(var i = 0; i < colCount; i++){
34810             this.colMenu.add(new Roo.menu.CheckItem({
34811                 id: "col-"+cm.getColumnId(i),
34812                 text: cm.getColumnHeader(i),
34813                 checked: !cm.isHidden(i),
34814                 hideOnClick:false
34815             }));
34816         }
34817     },
34818
34819     handleHdCtx : function(g, index, e){
34820         e.stopEvent();
34821         var hd = this.getHeaderCell(index);
34822         this.hdCtxIndex = index;
34823         var ms = this.hmenu.items, cm = this.cm;
34824         ms.get("asc").setDisabled(!cm.isSortable(index));
34825         ms.get("desc").setDisabled(!cm.isSortable(index));
34826         if(this.grid.enableColLock !== false){
34827             ms.get("lock").setDisabled(cm.isLocked(index));
34828             ms.get("unlock").setDisabled(!cm.isLocked(index));
34829         }
34830         this.hmenu.show(hd, "tl-bl");
34831     },
34832
34833     handleHdOver : function(e){
34834         var hd = this.findHeaderCell(e.getTarget());
34835         if(hd && !this.headersDisabled){
34836             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
34837                this.fly(hd).addClass("x-grid-hd-over");
34838             }
34839         }
34840     },
34841
34842     handleHdOut : function(e){
34843         var hd = this.findHeaderCell(e.getTarget());
34844         if(hd){
34845             this.fly(hd).removeClass("x-grid-hd-over");
34846         }
34847     },
34848
34849     handleSplitDblClick : function(e, t){
34850         var i = this.getCellIndex(t);
34851         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
34852             this.autoSizeColumn(i, true);
34853             this.layout();
34854         }
34855     },
34856
34857     render : function(){
34858
34859         var cm = this.cm;
34860         var colCount = cm.getColumnCount();
34861
34862         if(this.grid.monitorWindowResize === true){
34863             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
34864         }
34865         var header = this.renderHeaders();
34866         var body = this.templates.body.apply({rows:""});
34867         var html = this.templates.master.apply({
34868             lockedBody: body,
34869             body: body,
34870             lockedHeader: header[0],
34871             header: header[1]
34872         });
34873
34874         //this.updateColumns();
34875
34876         this.grid.getGridEl().dom.innerHTML = html;
34877
34878         this.initElements();
34879         
34880         // a kludge to fix the random scolling effect in webkit
34881         this.el.on("scroll", function() {
34882             this.el.dom.scrollTop=0; // hopefully not recursive..
34883         },this);
34884
34885         this.scroller.on("scroll", this.handleScroll, this);
34886         this.lockedBody.on("mousewheel", this.handleWheel, this);
34887         this.mainBody.on("mousewheel", this.handleWheel, this);
34888
34889         this.mainHd.on("mouseover", this.handleHdOver, this);
34890         this.mainHd.on("mouseout", this.handleHdOut, this);
34891         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
34892                 {delegate: "."+this.splitClass});
34893
34894         this.lockedHd.on("mouseover", this.handleHdOver, this);
34895         this.lockedHd.on("mouseout", this.handleHdOut, this);
34896         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
34897                 {delegate: "."+this.splitClass});
34898
34899         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
34900             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34901         }
34902
34903         this.updateSplitters();
34904
34905         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
34906             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34907             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
34908         }
34909
34910         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
34911             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
34912             this.hmenu.add(
34913                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
34914                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
34915             );
34916             if(this.grid.enableColLock !== false){
34917                 this.hmenu.add('-',
34918                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
34919                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
34920                 );
34921             }
34922             if (Roo.isTouch) {
34923                  this.hmenu.add('-',
34924                     {id:"wider", text: this.columnsWiderText},
34925                     {id:"narrow", text: this.columnsNarrowText }
34926                 );
34927                 
34928                  
34929             }
34930             
34931             if(this.grid.enableColumnHide !== false){
34932
34933                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
34934                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
34935                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
34936
34937                 this.hmenu.add('-',
34938                     {id:"columns", text: this.columnsText, menu: this.colMenu}
34939                 );
34940             }
34941             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
34942
34943             this.grid.on("headercontextmenu", this.handleHdCtx, this);
34944         }
34945
34946         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
34947             this.dd = new Roo.grid.GridDragZone(this.grid, {
34948                 ddGroup : this.grid.ddGroup || 'GridDD'
34949             });
34950             
34951         }
34952
34953         /*
34954         for(var i = 0; i < colCount; i++){
34955             if(cm.isHidden(i)){
34956                 this.hideColumn(i);
34957             }
34958             if(cm.config[i].align){
34959                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
34960                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
34961             }
34962         }*/
34963         
34964         this.updateHeaderSortState();
34965
34966         this.beforeInitialResize();
34967         this.layout(true);
34968
34969         // two part rendering gives faster view to the user
34970         this.renderPhase2.defer(1, this);
34971     },
34972
34973     renderPhase2 : function(){
34974         // render the rows now
34975         this.refresh();
34976         if(this.grid.autoSizeColumns){
34977             this.autoSizeColumns();
34978         }
34979     },
34980
34981     beforeInitialResize : function(){
34982
34983     },
34984
34985     onColumnSplitterMoved : function(i, w){
34986         this.userResized = true;
34987         var cm = this.grid.colModel;
34988         cm.setColumnWidth(i, w, true);
34989         var cid = cm.getColumnId(i);
34990         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
34991         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
34992         this.updateSplitters();
34993         this.layout();
34994         this.grid.fireEvent("columnresize", i, w);
34995     },
34996
34997     syncRowHeights : function(startIndex, endIndex){
34998         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
34999             startIndex = startIndex || 0;
35000             var mrows = this.getBodyTable().rows;
35001             var lrows = this.getLockedTable().rows;
35002             var len = mrows.length-1;
35003             endIndex = Math.min(endIndex || len, len);
35004             for(var i = startIndex; i <= endIndex; i++){
35005                 var m = mrows[i], l = lrows[i];
35006                 var h = Math.max(m.offsetHeight, l.offsetHeight);
35007                 m.style.height = l.style.height = h + "px";
35008             }
35009         }
35010     },
35011
35012     layout : function(initialRender, is2ndPass){
35013         var g = this.grid;
35014         var auto = g.autoHeight;
35015         var scrollOffset = 16;
35016         var c = g.getGridEl(), cm = this.cm,
35017                 expandCol = g.autoExpandColumn,
35018                 gv = this;
35019         //c.beginMeasure();
35020
35021         if(!c.dom.offsetWidth){ // display:none?
35022             if(initialRender){
35023                 this.lockedWrap.show();
35024                 this.mainWrap.show();
35025             }
35026             return;
35027         }
35028
35029         var hasLock = this.cm.isLocked(0);
35030
35031         var tbh = this.headerPanel.getHeight();
35032         var bbh = this.footerPanel.getHeight();
35033
35034         if(auto){
35035             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
35036             var newHeight = ch + c.getBorderWidth("tb");
35037             if(g.maxHeight){
35038                 newHeight = Math.min(g.maxHeight, newHeight);
35039             }
35040             c.setHeight(newHeight);
35041         }
35042
35043         if(g.autoWidth){
35044             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
35045         }
35046
35047         var s = this.scroller;
35048
35049         var csize = c.getSize(true);
35050
35051         this.el.setSize(csize.width, csize.height);
35052
35053         this.headerPanel.setWidth(csize.width);
35054         this.footerPanel.setWidth(csize.width);
35055
35056         var hdHeight = this.mainHd.getHeight();
35057         var vw = csize.width;
35058         var vh = csize.height - (tbh + bbh);
35059
35060         s.setSize(vw, vh);
35061
35062         var bt = this.getBodyTable();
35063         
35064         if(cm.getLockedCount() == cm.config.length){
35065             bt = this.getLockedTable();
35066         }
35067         
35068         var ltWidth = hasLock ?
35069                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
35070
35071         var scrollHeight = bt.offsetHeight;
35072         var scrollWidth = ltWidth + bt.offsetWidth;
35073         var vscroll = false, hscroll = false;
35074
35075         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
35076
35077         var lw = this.lockedWrap, mw = this.mainWrap;
35078         var lb = this.lockedBody, mb = this.mainBody;
35079
35080         setTimeout(function(){
35081             var t = s.dom.offsetTop;
35082             var w = s.dom.clientWidth,
35083                 h = s.dom.clientHeight;
35084
35085             lw.setTop(t);
35086             lw.setSize(ltWidth, h);
35087
35088             mw.setLeftTop(ltWidth, t);
35089             mw.setSize(w-ltWidth, h);
35090
35091             lb.setHeight(h-hdHeight);
35092             mb.setHeight(h-hdHeight);
35093
35094             if(is2ndPass !== true && !gv.userResized && expandCol){
35095                 // high speed resize without full column calculation
35096                 
35097                 var ci = cm.getIndexById(expandCol);
35098                 if (ci < 0) {
35099                     ci = cm.findColumnIndex(expandCol);
35100                 }
35101                 ci = Math.max(0, ci); // make sure it's got at least the first col.
35102                 var expandId = cm.getColumnId(ci);
35103                 var  tw = cm.getTotalWidth(false);
35104                 var currentWidth = cm.getColumnWidth(ci);
35105                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
35106                 if(currentWidth != cw){
35107                     cm.setColumnWidth(ci, cw, true);
35108                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
35109                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
35110                     gv.updateSplitters();
35111                     gv.layout(false, true);
35112                 }
35113             }
35114
35115             if(initialRender){
35116                 lw.show();
35117                 mw.show();
35118             }
35119             //c.endMeasure();
35120         }, 10);
35121     },
35122
35123     onWindowResize : function(){
35124         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
35125             return;
35126         }
35127         this.layout();
35128     },
35129
35130     appendFooter : function(parentEl){
35131         return null;
35132     },
35133
35134     sortAscText : "Sort Ascending",
35135     sortDescText : "Sort Descending",
35136     lockText : "Lock Column",
35137     unlockText : "Unlock Column",
35138     columnsText : "Columns",
35139  
35140     columnsWiderText : "Wider",
35141     columnsNarrowText : "Thinner"
35142 });
35143
35144
35145 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
35146     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
35147     this.proxy.el.addClass('x-grid3-col-dd');
35148 };
35149
35150 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
35151     handleMouseDown : function(e){
35152
35153     },
35154
35155     callHandleMouseDown : function(e){
35156         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
35157     }
35158 });
35159 /*
35160  * Based on:
35161  * Ext JS Library 1.1.1
35162  * Copyright(c) 2006-2007, Ext JS, LLC.
35163  *
35164  * Originally Released Under LGPL - original licence link has changed is not relivant.
35165  *
35166  * Fork - LGPL
35167  * <script type="text/javascript">
35168  */
35169  
35170 // private
35171 // This is a support class used internally by the Grid components
35172 Roo.grid.SplitDragZone = function(grid, hd, hd2){
35173     this.grid = grid;
35174     this.view = grid.getView();
35175     this.proxy = this.view.resizeProxy;
35176     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
35177         "gridSplitters" + this.grid.getGridEl().id, {
35178         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
35179     });
35180     this.setHandleElId(Roo.id(hd));
35181     this.setOuterHandleElId(Roo.id(hd2));
35182     this.scroll = false;
35183 };
35184 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
35185     fly: Roo.Element.fly,
35186
35187     b4StartDrag : function(x, y){
35188         this.view.headersDisabled = true;
35189         this.proxy.setHeight(this.view.mainWrap.getHeight());
35190         var w = this.cm.getColumnWidth(this.cellIndex);
35191         var minw = Math.max(w-this.grid.minColumnWidth, 0);
35192         this.resetConstraints();
35193         this.setXConstraint(minw, 1000);
35194         this.setYConstraint(0, 0);
35195         this.minX = x - minw;
35196         this.maxX = x + 1000;
35197         this.startPos = x;
35198         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
35199     },
35200
35201
35202     handleMouseDown : function(e){
35203         ev = Roo.EventObject.setEvent(e);
35204         var t = this.fly(ev.getTarget());
35205         if(t.hasClass("x-grid-split")){
35206             this.cellIndex = this.view.getCellIndex(t.dom);
35207             this.split = t.dom;
35208             this.cm = this.grid.colModel;
35209             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
35210                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
35211             }
35212         }
35213     },
35214
35215     endDrag : function(e){
35216         this.view.headersDisabled = false;
35217         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
35218         var diff = endX - this.startPos;
35219         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
35220     },
35221
35222     autoOffset : function(){
35223         this.setDelta(0,0);
35224     }
35225 });/*
35226  * Based on:
35227  * Ext JS Library 1.1.1
35228  * Copyright(c) 2006-2007, Ext JS, LLC.
35229  *
35230  * Originally Released Under LGPL - original licence link has changed is not relivant.
35231  *
35232  * Fork - LGPL
35233  * <script type="text/javascript">
35234  */
35235  
35236 // private
35237 // This is a support class used internally by the Grid components
35238 Roo.grid.GridDragZone = function(grid, config){
35239     this.view = grid.getView();
35240     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
35241     if(this.view.lockedBody){
35242         this.setHandleElId(Roo.id(this.view.mainBody.dom));
35243         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
35244     }
35245     this.scroll = false;
35246     this.grid = grid;
35247     this.ddel = document.createElement('div');
35248     this.ddel.className = 'x-grid-dd-wrap';
35249 };
35250
35251 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
35252     ddGroup : "GridDD",
35253
35254     getDragData : function(e){
35255         var t = Roo.lib.Event.getTarget(e);
35256         var rowIndex = this.view.findRowIndex(t);
35257         var sm = this.grid.selModel;
35258             
35259         //Roo.log(rowIndex);
35260         
35261         if (sm.getSelectedCell) {
35262             // cell selection..
35263             if (!sm.getSelectedCell()) {
35264                 return false;
35265             }
35266             if (rowIndex != sm.getSelectedCell()[0]) {
35267                 return false;
35268             }
35269         
35270         }
35271         
35272         if(rowIndex !== false){
35273             
35274             // if editorgrid.. 
35275             
35276             
35277             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
35278                
35279             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
35280               //  
35281             //}
35282             if (e.hasModifier()){
35283                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
35284             }
35285             
35286             Roo.log("getDragData");
35287             
35288             return {
35289                 grid: this.grid,
35290                 ddel: this.ddel,
35291                 rowIndex: rowIndex,
35292                 selections:sm.getSelections ? sm.getSelections() : (
35293                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
35294                 )
35295             };
35296         }
35297         return false;
35298     },
35299
35300     onInitDrag : function(e){
35301         var data = this.dragData;
35302         this.ddel.innerHTML = this.grid.getDragDropText();
35303         this.proxy.update(this.ddel);
35304         // fire start drag?
35305     },
35306
35307     afterRepair : function(){
35308         this.dragging = false;
35309     },
35310
35311     getRepairXY : function(e, data){
35312         return false;
35313     },
35314
35315     onEndDrag : function(data, e){
35316         // fire end drag?
35317     },
35318
35319     onValidDrop : function(dd, e, id){
35320         // fire drag drop?
35321         this.hideProxy();
35322     },
35323
35324     beforeInvalidDrop : function(e, id){
35325
35326     }
35327 });/*
35328  * Based on:
35329  * Ext JS Library 1.1.1
35330  * Copyright(c) 2006-2007, Ext JS, LLC.
35331  *
35332  * Originally Released Under LGPL - original licence link has changed is not relivant.
35333  *
35334  * Fork - LGPL
35335  * <script type="text/javascript">
35336  */
35337  
35338
35339 /**
35340  * @class Roo.grid.ColumnModel
35341  * @extends Roo.util.Observable
35342  * This is the default implementation of a ColumnModel used by the Grid. It defines
35343  * the columns in the grid.
35344  * <br>Usage:<br>
35345  <pre><code>
35346  var colModel = new Roo.grid.ColumnModel([
35347         {header: "Ticker", width: 60, sortable: true, locked: true},
35348         {header: "Company Name", width: 150, sortable: true},
35349         {header: "Market Cap.", width: 100, sortable: true},
35350         {header: "$ Sales", width: 100, sortable: true, renderer: money},
35351         {header: "Employees", width: 100, sortable: true, resizable: false}
35352  ]);
35353  </code></pre>
35354  * <p>
35355  
35356  * The config options listed for this class are options which may appear in each
35357  * individual column definition.
35358  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
35359  * @constructor
35360  * @param {Object} config An Array of column config objects. See this class's
35361  * config objects for details.
35362 */
35363 Roo.grid.ColumnModel = function(config){
35364         /**
35365      * The config passed into the constructor
35366      */
35367     this.config = config;
35368     this.lookup = {};
35369
35370     // if no id, create one
35371     // if the column does not have a dataIndex mapping,
35372     // map it to the order it is in the config
35373     for(var i = 0, len = config.length; i < len; i++){
35374         var c = config[i];
35375         if(typeof c.dataIndex == "undefined"){
35376             c.dataIndex = i;
35377         }
35378         if(typeof c.renderer == "string"){
35379             c.renderer = Roo.util.Format[c.renderer];
35380         }
35381         if(typeof c.id == "undefined"){
35382             c.id = Roo.id();
35383         }
35384         if(c.editor && c.editor.xtype){
35385             c.editor  = Roo.factory(c.editor, Roo.grid);
35386         }
35387         if(c.editor && c.editor.isFormField){
35388             c.editor = new Roo.grid.GridEditor(c.editor);
35389         }
35390         this.lookup[c.id] = c;
35391     }
35392
35393     /**
35394      * The width of columns which have no width specified (defaults to 100)
35395      * @type Number
35396      */
35397     this.defaultWidth = 100;
35398
35399     /**
35400      * Default sortable of columns which have no sortable specified (defaults to false)
35401      * @type Boolean
35402      */
35403     this.defaultSortable = false;
35404
35405     this.addEvents({
35406         /**
35407              * @event widthchange
35408              * Fires when the width of a column changes.
35409              * @param {ColumnModel} this
35410              * @param {Number} columnIndex The column index
35411              * @param {Number} newWidth The new width
35412              */
35413             "widthchange": true,
35414         /**
35415              * @event headerchange
35416              * Fires when the text of a header changes.
35417              * @param {ColumnModel} this
35418              * @param {Number} columnIndex The column index
35419              * @param {Number} newText The new header text
35420              */
35421             "headerchange": true,
35422         /**
35423              * @event hiddenchange
35424              * Fires when a column is hidden or "unhidden".
35425              * @param {ColumnModel} this
35426              * @param {Number} columnIndex The column index
35427              * @param {Boolean} hidden true if hidden, false otherwise
35428              */
35429             "hiddenchange": true,
35430             /**
35431          * @event columnmoved
35432          * Fires when a column is moved.
35433          * @param {ColumnModel} this
35434          * @param {Number} oldIndex
35435          * @param {Number} newIndex
35436          */
35437         "columnmoved" : true,
35438         /**
35439          * @event columlockchange
35440          * Fires when a column's locked state is changed
35441          * @param {ColumnModel} this
35442          * @param {Number} colIndex
35443          * @param {Boolean} locked true if locked
35444          */
35445         "columnlockchange" : true
35446     });
35447     Roo.grid.ColumnModel.superclass.constructor.call(this);
35448 };
35449 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
35450     /**
35451      * @cfg {String} header The header text to display in the Grid view.
35452      */
35453     /**
35454      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
35455      * {@link Roo.data.Record} definition from which to draw the column's value. If not
35456      * specified, the column's index is used as an index into the Record's data Array.
35457      */
35458     /**
35459      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
35460      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
35461      */
35462     /**
35463      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
35464      * Defaults to the value of the {@link #defaultSortable} property.
35465      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
35466      */
35467     /**
35468      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
35469      */
35470     /**
35471      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
35472      */
35473     /**
35474      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
35475      */
35476     /**
35477      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
35478      */
35479     /**
35480      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
35481      * given the cell's data value. See {@link #setRenderer}. If not specified, the
35482      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
35483      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
35484      */
35485        /**
35486      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
35487      */
35488     /**
35489      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
35490      */
35491     /**
35492      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
35493      */
35494     /**
35495      * @cfg {String} cursor (Optional)
35496      */
35497     /**
35498      * @cfg {String} tooltip (Optional)
35499      */
35500     /**
35501      * @cfg {Number} xs (Optional)
35502      */
35503     /**
35504      * @cfg {Number} sm (Optional)
35505      */
35506     /**
35507      * @cfg {Number} md (Optional)
35508      */
35509     /**
35510      * @cfg {Number} lg (Optional)
35511      */
35512     /**
35513      * Returns the id of the column at the specified index.
35514      * @param {Number} index The column index
35515      * @return {String} the id
35516      */
35517     getColumnId : function(index){
35518         return this.config[index].id;
35519     },
35520
35521     /**
35522      * Returns the column for a specified id.
35523      * @param {String} id The column id
35524      * @return {Object} the column
35525      */
35526     getColumnById : function(id){
35527         return this.lookup[id];
35528     },
35529
35530     
35531     /**
35532      * Returns the column for a specified dataIndex.
35533      * @param {String} dataIndex The column dataIndex
35534      * @return {Object|Boolean} the column or false if not found
35535      */
35536     getColumnByDataIndex: function(dataIndex){
35537         var index = this.findColumnIndex(dataIndex);
35538         return index > -1 ? this.config[index] : false;
35539     },
35540     
35541     /**
35542      * Returns the index for a specified column id.
35543      * @param {String} id The column id
35544      * @return {Number} the index, or -1 if not found
35545      */
35546     getIndexById : function(id){
35547         for(var i = 0, len = this.config.length; i < len; i++){
35548             if(this.config[i].id == id){
35549                 return i;
35550             }
35551         }
35552         return -1;
35553     },
35554     
35555     /**
35556      * Returns the index for a specified column dataIndex.
35557      * @param {String} dataIndex The column dataIndex
35558      * @return {Number} the index, or -1 if not found
35559      */
35560     
35561     findColumnIndex : function(dataIndex){
35562         for(var i = 0, len = this.config.length; i < len; i++){
35563             if(this.config[i].dataIndex == dataIndex){
35564                 return i;
35565             }
35566         }
35567         return -1;
35568     },
35569     
35570     
35571     moveColumn : function(oldIndex, newIndex){
35572         var c = this.config[oldIndex];
35573         this.config.splice(oldIndex, 1);
35574         this.config.splice(newIndex, 0, c);
35575         this.dataMap = null;
35576         this.fireEvent("columnmoved", this, oldIndex, newIndex);
35577     },
35578
35579     isLocked : function(colIndex){
35580         return this.config[colIndex].locked === true;
35581     },
35582
35583     setLocked : function(colIndex, value, suppressEvent){
35584         if(this.isLocked(colIndex) == value){
35585             return;
35586         }
35587         this.config[colIndex].locked = value;
35588         if(!suppressEvent){
35589             this.fireEvent("columnlockchange", this, colIndex, value);
35590         }
35591     },
35592
35593     getTotalLockedWidth : function(){
35594         var totalWidth = 0;
35595         for(var i = 0; i < this.config.length; i++){
35596             if(this.isLocked(i) && !this.isHidden(i)){
35597                 this.totalWidth += this.getColumnWidth(i);
35598             }
35599         }
35600         return totalWidth;
35601     },
35602
35603     getLockedCount : function(){
35604         for(var i = 0, len = this.config.length; i < len; i++){
35605             if(!this.isLocked(i)){
35606                 return i;
35607             }
35608         }
35609         
35610         return this.config.length;
35611     },
35612
35613     /**
35614      * Returns the number of columns.
35615      * @return {Number}
35616      */
35617     getColumnCount : function(visibleOnly){
35618         if(visibleOnly === true){
35619             var c = 0;
35620             for(var i = 0, len = this.config.length; i < len; i++){
35621                 if(!this.isHidden(i)){
35622                     c++;
35623                 }
35624             }
35625             return c;
35626         }
35627         return this.config.length;
35628     },
35629
35630     /**
35631      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
35632      * @param {Function} fn
35633      * @param {Object} scope (optional)
35634      * @return {Array} result
35635      */
35636     getColumnsBy : function(fn, scope){
35637         var r = [];
35638         for(var i = 0, len = this.config.length; i < len; i++){
35639             var c = this.config[i];
35640             if(fn.call(scope||this, c, i) === true){
35641                 r[r.length] = c;
35642             }
35643         }
35644         return r;
35645     },
35646
35647     /**
35648      * Returns true if the specified column is sortable.
35649      * @param {Number} col The column index
35650      * @return {Boolean}
35651      */
35652     isSortable : function(col){
35653         if(typeof this.config[col].sortable == "undefined"){
35654             return this.defaultSortable;
35655         }
35656         return this.config[col].sortable;
35657     },
35658
35659     /**
35660      * Returns the rendering (formatting) function defined for the column.
35661      * @param {Number} col The column index.
35662      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
35663      */
35664     getRenderer : function(col){
35665         if(!this.config[col].renderer){
35666             return Roo.grid.ColumnModel.defaultRenderer;
35667         }
35668         return this.config[col].renderer;
35669     },
35670
35671     /**
35672      * Sets the rendering (formatting) function for a column.
35673      * @param {Number} col The column index
35674      * @param {Function} fn The function to use to process the cell's raw data
35675      * to return HTML markup for the grid view. The render function is called with
35676      * the following parameters:<ul>
35677      * <li>Data value.</li>
35678      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
35679      * <li>css A CSS style string to apply to the table cell.</li>
35680      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
35681      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
35682      * <li>Row index</li>
35683      * <li>Column index</li>
35684      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
35685      */
35686     setRenderer : function(col, fn){
35687         this.config[col].renderer = fn;
35688     },
35689
35690     /**
35691      * Returns the width for the specified column.
35692      * @param {Number} col The column index
35693      * @return {Number}
35694      */
35695     getColumnWidth : function(col){
35696         return this.config[col].width * 1 || this.defaultWidth;
35697     },
35698
35699     /**
35700      * Sets the width for a column.
35701      * @param {Number} col The column index
35702      * @param {Number} width The new width
35703      */
35704     setColumnWidth : function(col, width, suppressEvent){
35705         this.config[col].width = width;
35706         this.totalWidth = null;
35707         if(!suppressEvent){
35708              this.fireEvent("widthchange", this, col, width);
35709         }
35710     },
35711
35712     /**
35713      * Returns the total width of all columns.
35714      * @param {Boolean} includeHidden True to include hidden column widths
35715      * @return {Number}
35716      */
35717     getTotalWidth : function(includeHidden){
35718         if(!this.totalWidth){
35719             this.totalWidth = 0;
35720             for(var i = 0, len = this.config.length; i < len; i++){
35721                 if(includeHidden || !this.isHidden(i)){
35722                     this.totalWidth += this.getColumnWidth(i);
35723                 }
35724             }
35725         }
35726         return this.totalWidth;
35727     },
35728
35729     /**
35730      * Returns the header for the specified column.
35731      * @param {Number} col The column index
35732      * @return {String}
35733      */
35734     getColumnHeader : function(col){
35735         return this.config[col].header;
35736     },
35737
35738     /**
35739      * Sets the header for a column.
35740      * @param {Number} col The column index
35741      * @param {String} header The new header
35742      */
35743     setColumnHeader : function(col, header){
35744         this.config[col].header = header;
35745         this.fireEvent("headerchange", this, col, header);
35746     },
35747
35748     /**
35749      * Returns the tooltip for the specified column.
35750      * @param {Number} col The column index
35751      * @return {String}
35752      */
35753     getColumnTooltip : function(col){
35754             return this.config[col].tooltip;
35755     },
35756     /**
35757      * Sets the tooltip for a column.
35758      * @param {Number} col The column index
35759      * @param {String} tooltip The new tooltip
35760      */
35761     setColumnTooltip : function(col, tooltip){
35762             this.config[col].tooltip = tooltip;
35763     },
35764
35765     /**
35766      * Returns the dataIndex for the specified column.
35767      * @param {Number} col The column index
35768      * @return {Number}
35769      */
35770     getDataIndex : function(col){
35771         return this.config[col].dataIndex;
35772     },
35773
35774     /**
35775      * Sets the dataIndex for a column.
35776      * @param {Number} col The column index
35777      * @param {Number} dataIndex The new dataIndex
35778      */
35779     setDataIndex : function(col, dataIndex){
35780         this.config[col].dataIndex = dataIndex;
35781     },
35782
35783     
35784     
35785     /**
35786      * Returns true if the cell is editable.
35787      * @param {Number} colIndex The column index
35788      * @param {Number} rowIndex The row index - this is nto actually used..?
35789      * @return {Boolean}
35790      */
35791     isCellEditable : function(colIndex, rowIndex){
35792         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
35793     },
35794
35795     /**
35796      * Returns the editor defined for the cell/column.
35797      * return false or null to disable editing.
35798      * @param {Number} colIndex The column index
35799      * @param {Number} rowIndex The row index
35800      * @return {Object}
35801      */
35802     getCellEditor : function(colIndex, rowIndex){
35803         return this.config[colIndex].editor;
35804     },
35805
35806     /**
35807      * Sets if a column is editable.
35808      * @param {Number} col The column index
35809      * @param {Boolean} editable True if the column is editable
35810      */
35811     setEditable : function(col, editable){
35812         this.config[col].editable = editable;
35813     },
35814
35815
35816     /**
35817      * Returns true if the column is hidden.
35818      * @param {Number} colIndex The column index
35819      * @return {Boolean}
35820      */
35821     isHidden : function(colIndex){
35822         return this.config[colIndex].hidden;
35823     },
35824
35825
35826     /**
35827      * Returns true if the column width cannot be changed
35828      */
35829     isFixed : function(colIndex){
35830         return this.config[colIndex].fixed;
35831     },
35832
35833     /**
35834      * Returns true if the column can be resized
35835      * @return {Boolean}
35836      */
35837     isResizable : function(colIndex){
35838         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
35839     },
35840     /**
35841      * Sets if a column is hidden.
35842      * @param {Number} colIndex The column index
35843      * @param {Boolean} hidden True if the column is hidden
35844      */
35845     setHidden : function(colIndex, hidden){
35846         this.config[colIndex].hidden = hidden;
35847         this.totalWidth = null;
35848         this.fireEvent("hiddenchange", this, colIndex, hidden);
35849     },
35850
35851     /**
35852      * Sets the editor for a column.
35853      * @param {Number} col The column index
35854      * @param {Object} editor The editor object
35855      */
35856     setEditor : function(col, editor){
35857         this.config[col].editor = editor;
35858     }
35859 });
35860
35861 Roo.grid.ColumnModel.defaultRenderer = function(value)
35862 {
35863     if(typeof value == "object") {
35864         return value;
35865     }
35866         if(typeof value == "string" && value.length < 1){
35867             return "&#160;";
35868         }
35869     
35870         return String.format("{0}", value);
35871 };
35872
35873 // Alias for backwards compatibility
35874 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
35875 /*
35876  * Based on:
35877  * Ext JS Library 1.1.1
35878  * Copyright(c) 2006-2007, Ext JS, LLC.
35879  *
35880  * Originally Released Under LGPL - original licence link has changed is not relivant.
35881  *
35882  * Fork - LGPL
35883  * <script type="text/javascript">
35884  */
35885
35886 /**
35887  * @class Roo.grid.AbstractSelectionModel
35888  * @extends Roo.util.Observable
35889  * Abstract base class for grid SelectionModels.  It provides the interface that should be
35890  * implemented by descendant classes.  This class should not be directly instantiated.
35891  * @constructor
35892  */
35893 Roo.grid.AbstractSelectionModel = function(){
35894     this.locked = false;
35895     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
35896 };
35897
35898 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
35899     /** @ignore Called by the grid automatically. Do not call directly. */
35900     init : function(grid){
35901         this.grid = grid;
35902         this.initEvents();
35903     },
35904
35905     /**
35906      * Locks the selections.
35907      */
35908     lock : function(){
35909         this.locked = true;
35910     },
35911
35912     /**
35913      * Unlocks the selections.
35914      */
35915     unlock : function(){
35916         this.locked = false;
35917     },
35918
35919     /**
35920      * Returns true if the selections are locked.
35921      * @return {Boolean}
35922      */
35923     isLocked : function(){
35924         return this.locked;
35925     }
35926 });/*
35927  * Based on:
35928  * Ext JS Library 1.1.1
35929  * Copyright(c) 2006-2007, Ext JS, LLC.
35930  *
35931  * Originally Released Under LGPL - original licence link has changed is not relivant.
35932  *
35933  * Fork - LGPL
35934  * <script type="text/javascript">
35935  */
35936 /**
35937  * @extends Roo.grid.AbstractSelectionModel
35938  * @class Roo.grid.RowSelectionModel
35939  * The default SelectionModel used by {@link Roo.grid.Grid}.
35940  * It supports multiple selections and keyboard selection/navigation. 
35941  * @constructor
35942  * @param {Object} config
35943  */
35944 Roo.grid.RowSelectionModel = function(config){
35945     Roo.apply(this, config);
35946     this.selections = new Roo.util.MixedCollection(false, function(o){
35947         return o.id;
35948     });
35949
35950     this.last = false;
35951     this.lastActive = false;
35952
35953     this.addEvents({
35954         /**
35955              * @event selectionchange
35956              * Fires when the selection changes
35957              * @param {SelectionModel} this
35958              */
35959             "selectionchange" : true,
35960         /**
35961              * @event afterselectionchange
35962              * Fires after the selection changes (eg. by key press or clicking)
35963              * @param {SelectionModel} this
35964              */
35965             "afterselectionchange" : true,
35966         /**
35967              * @event beforerowselect
35968              * Fires when a row is selected being selected, return false to cancel.
35969              * @param {SelectionModel} this
35970              * @param {Number} rowIndex The selected index
35971              * @param {Boolean} keepExisting False if other selections will be cleared
35972              */
35973             "beforerowselect" : true,
35974         /**
35975              * @event rowselect
35976              * Fires when a row is selected.
35977              * @param {SelectionModel} this
35978              * @param {Number} rowIndex The selected index
35979              * @param {Roo.data.Record} r The record
35980              */
35981             "rowselect" : true,
35982         /**
35983              * @event rowdeselect
35984              * Fires when a row is deselected.
35985              * @param {SelectionModel} this
35986              * @param {Number} rowIndex The selected index
35987              */
35988         "rowdeselect" : true
35989     });
35990     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
35991     this.locked = false;
35992 };
35993
35994 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
35995     /**
35996      * @cfg {Boolean} singleSelect
35997      * True to allow selection of only one row at a time (defaults to false)
35998      */
35999     singleSelect : false,
36000
36001     // private
36002     initEvents : function(){
36003
36004         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
36005             this.grid.on("mousedown", this.handleMouseDown, this);
36006         }else{ // allow click to work like normal
36007             this.grid.on("rowclick", this.handleDragableRowClick, this);
36008         }
36009
36010         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
36011             "up" : function(e){
36012                 if(!e.shiftKey){
36013                     this.selectPrevious(e.shiftKey);
36014                 }else if(this.last !== false && this.lastActive !== false){
36015                     var last = this.last;
36016                     this.selectRange(this.last,  this.lastActive-1);
36017                     this.grid.getView().focusRow(this.lastActive);
36018                     if(last !== false){
36019                         this.last = last;
36020                     }
36021                 }else{
36022                     this.selectFirstRow();
36023                 }
36024                 this.fireEvent("afterselectionchange", this);
36025             },
36026             "down" : function(e){
36027                 if(!e.shiftKey){
36028                     this.selectNext(e.shiftKey);
36029                 }else if(this.last !== false && this.lastActive !== false){
36030                     var last = this.last;
36031                     this.selectRange(this.last,  this.lastActive+1);
36032                     this.grid.getView().focusRow(this.lastActive);
36033                     if(last !== false){
36034                         this.last = last;
36035                     }
36036                 }else{
36037                     this.selectFirstRow();
36038                 }
36039                 this.fireEvent("afterselectionchange", this);
36040             },
36041             scope: this
36042         });
36043
36044         var view = this.grid.view;
36045         view.on("refresh", this.onRefresh, this);
36046         view.on("rowupdated", this.onRowUpdated, this);
36047         view.on("rowremoved", this.onRemove, this);
36048     },
36049
36050     // private
36051     onRefresh : function(){
36052         var ds = this.grid.dataSource, i, v = this.grid.view;
36053         var s = this.selections;
36054         s.each(function(r){
36055             if((i = ds.indexOfId(r.id)) != -1){
36056                 v.onRowSelect(i);
36057                 s.add(ds.getAt(i)); // updating the selection relate data
36058             }else{
36059                 s.remove(r);
36060             }
36061         });
36062     },
36063
36064     // private
36065     onRemove : function(v, index, r){
36066         this.selections.remove(r);
36067     },
36068
36069     // private
36070     onRowUpdated : function(v, index, r){
36071         if(this.isSelected(r)){
36072             v.onRowSelect(index);
36073         }
36074     },
36075
36076     /**
36077      * Select records.
36078      * @param {Array} records The records to select
36079      * @param {Boolean} keepExisting (optional) True to keep existing selections
36080      */
36081     selectRecords : function(records, keepExisting){
36082         if(!keepExisting){
36083             this.clearSelections();
36084         }
36085         var ds = this.grid.dataSource;
36086         for(var i = 0, len = records.length; i < len; i++){
36087             this.selectRow(ds.indexOf(records[i]), true);
36088         }
36089     },
36090
36091     /**
36092      * Gets the number of selected rows.
36093      * @return {Number}
36094      */
36095     getCount : function(){
36096         return this.selections.length;
36097     },
36098
36099     /**
36100      * Selects the first row in the grid.
36101      */
36102     selectFirstRow : function(){
36103         this.selectRow(0);
36104     },
36105
36106     /**
36107      * Select the last row.
36108      * @param {Boolean} keepExisting (optional) True to keep existing selections
36109      */
36110     selectLastRow : function(keepExisting){
36111         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
36112     },
36113
36114     /**
36115      * Selects the row immediately following the last selected row.
36116      * @param {Boolean} keepExisting (optional) True to keep existing selections
36117      */
36118     selectNext : function(keepExisting){
36119         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
36120             this.selectRow(this.last+1, keepExisting);
36121             this.grid.getView().focusRow(this.last);
36122         }
36123     },
36124
36125     /**
36126      * Selects the row that precedes the last selected row.
36127      * @param {Boolean} keepExisting (optional) True to keep existing selections
36128      */
36129     selectPrevious : function(keepExisting){
36130         if(this.last){
36131             this.selectRow(this.last-1, keepExisting);
36132             this.grid.getView().focusRow(this.last);
36133         }
36134     },
36135
36136     /**
36137      * Returns the selected records
36138      * @return {Array} Array of selected records
36139      */
36140     getSelections : function(){
36141         return [].concat(this.selections.items);
36142     },
36143
36144     /**
36145      * Returns the first selected record.
36146      * @return {Record}
36147      */
36148     getSelected : function(){
36149         return this.selections.itemAt(0);
36150     },
36151
36152
36153     /**
36154      * Clears all selections.
36155      */
36156     clearSelections : function(fast){
36157         if(this.locked) {
36158             return;
36159         }
36160         if(fast !== true){
36161             var ds = this.grid.dataSource;
36162             var s = this.selections;
36163             s.each(function(r){
36164                 this.deselectRow(ds.indexOfId(r.id));
36165             }, this);
36166             s.clear();
36167         }else{
36168             this.selections.clear();
36169         }
36170         this.last = false;
36171     },
36172
36173
36174     /**
36175      * Selects all rows.
36176      */
36177     selectAll : function(){
36178         if(this.locked) {
36179             return;
36180         }
36181         this.selections.clear();
36182         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
36183             this.selectRow(i, true);
36184         }
36185     },
36186
36187     /**
36188      * Returns True if there is a selection.
36189      * @return {Boolean}
36190      */
36191     hasSelection : function(){
36192         return this.selections.length > 0;
36193     },
36194
36195     /**
36196      * Returns True if the specified row is selected.
36197      * @param {Number/Record} record The record or index of the record to check
36198      * @return {Boolean}
36199      */
36200     isSelected : function(index){
36201         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
36202         return (r && this.selections.key(r.id) ? true : false);
36203     },
36204
36205     /**
36206      * Returns True if the specified record id is selected.
36207      * @param {String} id The id of record to check
36208      * @return {Boolean}
36209      */
36210     isIdSelected : function(id){
36211         return (this.selections.key(id) ? true : false);
36212     },
36213
36214     // private
36215     handleMouseDown : function(e, t){
36216         var view = this.grid.getView(), rowIndex;
36217         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
36218             return;
36219         };
36220         if(e.shiftKey && this.last !== false){
36221             var last = this.last;
36222             this.selectRange(last, rowIndex, e.ctrlKey);
36223             this.last = last; // reset the last
36224             view.focusRow(rowIndex);
36225         }else{
36226             var isSelected = this.isSelected(rowIndex);
36227             if(e.button !== 0 && isSelected){
36228                 view.focusRow(rowIndex);
36229             }else if(e.ctrlKey && isSelected){
36230                 this.deselectRow(rowIndex);
36231             }else if(!isSelected){
36232                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
36233                 view.focusRow(rowIndex);
36234             }
36235         }
36236         this.fireEvent("afterselectionchange", this);
36237     },
36238     // private
36239     handleDragableRowClick :  function(grid, rowIndex, e) 
36240     {
36241         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
36242             this.selectRow(rowIndex, false);
36243             grid.view.focusRow(rowIndex);
36244              this.fireEvent("afterselectionchange", this);
36245         }
36246     },
36247     
36248     /**
36249      * Selects multiple rows.
36250      * @param {Array} rows Array of the indexes of the row to select
36251      * @param {Boolean} keepExisting (optional) True to keep existing selections
36252      */
36253     selectRows : function(rows, keepExisting){
36254         if(!keepExisting){
36255             this.clearSelections();
36256         }
36257         for(var i = 0, len = rows.length; i < len; i++){
36258             this.selectRow(rows[i], true);
36259         }
36260     },
36261
36262     /**
36263      * Selects a range of rows. All rows in between startRow and endRow are also selected.
36264      * @param {Number} startRow The index of the first row in the range
36265      * @param {Number} endRow The index of the last row in the range
36266      * @param {Boolean} keepExisting (optional) True to retain existing selections
36267      */
36268     selectRange : function(startRow, endRow, keepExisting){
36269         if(this.locked) {
36270             return;
36271         }
36272         if(!keepExisting){
36273             this.clearSelections();
36274         }
36275         if(startRow <= endRow){
36276             for(var i = startRow; i <= endRow; i++){
36277                 this.selectRow(i, true);
36278             }
36279         }else{
36280             for(var i = startRow; i >= endRow; i--){
36281                 this.selectRow(i, true);
36282             }
36283         }
36284     },
36285
36286     /**
36287      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
36288      * @param {Number} startRow The index of the first row in the range
36289      * @param {Number} endRow The index of the last row in the range
36290      */
36291     deselectRange : function(startRow, endRow, preventViewNotify){
36292         if(this.locked) {
36293             return;
36294         }
36295         for(var i = startRow; i <= endRow; i++){
36296             this.deselectRow(i, preventViewNotify);
36297         }
36298     },
36299
36300     /**
36301      * Selects a row.
36302      * @param {Number} row The index of the row to select
36303      * @param {Boolean} keepExisting (optional) True to keep existing selections
36304      */
36305     selectRow : function(index, keepExisting, preventViewNotify){
36306         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
36307             return;
36308         }
36309         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
36310             if(!keepExisting || this.singleSelect){
36311                 this.clearSelections();
36312             }
36313             var r = this.grid.dataSource.getAt(index);
36314             this.selections.add(r);
36315             this.last = this.lastActive = index;
36316             if(!preventViewNotify){
36317                 this.grid.getView().onRowSelect(index);
36318             }
36319             this.fireEvent("rowselect", this, index, r);
36320             this.fireEvent("selectionchange", this);
36321         }
36322     },
36323
36324     /**
36325      * Deselects a row.
36326      * @param {Number} row The index of the row to deselect
36327      */
36328     deselectRow : function(index, preventViewNotify){
36329         if(this.locked) {
36330             return;
36331         }
36332         if(this.last == index){
36333             this.last = false;
36334         }
36335         if(this.lastActive == index){
36336             this.lastActive = false;
36337         }
36338         var r = this.grid.dataSource.getAt(index);
36339         this.selections.remove(r);
36340         if(!preventViewNotify){
36341             this.grid.getView().onRowDeselect(index);
36342         }
36343         this.fireEvent("rowdeselect", this, index);
36344         this.fireEvent("selectionchange", this);
36345     },
36346
36347     // private
36348     restoreLast : function(){
36349         if(this._last){
36350             this.last = this._last;
36351         }
36352     },
36353
36354     // private
36355     acceptsNav : function(row, col, cm){
36356         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36357     },
36358
36359     // private
36360     onEditorKey : function(field, e){
36361         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
36362         if(k == e.TAB){
36363             e.stopEvent();
36364             ed.completeEdit();
36365             if(e.shiftKey){
36366                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36367             }else{
36368                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36369             }
36370         }else if(k == e.ENTER && !e.ctrlKey){
36371             e.stopEvent();
36372             ed.completeEdit();
36373             if(e.shiftKey){
36374                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
36375             }else{
36376                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
36377             }
36378         }else if(k == e.ESC){
36379             ed.cancelEdit();
36380         }
36381         if(newCell){
36382             g.startEditing(newCell[0], newCell[1]);
36383         }
36384     }
36385 });/*
36386  * Based on:
36387  * Ext JS Library 1.1.1
36388  * Copyright(c) 2006-2007, Ext JS, LLC.
36389  *
36390  * Originally Released Under LGPL - original licence link has changed is not relivant.
36391  *
36392  * Fork - LGPL
36393  * <script type="text/javascript">
36394  */
36395 /**
36396  * @class Roo.grid.CellSelectionModel
36397  * @extends Roo.grid.AbstractSelectionModel
36398  * This class provides the basic implementation for cell selection in a grid.
36399  * @constructor
36400  * @param {Object} config The object containing the configuration of this model.
36401  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
36402  */
36403 Roo.grid.CellSelectionModel = function(config){
36404     Roo.apply(this, config);
36405
36406     this.selection = null;
36407
36408     this.addEvents({
36409         /**
36410              * @event beforerowselect
36411              * Fires before a cell is selected.
36412              * @param {SelectionModel} this
36413              * @param {Number} rowIndex The selected row index
36414              * @param {Number} colIndex The selected cell index
36415              */
36416             "beforecellselect" : true,
36417         /**
36418              * @event cellselect
36419              * Fires when a cell is selected.
36420              * @param {SelectionModel} this
36421              * @param {Number} rowIndex The selected row index
36422              * @param {Number} colIndex The selected cell index
36423              */
36424             "cellselect" : true,
36425         /**
36426              * @event selectionchange
36427              * Fires when the active selection changes.
36428              * @param {SelectionModel} this
36429              * @param {Object} selection null for no selection or an object (o) with two properties
36430                 <ul>
36431                 <li>o.record: the record object for the row the selection is in</li>
36432                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
36433                 </ul>
36434              */
36435             "selectionchange" : true,
36436         /**
36437              * @event tabend
36438              * Fires when the tab (or enter) was pressed on the last editable cell
36439              * You can use this to trigger add new row.
36440              * @param {SelectionModel} this
36441              */
36442             "tabend" : true,
36443          /**
36444              * @event beforeeditnext
36445              * Fires before the next editable sell is made active
36446              * You can use this to skip to another cell or fire the tabend
36447              *    if you set cell to false
36448              * @param {Object} eventdata object : { cell : [ row, col ] } 
36449              */
36450             "beforeeditnext" : true
36451     });
36452     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
36453 };
36454
36455 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
36456     
36457     enter_is_tab: false,
36458
36459     /** @ignore */
36460     initEvents : function(){
36461         this.grid.on("mousedown", this.handleMouseDown, this);
36462         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
36463         var view = this.grid.view;
36464         view.on("refresh", this.onViewChange, this);
36465         view.on("rowupdated", this.onRowUpdated, this);
36466         view.on("beforerowremoved", this.clearSelections, this);
36467         view.on("beforerowsinserted", this.clearSelections, this);
36468         if(this.grid.isEditor){
36469             this.grid.on("beforeedit", this.beforeEdit,  this);
36470         }
36471     },
36472
36473         //private
36474     beforeEdit : function(e){
36475         this.select(e.row, e.column, false, true, e.record);
36476     },
36477
36478         //private
36479     onRowUpdated : function(v, index, r){
36480         if(this.selection && this.selection.record == r){
36481             v.onCellSelect(index, this.selection.cell[1]);
36482         }
36483     },
36484
36485         //private
36486     onViewChange : function(){
36487         this.clearSelections(true);
36488     },
36489
36490         /**
36491          * Returns the currently selected cell,.
36492          * @return {Array} The selected cell (row, column) or null if none selected.
36493          */
36494     getSelectedCell : function(){
36495         return this.selection ? this.selection.cell : null;
36496     },
36497
36498     /**
36499      * Clears all selections.
36500      * @param {Boolean} true to prevent the gridview from being notified about the change.
36501      */
36502     clearSelections : function(preventNotify){
36503         var s = this.selection;
36504         if(s){
36505             if(preventNotify !== true){
36506                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
36507             }
36508             this.selection = null;
36509             this.fireEvent("selectionchange", this, null);
36510         }
36511     },
36512
36513     /**
36514      * Returns true if there is a selection.
36515      * @return {Boolean}
36516      */
36517     hasSelection : function(){
36518         return this.selection ? true : false;
36519     },
36520
36521     /** @ignore */
36522     handleMouseDown : function(e, t){
36523         var v = this.grid.getView();
36524         if(this.isLocked()){
36525             return;
36526         };
36527         var row = v.findRowIndex(t);
36528         var cell = v.findCellIndex(t);
36529         if(row !== false && cell !== false){
36530             this.select(row, cell);
36531         }
36532     },
36533
36534     /**
36535      * Selects a cell.
36536      * @param {Number} rowIndex
36537      * @param {Number} collIndex
36538      */
36539     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
36540         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
36541             this.clearSelections();
36542             r = r || this.grid.dataSource.getAt(rowIndex);
36543             this.selection = {
36544                 record : r,
36545                 cell : [rowIndex, colIndex]
36546             };
36547             if(!preventViewNotify){
36548                 var v = this.grid.getView();
36549                 v.onCellSelect(rowIndex, colIndex);
36550                 if(preventFocus !== true){
36551                     v.focusCell(rowIndex, colIndex);
36552                 }
36553             }
36554             this.fireEvent("cellselect", this, rowIndex, colIndex);
36555             this.fireEvent("selectionchange", this, this.selection);
36556         }
36557     },
36558
36559         //private
36560     isSelectable : function(rowIndex, colIndex, cm){
36561         return !cm.isHidden(colIndex);
36562     },
36563
36564     /** @ignore */
36565     handleKeyDown : function(e){
36566         //Roo.log('Cell Sel Model handleKeyDown');
36567         if(!e.isNavKeyPress()){
36568             return;
36569         }
36570         var g = this.grid, s = this.selection;
36571         if(!s){
36572             e.stopEvent();
36573             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
36574             if(cell){
36575                 this.select(cell[0], cell[1]);
36576             }
36577             return;
36578         }
36579         var sm = this;
36580         var walk = function(row, col, step){
36581             return g.walkCells(row, col, step, sm.isSelectable,  sm);
36582         };
36583         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
36584         var newCell;
36585
36586       
36587
36588         switch(k){
36589             case e.TAB:
36590                 // handled by onEditorKey
36591                 if (g.isEditor && g.editing) {
36592                     return;
36593                 }
36594                 if(e.shiftKey) {
36595                     newCell = walk(r, c-1, -1);
36596                 } else {
36597                     newCell = walk(r, c+1, 1);
36598                 }
36599                 break;
36600             
36601             case e.DOWN:
36602                newCell = walk(r+1, c, 1);
36603                 break;
36604             
36605             case e.UP:
36606                 newCell = walk(r-1, c, -1);
36607                 break;
36608             
36609             case e.RIGHT:
36610                 newCell = walk(r, c+1, 1);
36611                 break;
36612             
36613             case e.LEFT:
36614                 newCell = walk(r, c-1, -1);
36615                 break;
36616             
36617             case e.ENTER:
36618                 
36619                 if(g.isEditor && !g.editing){
36620                    g.startEditing(r, c);
36621                    e.stopEvent();
36622                    return;
36623                 }
36624                 
36625                 
36626              break;
36627         };
36628         if(newCell){
36629             this.select(newCell[0], newCell[1]);
36630             e.stopEvent();
36631             
36632         }
36633     },
36634
36635     acceptsNav : function(row, col, cm){
36636         return !cm.isHidden(col) && cm.isCellEditable(col, row);
36637     },
36638     /**
36639      * Selects a cell.
36640      * @param {Number} field (not used) - as it's normally used as a listener
36641      * @param {Number} e - event - fake it by using
36642      *
36643      * var e = Roo.EventObjectImpl.prototype;
36644      * e.keyCode = e.TAB
36645      *
36646      * 
36647      */
36648     onEditorKey : function(field, e){
36649         
36650         var k = e.getKey(),
36651             newCell,
36652             g = this.grid,
36653             ed = g.activeEditor,
36654             forward = false;
36655         ///Roo.log('onEditorKey' + k);
36656         
36657         
36658         if (this.enter_is_tab && k == e.ENTER) {
36659             k = e.TAB;
36660         }
36661         
36662         if(k == e.TAB){
36663             if(e.shiftKey){
36664                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
36665             }else{
36666                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36667                 forward = true;
36668             }
36669             
36670             e.stopEvent();
36671             
36672         } else if(k == e.ENTER &&  !e.ctrlKey){
36673             ed.completeEdit();
36674             e.stopEvent();
36675             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
36676         
36677                 } else if(k == e.ESC){
36678             ed.cancelEdit();
36679         }
36680                 
36681         if (newCell) {
36682             var ecall = { cell : newCell, forward : forward };
36683             this.fireEvent('beforeeditnext', ecall );
36684             newCell = ecall.cell;
36685                         forward = ecall.forward;
36686         }
36687                 
36688         if(newCell){
36689             //Roo.log('next cell after edit');
36690             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
36691         } else if (forward) {
36692             // tabbed past last
36693             this.fireEvent.defer(100, this, ['tabend',this]);
36694         }
36695     }
36696 });/*
36697  * Based on:
36698  * Ext JS Library 1.1.1
36699  * Copyright(c) 2006-2007, Ext JS, LLC.
36700  *
36701  * Originally Released Under LGPL - original licence link has changed is not relivant.
36702  *
36703  * Fork - LGPL
36704  * <script type="text/javascript">
36705  */
36706  
36707 /**
36708  * @class Roo.grid.EditorGrid
36709  * @extends Roo.grid.Grid
36710  * Class for creating and editable grid.
36711  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
36712  * The container MUST have some type of size defined for the grid to fill. The container will be 
36713  * automatically set to position relative if it isn't already.
36714  * @param {Object} dataSource The data model to bind to
36715  * @param {Object} colModel The column model with info about this grid's columns
36716  */
36717 Roo.grid.EditorGrid = function(container, config){
36718     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
36719     this.getGridEl().addClass("xedit-grid");
36720
36721     if(!this.selModel){
36722         this.selModel = new Roo.grid.CellSelectionModel();
36723     }
36724
36725     this.activeEditor = null;
36726
36727         this.addEvents({
36728             /**
36729              * @event beforeedit
36730              * Fires before cell editing is triggered. The edit event object has the following properties <br />
36731              * <ul style="padding:5px;padding-left:16px;">
36732              * <li>grid - This grid</li>
36733              * <li>record - The record being edited</li>
36734              * <li>field - The field name being edited</li>
36735              * <li>value - The value for the field being edited.</li>
36736              * <li>row - The grid row index</li>
36737              * <li>column - The grid column index</li>
36738              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36739              * </ul>
36740              * @param {Object} e An edit event (see above for description)
36741              */
36742             "beforeedit" : true,
36743             /**
36744              * @event afteredit
36745              * Fires after a cell is edited. <br />
36746              * <ul style="padding:5px;padding-left:16px;">
36747              * <li>grid - This grid</li>
36748              * <li>record - The record being edited</li>
36749              * <li>field - The field name being edited</li>
36750              * <li>value - The value being set</li>
36751              * <li>originalValue - The original value for the field, before the edit.</li>
36752              * <li>row - The grid row index</li>
36753              * <li>column - The grid column index</li>
36754              * </ul>
36755              * @param {Object} e An edit event (see above for description)
36756              */
36757             "afteredit" : true,
36758             /**
36759              * @event validateedit
36760              * Fires after a cell is edited, but before the value is set in the record. 
36761          * You can use this to modify the value being set in the field, Return false
36762              * to cancel the change. The edit event object has the following properties <br />
36763              * <ul style="padding:5px;padding-left:16px;">
36764          * <li>editor - This editor</li>
36765              * <li>grid - This grid</li>
36766              * <li>record - The record being edited</li>
36767              * <li>field - The field name being edited</li>
36768              * <li>value - The value being set</li>
36769              * <li>originalValue - The original value for the field, before the edit.</li>
36770              * <li>row - The grid row index</li>
36771              * <li>column - The grid column index</li>
36772              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
36773              * </ul>
36774              * @param {Object} e An edit event (see above for description)
36775              */
36776             "validateedit" : true
36777         });
36778     this.on("bodyscroll", this.stopEditing,  this);
36779     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
36780 };
36781
36782 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
36783     /**
36784      * @cfg {Number} clicksToEdit
36785      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
36786      */
36787     clicksToEdit: 2,
36788
36789     // private
36790     isEditor : true,
36791     // private
36792     trackMouseOver: false, // causes very odd FF errors
36793
36794     onCellDblClick : function(g, row, col){
36795         this.startEditing(row, col);
36796     },
36797
36798     onEditComplete : function(ed, value, startValue){
36799         this.editing = false;
36800         this.activeEditor = null;
36801         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
36802         var r = ed.record;
36803         var field = this.colModel.getDataIndex(ed.col);
36804         var e = {
36805             grid: this,
36806             record: r,
36807             field: field,
36808             originalValue: startValue,
36809             value: value,
36810             row: ed.row,
36811             column: ed.col,
36812             cancel:false,
36813             editor: ed
36814         };
36815         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
36816         cell.show();
36817           
36818         if(String(value) !== String(startValue)){
36819             
36820             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
36821                 r.set(field, e.value);
36822                 // if we are dealing with a combo box..
36823                 // then we also set the 'name' colum to be the displayField
36824                 if (ed.field.displayField && ed.field.name) {
36825                     r.set(ed.field.name, ed.field.el.dom.value);
36826                 }
36827                 
36828                 delete e.cancel; //?? why!!!
36829                 this.fireEvent("afteredit", e);
36830             }
36831         } else {
36832             this.fireEvent("afteredit", e); // always fire it!
36833         }
36834         this.view.focusCell(ed.row, ed.col);
36835     },
36836
36837     /**
36838      * Starts editing the specified for the specified row/column
36839      * @param {Number} rowIndex
36840      * @param {Number} colIndex
36841      */
36842     startEditing : function(row, col){
36843         this.stopEditing();
36844         if(this.colModel.isCellEditable(col, row)){
36845             this.view.ensureVisible(row, col, true);
36846           
36847             var r = this.dataSource.getAt(row);
36848             var field = this.colModel.getDataIndex(col);
36849             var cell = Roo.get(this.view.getCell(row,col));
36850             var e = {
36851                 grid: this,
36852                 record: r,
36853                 field: field,
36854                 value: r.data[field],
36855                 row: row,
36856                 column: col,
36857                 cancel:false 
36858             };
36859             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
36860                 this.editing = true;
36861                 var ed = this.colModel.getCellEditor(col, row);
36862                 
36863                 if (!ed) {
36864                     return;
36865                 }
36866                 if(!ed.rendered){
36867                     ed.render(ed.parentEl || document.body);
36868                 }
36869                 ed.field.reset();
36870                
36871                 cell.hide();
36872                 
36873                 (function(){ // complex but required for focus issues in safari, ie and opera
36874                     ed.row = row;
36875                     ed.col = col;
36876                     ed.record = r;
36877                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
36878                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
36879                     this.activeEditor = ed;
36880                     var v = r.data[field];
36881                     ed.startEdit(this.view.getCell(row, col), v);
36882                     // combo's with 'displayField and name set
36883                     if (ed.field.displayField && ed.field.name) {
36884                         ed.field.el.dom.value = r.data[ed.field.name];
36885                     }
36886                     
36887                     
36888                 }).defer(50, this);
36889             }
36890         }
36891     },
36892         
36893     /**
36894      * Stops any active editing
36895      */
36896     stopEditing : function(){
36897         if(this.activeEditor){
36898             this.activeEditor.completeEdit();
36899         }
36900         this.activeEditor = null;
36901     },
36902         
36903          /**
36904      * Called to get grid's drag proxy text, by default returns this.ddText.
36905      * @return {String}
36906      */
36907     getDragDropText : function(){
36908         var count = this.selModel.getSelectedCell() ? 1 : 0;
36909         return String.format(this.ddText, count, count == 1 ? '' : 's');
36910     }
36911         
36912 });/*
36913  * Based on:
36914  * Ext JS Library 1.1.1
36915  * Copyright(c) 2006-2007, Ext JS, LLC.
36916  *
36917  * Originally Released Under LGPL - original licence link has changed is not relivant.
36918  *
36919  * Fork - LGPL
36920  * <script type="text/javascript">
36921  */
36922
36923 // private - not really -- you end up using it !
36924 // This is a support class used internally by the Grid components
36925
36926 /**
36927  * @class Roo.grid.GridEditor
36928  * @extends Roo.Editor
36929  * Class for creating and editable grid elements.
36930  * @param {Object} config any settings (must include field)
36931  */
36932 Roo.grid.GridEditor = function(field, config){
36933     if (!config && field.field) {
36934         config = field;
36935         field = Roo.factory(config.field, Roo.form);
36936     }
36937     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
36938     field.monitorTab = false;
36939 };
36940
36941 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
36942     
36943     /**
36944      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
36945      */
36946     
36947     alignment: "tl-tl",
36948     autoSize: "width",
36949     hideEl : false,
36950     cls: "x-small-editor x-grid-editor",
36951     shim:false,
36952     shadow:"frame"
36953 });/*
36954  * Based on:
36955  * Ext JS Library 1.1.1
36956  * Copyright(c) 2006-2007, Ext JS, LLC.
36957  *
36958  * Originally Released Under LGPL - original licence link has changed is not relivant.
36959  *
36960  * Fork - LGPL
36961  * <script type="text/javascript">
36962  */
36963   
36964
36965   
36966 Roo.grid.PropertyRecord = Roo.data.Record.create([
36967     {name:'name',type:'string'},  'value'
36968 ]);
36969
36970
36971 Roo.grid.PropertyStore = function(grid, source){
36972     this.grid = grid;
36973     this.store = new Roo.data.Store({
36974         recordType : Roo.grid.PropertyRecord
36975     });
36976     this.store.on('update', this.onUpdate,  this);
36977     if(source){
36978         this.setSource(source);
36979     }
36980     Roo.grid.PropertyStore.superclass.constructor.call(this);
36981 };
36982
36983
36984
36985 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
36986     setSource : function(o){
36987         this.source = o;
36988         this.store.removeAll();
36989         var data = [];
36990         for(var k in o){
36991             if(this.isEditableValue(o[k])){
36992                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
36993             }
36994         }
36995         this.store.loadRecords({records: data}, {}, true);
36996     },
36997
36998     onUpdate : function(ds, record, type){
36999         if(type == Roo.data.Record.EDIT){
37000             var v = record.data['value'];
37001             var oldValue = record.modified['value'];
37002             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
37003                 this.source[record.id] = v;
37004                 record.commit();
37005                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
37006             }else{
37007                 record.reject();
37008             }
37009         }
37010     },
37011
37012     getProperty : function(row){
37013        return this.store.getAt(row);
37014     },
37015
37016     isEditableValue: function(val){
37017         if(val && val instanceof Date){
37018             return true;
37019         }else if(typeof val == 'object' || typeof val == 'function'){
37020             return false;
37021         }
37022         return true;
37023     },
37024
37025     setValue : function(prop, value){
37026         this.source[prop] = value;
37027         this.store.getById(prop).set('value', value);
37028     },
37029
37030     getSource : function(){
37031         return this.source;
37032     }
37033 });
37034
37035 Roo.grid.PropertyColumnModel = function(grid, store){
37036     this.grid = grid;
37037     var g = Roo.grid;
37038     g.PropertyColumnModel.superclass.constructor.call(this, [
37039         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
37040         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
37041     ]);
37042     this.store = store;
37043     this.bselect = Roo.DomHelper.append(document.body, {
37044         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
37045             {tag: 'option', value: 'true', html: 'true'},
37046             {tag: 'option', value: 'false', html: 'false'}
37047         ]
37048     });
37049     Roo.id(this.bselect);
37050     var f = Roo.form;
37051     this.editors = {
37052         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
37053         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
37054         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
37055         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
37056         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
37057     };
37058     this.renderCellDelegate = this.renderCell.createDelegate(this);
37059     this.renderPropDelegate = this.renderProp.createDelegate(this);
37060 };
37061
37062 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
37063     
37064     
37065     nameText : 'Name',
37066     valueText : 'Value',
37067     
37068     dateFormat : 'm/j/Y',
37069     
37070     
37071     renderDate : function(dateVal){
37072         return dateVal.dateFormat(this.dateFormat);
37073     },
37074
37075     renderBool : function(bVal){
37076         return bVal ? 'true' : 'false';
37077     },
37078
37079     isCellEditable : function(colIndex, rowIndex){
37080         return colIndex == 1;
37081     },
37082
37083     getRenderer : function(col){
37084         return col == 1 ?
37085             this.renderCellDelegate : this.renderPropDelegate;
37086     },
37087
37088     renderProp : function(v){
37089         return this.getPropertyName(v);
37090     },
37091
37092     renderCell : function(val){
37093         var rv = val;
37094         if(val instanceof Date){
37095             rv = this.renderDate(val);
37096         }else if(typeof val == 'boolean'){
37097             rv = this.renderBool(val);
37098         }
37099         return Roo.util.Format.htmlEncode(rv);
37100     },
37101
37102     getPropertyName : function(name){
37103         var pn = this.grid.propertyNames;
37104         return pn && pn[name] ? pn[name] : name;
37105     },
37106
37107     getCellEditor : function(colIndex, rowIndex){
37108         var p = this.store.getProperty(rowIndex);
37109         var n = p.data['name'], val = p.data['value'];
37110         
37111         if(typeof(this.grid.customEditors[n]) == 'string'){
37112             return this.editors[this.grid.customEditors[n]];
37113         }
37114         if(typeof(this.grid.customEditors[n]) != 'undefined'){
37115             return this.grid.customEditors[n];
37116         }
37117         if(val instanceof Date){
37118             return this.editors['date'];
37119         }else if(typeof val == 'number'){
37120             return this.editors['number'];
37121         }else if(typeof val == 'boolean'){
37122             return this.editors['boolean'];
37123         }else{
37124             return this.editors['string'];
37125         }
37126     }
37127 });
37128
37129 /**
37130  * @class Roo.grid.PropertyGrid
37131  * @extends Roo.grid.EditorGrid
37132  * This class represents the  interface of a component based property grid control.
37133  * <br><br>Usage:<pre><code>
37134  var grid = new Roo.grid.PropertyGrid("my-container-id", {
37135       
37136  });
37137  // set any options
37138  grid.render();
37139  * </code></pre>
37140   
37141  * @constructor
37142  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37143  * The container MUST have some type of size defined for the grid to fill. The container will be
37144  * automatically set to position relative if it isn't already.
37145  * @param {Object} config A config object that sets properties on this grid.
37146  */
37147 Roo.grid.PropertyGrid = function(container, config){
37148     config = config || {};
37149     var store = new Roo.grid.PropertyStore(this);
37150     this.store = store;
37151     var cm = new Roo.grid.PropertyColumnModel(this, store);
37152     store.store.sort('name', 'ASC');
37153     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
37154         ds: store.store,
37155         cm: cm,
37156         enableColLock:false,
37157         enableColumnMove:false,
37158         stripeRows:false,
37159         trackMouseOver: false,
37160         clicksToEdit:1
37161     }, config));
37162     this.getGridEl().addClass('x-props-grid');
37163     this.lastEditRow = null;
37164     this.on('columnresize', this.onColumnResize, this);
37165     this.addEvents({
37166          /**
37167              * @event beforepropertychange
37168              * Fires before a property changes (return false to stop?)
37169              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
37170              * @param {String} id Record Id
37171              * @param {String} newval New Value
37172          * @param {String} oldval Old Value
37173              */
37174         "beforepropertychange": true,
37175         /**
37176              * @event propertychange
37177              * Fires after a property changes
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         "propertychange": true
37184     });
37185     this.customEditors = this.customEditors || {};
37186 };
37187 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
37188     
37189      /**
37190      * @cfg {Object} customEditors map of colnames=> custom editors.
37191      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
37192      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
37193      * false disables editing of the field.
37194          */
37195     
37196       /**
37197      * @cfg {Object} propertyNames map of property Names to their displayed value
37198          */
37199     
37200     render : function(){
37201         Roo.grid.PropertyGrid.superclass.render.call(this);
37202         this.autoSize.defer(100, this);
37203     },
37204
37205     autoSize : function(){
37206         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
37207         if(this.view){
37208             this.view.fitColumns();
37209         }
37210     },
37211
37212     onColumnResize : function(){
37213         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
37214         this.autoSize();
37215     },
37216     /**
37217      * Sets the data for the Grid
37218      * accepts a Key => Value object of all the elements avaiable.
37219      * @param {Object} data  to appear in grid.
37220      */
37221     setSource : function(source){
37222         this.store.setSource(source);
37223         //this.autoSize();
37224     },
37225     /**
37226      * Gets all the data from the grid.
37227      * @return {Object} data  data stored in grid
37228      */
37229     getSource : function(){
37230         return this.store.getSource();
37231     }
37232 });/*
37233   
37234  * Licence LGPL
37235  
37236  */
37237  
37238 /**
37239  * @class Roo.grid.Calendar
37240  * @extends Roo.util.Grid
37241  * This class extends the Grid to provide a calendar widget
37242  * <br><br>Usage:<pre><code>
37243  var grid = new Roo.grid.Calendar("my-container-id", {
37244      ds: myDataStore,
37245      cm: myColModel,
37246      selModel: mySelectionModel,
37247      autoSizeColumns: true,
37248      monitorWindowResize: false,
37249      trackMouseOver: true
37250      eventstore : real data store..
37251  });
37252  // set any options
37253  grid.render();
37254   
37255   * @constructor
37256  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37257  * The container MUST have some type of size defined for the grid to fill. The container will be
37258  * automatically set to position relative if it isn't already.
37259  * @param {Object} config A config object that sets properties on this grid.
37260  */
37261 Roo.grid.Calendar = function(container, config){
37262         // initialize the container
37263         this.container = Roo.get(container);
37264         this.container.update("");
37265         this.container.setStyle("overflow", "hidden");
37266     this.container.addClass('x-grid-container');
37267
37268     this.id = this.container.id;
37269
37270     Roo.apply(this, config);
37271     // check and correct shorthanded configs
37272     
37273     var rows = [];
37274     var d =1;
37275     for (var r = 0;r < 6;r++) {
37276         
37277         rows[r]=[];
37278         for (var c =0;c < 7;c++) {
37279             rows[r][c]= '';
37280         }
37281     }
37282     if (this.eventStore) {
37283         this.eventStore= Roo.factory(this.eventStore, Roo.data);
37284         this.eventStore.on('load',this.onLoad, this);
37285         this.eventStore.on('beforeload',this.clearEvents, this);
37286          
37287     }
37288     
37289     this.dataSource = new Roo.data.Store({
37290             proxy: new Roo.data.MemoryProxy(rows),
37291             reader: new Roo.data.ArrayReader({}, [
37292                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
37293     });
37294
37295     this.dataSource.load();
37296     this.ds = this.dataSource;
37297     this.ds.xmodule = this.xmodule || false;
37298     
37299     
37300     var cellRender = function(v,x,r)
37301     {
37302         return String.format(
37303             '<div class="fc-day  fc-widget-content"><div>' +
37304                 '<div class="fc-event-container"></div>' +
37305                 '<div class="fc-day-number">{0}</div>'+
37306                 
37307                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
37308             '</div></div>', v);
37309     
37310     }
37311     
37312     
37313     this.colModel = new Roo.grid.ColumnModel( [
37314         {
37315             xtype: 'ColumnModel',
37316             xns: Roo.grid,
37317             dataIndex : 'weekday0',
37318             header : 'Sunday',
37319             renderer : cellRender
37320         },
37321         {
37322             xtype: 'ColumnModel',
37323             xns: Roo.grid,
37324             dataIndex : 'weekday1',
37325             header : 'Monday',
37326             renderer : cellRender
37327         },
37328         {
37329             xtype: 'ColumnModel',
37330             xns: Roo.grid,
37331             dataIndex : 'weekday2',
37332             header : 'Tuesday',
37333             renderer : cellRender
37334         },
37335         {
37336             xtype: 'ColumnModel',
37337             xns: Roo.grid,
37338             dataIndex : 'weekday3',
37339             header : 'Wednesday',
37340             renderer : cellRender
37341         },
37342         {
37343             xtype: 'ColumnModel',
37344             xns: Roo.grid,
37345             dataIndex : 'weekday4',
37346             header : 'Thursday',
37347             renderer : cellRender
37348         },
37349         {
37350             xtype: 'ColumnModel',
37351             xns: Roo.grid,
37352             dataIndex : 'weekday5',
37353             header : 'Friday',
37354             renderer : cellRender
37355         },
37356         {
37357             xtype: 'ColumnModel',
37358             xns: Roo.grid,
37359             dataIndex : 'weekday6',
37360             header : 'Saturday',
37361             renderer : cellRender
37362         }
37363     ]);
37364     this.cm = this.colModel;
37365     this.cm.xmodule = this.xmodule || false;
37366  
37367         
37368           
37369     //this.selModel = new Roo.grid.CellSelectionModel();
37370     //this.sm = this.selModel;
37371     //this.selModel.init(this);
37372     
37373     
37374     if(this.width){
37375         this.container.setWidth(this.width);
37376     }
37377
37378     if(this.height){
37379         this.container.setHeight(this.height);
37380     }
37381     /** @private */
37382         this.addEvents({
37383         // raw events
37384         /**
37385          * @event click
37386          * The raw click event for the entire grid.
37387          * @param {Roo.EventObject} e
37388          */
37389         "click" : true,
37390         /**
37391          * @event dblclick
37392          * The raw dblclick event for the entire grid.
37393          * @param {Roo.EventObject} e
37394          */
37395         "dblclick" : true,
37396         /**
37397          * @event contextmenu
37398          * The raw contextmenu event for the entire grid.
37399          * @param {Roo.EventObject} e
37400          */
37401         "contextmenu" : true,
37402         /**
37403          * @event mousedown
37404          * The raw mousedown event for the entire grid.
37405          * @param {Roo.EventObject} e
37406          */
37407         "mousedown" : true,
37408         /**
37409          * @event mouseup
37410          * The raw mouseup event for the entire grid.
37411          * @param {Roo.EventObject} e
37412          */
37413         "mouseup" : true,
37414         /**
37415          * @event mouseover
37416          * The raw mouseover event for the entire grid.
37417          * @param {Roo.EventObject} e
37418          */
37419         "mouseover" : true,
37420         /**
37421          * @event mouseout
37422          * The raw mouseout event for the entire grid.
37423          * @param {Roo.EventObject} e
37424          */
37425         "mouseout" : true,
37426         /**
37427          * @event keypress
37428          * The raw keypress event for the entire grid.
37429          * @param {Roo.EventObject} e
37430          */
37431         "keypress" : true,
37432         /**
37433          * @event keydown
37434          * The raw keydown event for the entire grid.
37435          * @param {Roo.EventObject} e
37436          */
37437         "keydown" : true,
37438
37439         // custom events
37440
37441         /**
37442          * @event cellclick
37443          * Fires when a cell is clicked
37444          * @param {Grid} this
37445          * @param {Number} rowIndex
37446          * @param {Number} columnIndex
37447          * @param {Roo.EventObject} e
37448          */
37449         "cellclick" : true,
37450         /**
37451          * @event celldblclick
37452          * Fires when a cell is double clicked
37453          * @param {Grid} this
37454          * @param {Number} rowIndex
37455          * @param {Number} columnIndex
37456          * @param {Roo.EventObject} e
37457          */
37458         "celldblclick" : true,
37459         /**
37460          * @event rowclick
37461          * Fires when a row is clicked
37462          * @param {Grid} this
37463          * @param {Number} rowIndex
37464          * @param {Roo.EventObject} e
37465          */
37466         "rowclick" : true,
37467         /**
37468          * @event rowdblclick
37469          * Fires when a row is double clicked
37470          * @param {Grid} this
37471          * @param {Number} rowIndex
37472          * @param {Roo.EventObject} e
37473          */
37474         "rowdblclick" : true,
37475         /**
37476          * @event headerclick
37477          * Fires when a header is clicked
37478          * @param {Grid} this
37479          * @param {Number} columnIndex
37480          * @param {Roo.EventObject} e
37481          */
37482         "headerclick" : true,
37483         /**
37484          * @event headerdblclick
37485          * Fires when a header cell is double clicked
37486          * @param {Grid} this
37487          * @param {Number} columnIndex
37488          * @param {Roo.EventObject} e
37489          */
37490         "headerdblclick" : true,
37491         /**
37492          * @event rowcontextmenu
37493          * Fires when a row is right clicked
37494          * @param {Grid} this
37495          * @param {Number} rowIndex
37496          * @param {Roo.EventObject} e
37497          */
37498         "rowcontextmenu" : true,
37499         /**
37500          * @event cellcontextmenu
37501          * Fires when a cell is right clicked
37502          * @param {Grid} this
37503          * @param {Number} rowIndex
37504          * @param {Number} cellIndex
37505          * @param {Roo.EventObject} e
37506          */
37507          "cellcontextmenu" : true,
37508         /**
37509          * @event headercontextmenu
37510          * Fires when a header is right clicked
37511          * @param {Grid} this
37512          * @param {Number} columnIndex
37513          * @param {Roo.EventObject} e
37514          */
37515         "headercontextmenu" : true,
37516         /**
37517          * @event bodyscroll
37518          * Fires when the body element is scrolled
37519          * @param {Number} scrollLeft
37520          * @param {Number} scrollTop
37521          */
37522         "bodyscroll" : true,
37523         /**
37524          * @event columnresize
37525          * Fires when the user resizes a column
37526          * @param {Number} columnIndex
37527          * @param {Number} newSize
37528          */
37529         "columnresize" : true,
37530         /**
37531          * @event columnmove
37532          * Fires when the user moves a column
37533          * @param {Number} oldIndex
37534          * @param {Number} newIndex
37535          */
37536         "columnmove" : true,
37537         /**
37538          * @event startdrag
37539          * Fires when row(s) start being dragged
37540          * @param {Grid} this
37541          * @param {Roo.GridDD} dd The drag drop object
37542          * @param {event} e The raw browser event
37543          */
37544         "startdrag" : true,
37545         /**
37546          * @event enddrag
37547          * Fires when a drag operation is complete
37548          * @param {Grid} this
37549          * @param {Roo.GridDD} dd The drag drop object
37550          * @param {event} e The raw browser event
37551          */
37552         "enddrag" : true,
37553         /**
37554          * @event dragdrop
37555          * Fires when dragged row(s) are dropped on a valid DD target
37556          * @param {Grid} this
37557          * @param {Roo.GridDD} dd The drag drop object
37558          * @param {String} targetId The target drag drop object
37559          * @param {event} e The raw browser event
37560          */
37561         "dragdrop" : true,
37562         /**
37563          * @event dragover
37564          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
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         "dragover" : true,
37571         /**
37572          * @event dragenter
37573          *  Fires when the dragged row(s) first cross another DD target while being dragged
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         "dragenter" : true,
37580         /**
37581          * @event dragout
37582          * Fires when the dragged row(s) leave 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         "dragout" : true,
37589         /**
37590          * @event rowclass
37591          * Fires when a row is rendered, so you can change add a style to it.
37592          * @param {GridView} gridview   The grid view
37593          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
37594          */
37595         'rowclass' : true,
37596
37597         /**
37598          * @event render
37599          * Fires when the grid is rendered
37600          * @param {Grid} grid
37601          */
37602         'render' : true,
37603             /**
37604              * @event select
37605              * Fires when a date is selected
37606              * @param {DatePicker} this
37607              * @param {Date} date The selected date
37608              */
37609         'select': true,
37610         /**
37611              * @event monthchange
37612              * Fires when the displayed month changes 
37613              * @param {DatePicker} this
37614              * @param {Date} date The selected month
37615              */
37616         'monthchange': true,
37617         /**
37618              * @event evententer
37619              * Fires when mouse over an event
37620              * @param {Calendar} this
37621              * @param {event} Event
37622              */
37623         'evententer': true,
37624         /**
37625              * @event eventleave
37626              * Fires when the mouse leaves an
37627              * @param {Calendar} this
37628              * @param {event}
37629              */
37630         'eventleave': true,
37631         /**
37632              * @event eventclick
37633              * Fires when the mouse click an
37634              * @param {Calendar} this
37635              * @param {event}
37636              */
37637         'eventclick': true,
37638         /**
37639              * @event eventrender
37640              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
37641              * @param {Calendar} this
37642              * @param {data} data to be modified
37643              */
37644         'eventrender': true
37645         
37646     });
37647
37648     Roo.grid.Grid.superclass.constructor.call(this);
37649     this.on('render', function() {
37650         this.view.el.addClass('x-grid-cal'); 
37651         
37652         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
37653
37654     },this);
37655     
37656     if (!Roo.grid.Calendar.style) {
37657         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
37658             
37659             
37660             '.x-grid-cal .x-grid-col' :  {
37661                 height: 'auto !important',
37662                 'vertical-align': 'top'
37663             },
37664             '.x-grid-cal  .fc-event-hori' : {
37665                 height: '14px'
37666             }
37667              
37668             
37669         }, Roo.id());
37670     }
37671
37672     
37673     
37674 };
37675 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
37676     /**
37677      * @cfg {Store} eventStore The store that loads events.
37678      */
37679     eventStore : 25,
37680
37681      
37682     activeDate : false,
37683     startDay : 0,
37684     autoWidth : true,
37685     monitorWindowResize : false,
37686
37687     
37688     resizeColumns : function() {
37689         var col = (this.view.el.getWidth() / 7) - 3;
37690         // loop through cols, and setWidth
37691         for(var i =0 ; i < 7 ; i++){
37692             this.cm.setColumnWidth(i, col);
37693         }
37694     },
37695      setDate :function(date) {
37696         
37697         Roo.log('setDate?');
37698         
37699         this.resizeColumns();
37700         var vd = this.activeDate;
37701         this.activeDate = date;
37702 //        if(vd && this.el){
37703 //            var t = date.getTime();
37704 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
37705 //                Roo.log('using add remove');
37706 //                
37707 //                this.fireEvent('monthchange', this, date);
37708 //                
37709 //                this.cells.removeClass("fc-state-highlight");
37710 //                this.cells.each(function(c){
37711 //                   if(c.dateValue == t){
37712 //                       c.addClass("fc-state-highlight");
37713 //                       setTimeout(function(){
37714 //                            try{c.dom.firstChild.focus();}catch(e){}
37715 //                       }, 50);
37716 //                       return false;
37717 //                   }
37718 //                   return true;
37719 //                });
37720 //                return;
37721 //            }
37722 //        }
37723         
37724         var days = date.getDaysInMonth();
37725         
37726         var firstOfMonth = date.getFirstDateOfMonth();
37727         var startingPos = firstOfMonth.getDay()-this.startDay;
37728         
37729         if(startingPos < this.startDay){
37730             startingPos += 7;
37731         }
37732         
37733         var pm = date.add(Date.MONTH, -1);
37734         var prevStart = pm.getDaysInMonth()-startingPos;
37735 //        
37736         
37737         
37738         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37739         
37740         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
37741         //this.cells.addClassOnOver('fc-state-hover');
37742         
37743         var cells = this.cells.elements;
37744         var textEls = this.textNodes;
37745         
37746         //Roo.each(cells, function(cell){
37747         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
37748         //});
37749         
37750         days += startingPos;
37751
37752         // convert everything to numbers so it's fast
37753         var day = 86400000;
37754         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
37755         //Roo.log(d);
37756         //Roo.log(pm);
37757         //Roo.log(prevStart);
37758         
37759         var today = new Date().clearTime().getTime();
37760         var sel = date.clearTime().getTime();
37761         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
37762         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
37763         var ddMatch = this.disabledDatesRE;
37764         var ddText = this.disabledDatesText;
37765         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
37766         var ddaysText = this.disabledDaysText;
37767         var format = this.format;
37768         
37769         var setCellClass = function(cal, cell){
37770             
37771             //Roo.log('set Cell Class');
37772             cell.title = "";
37773             var t = d.getTime();
37774             
37775             //Roo.log(d);
37776             
37777             
37778             cell.dateValue = t;
37779             if(t == today){
37780                 cell.className += " fc-today";
37781                 cell.className += " fc-state-highlight";
37782                 cell.title = cal.todayText;
37783             }
37784             if(t == sel){
37785                 // disable highlight in other month..
37786                 cell.className += " fc-state-highlight";
37787                 
37788             }
37789             // disabling
37790             if(t < min) {
37791                 //cell.className = " fc-state-disabled";
37792                 cell.title = cal.minText;
37793                 return;
37794             }
37795             if(t > max) {
37796                 //cell.className = " fc-state-disabled";
37797                 cell.title = cal.maxText;
37798                 return;
37799             }
37800             if(ddays){
37801                 if(ddays.indexOf(d.getDay()) != -1){
37802                     // cell.title = ddaysText;
37803                    // cell.className = " fc-state-disabled";
37804                 }
37805             }
37806             if(ddMatch && format){
37807                 var fvalue = d.dateFormat(format);
37808                 if(ddMatch.test(fvalue)){
37809                     cell.title = ddText.replace("%0", fvalue);
37810                    cell.className = " fc-state-disabled";
37811                 }
37812             }
37813             
37814             if (!cell.initialClassName) {
37815                 cell.initialClassName = cell.dom.className;
37816             }
37817             
37818             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
37819         };
37820
37821         var i = 0;
37822         
37823         for(; i < startingPos; i++) {
37824             cells[i].dayName =  (++prevStart);
37825             Roo.log(textEls[i]);
37826             d.setDate(d.getDate()+1);
37827             
37828             //cells[i].className = "fc-past fc-other-month";
37829             setCellClass(this, cells[i]);
37830         }
37831         
37832         var intDay = 0;
37833         
37834         for(; i < days; i++){
37835             intDay = i - startingPos + 1;
37836             cells[i].dayName =  (intDay);
37837             d.setDate(d.getDate()+1);
37838             
37839             cells[i].className = ''; // "x-date-active";
37840             setCellClass(this, cells[i]);
37841         }
37842         var extraDays = 0;
37843         
37844         for(; i < 42; i++) {
37845             //textEls[i].innerHTML = (++extraDays);
37846             
37847             d.setDate(d.getDate()+1);
37848             cells[i].dayName = (++extraDays);
37849             cells[i].className = "fc-future fc-other-month";
37850             setCellClass(this, cells[i]);
37851         }
37852         
37853         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
37854         
37855         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
37856         
37857         // this will cause all the cells to mis
37858         var rows= [];
37859         var i =0;
37860         for (var r = 0;r < 6;r++) {
37861             for (var c =0;c < 7;c++) {
37862                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
37863             }    
37864         }
37865         
37866         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
37867         for(i=0;i<cells.length;i++) {
37868             
37869             this.cells.elements[i].dayName = cells[i].dayName ;
37870             this.cells.elements[i].className = cells[i].className;
37871             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
37872             this.cells.elements[i].title = cells[i].title ;
37873             this.cells.elements[i].dateValue = cells[i].dateValue ;
37874         }
37875         
37876         
37877         
37878         
37879         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
37880         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
37881         
37882         ////if(totalRows != 6){
37883             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
37884            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
37885        // }
37886         
37887         this.fireEvent('monthchange', this, date);
37888         
37889         
37890     },
37891  /**
37892      * Returns the grid's SelectionModel.
37893      * @return {SelectionModel}
37894      */
37895     getSelectionModel : function(){
37896         if(!this.selModel){
37897             this.selModel = new Roo.grid.CellSelectionModel();
37898         }
37899         return this.selModel;
37900     },
37901
37902     load: function() {
37903         this.eventStore.load()
37904         
37905         
37906         
37907     },
37908     
37909     findCell : function(dt) {
37910         dt = dt.clearTime().getTime();
37911         var ret = false;
37912         this.cells.each(function(c){
37913             //Roo.log("check " +c.dateValue + '?=' + dt);
37914             if(c.dateValue == dt){
37915                 ret = c;
37916                 return false;
37917             }
37918             return true;
37919         });
37920         
37921         return ret;
37922     },
37923     
37924     findCells : function(rec) {
37925         var s = rec.data.start_dt.clone().clearTime().getTime();
37926        // Roo.log(s);
37927         var e= rec.data.end_dt.clone().clearTime().getTime();
37928        // Roo.log(e);
37929         var ret = [];
37930         this.cells.each(function(c){
37931              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
37932             
37933             if(c.dateValue > e){
37934                 return ;
37935             }
37936             if(c.dateValue < s){
37937                 return ;
37938             }
37939             ret.push(c);
37940         });
37941         
37942         return ret;    
37943     },
37944     
37945     findBestRow: function(cells)
37946     {
37947         var ret = 0;
37948         
37949         for (var i =0 ; i < cells.length;i++) {
37950             ret  = Math.max(cells[i].rows || 0,ret);
37951         }
37952         return ret;
37953         
37954     },
37955     
37956     
37957     addItem : function(rec)
37958     {
37959         // look for vertical location slot in
37960         var cells = this.findCells(rec);
37961         
37962         rec.row = this.findBestRow(cells);
37963         
37964         // work out the location.
37965         
37966         var crow = false;
37967         var rows = [];
37968         for(var i =0; i < cells.length; i++) {
37969             if (!crow) {
37970                 crow = {
37971                     start : cells[i],
37972                     end :  cells[i]
37973                 };
37974                 continue;
37975             }
37976             if (crow.start.getY() == cells[i].getY()) {
37977                 // on same row.
37978                 crow.end = cells[i];
37979                 continue;
37980             }
37981             // different row.
37982             rows.push(crow);
37983             crow = {
37984                 start: cells[i],
37985                 end : cells[i]
37986             };
37987             
37988         }
37989         
37990         rows.push(crow);
37991         rec.els = [];
37992         rec.rows = rows;
37993         rec.cells = cells;
37994         for (var i = 0; i < cells.length;i++) {
37995             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
37996             
37997         }
37998         
37999         
38000     },
38001     
38002     clearEvents: function() {
38003         
38004         if (!this.eventStore.getCount()) {
38005             return;
38006         }
38007         // reset number of rows in cells.
38008         Roo.each(this.cells.elements, function(c){
38009             c.rows = 0;
38010         });
38011         
38012         this.eventStore.each(function(e) {
38013             this.clearEvent(e);
38014         },this);
38015         
38016     },
38017     
38018     clearEvent : function(ev)
38019     {
38020         if (ev.els) {
38021             Roo.each(ev.els, function(el) {
38022                 el.un('mouseenter' ,this.onEventEnter, this);
38023                 el.un('mouseleave' ,this.onEventLeave, this);
38024                 el.remove();
38025             },this);
38026             ev.els = [];
38027         }
38028     },
38029     
38030     
38031     renderEvent : function(ev,ctr) {
38032         if (!ctr) {
38033              ctr = this.view.el.select('.fc-event-container',true).first();
38034         }
38035         
38036          
38037         this.clearEvent(ev);
38038             //code
38039        
38040         
38041         
38042         ev.els = [];
38043         var cells = ev.cells;
38044         var rows = ev.rows;
38045         this.fireEvent('eventrender', this, ev);
38046         
38047         for(var i =0; i < rows.length; i++) {
38048             
38049             cls = '';
38050             if (i == 0) {
38051                 cls += ' fc-event-start';
38052             }
38053             if ((i+1) == rows.length) {
38054                 cls += ' fc-event-end';
38055             }
38056             
38057             //Roo.log(ev.data);
38058             // how many rows should it span..
38059             var cg = this.eventTmpl.append(ctr,Roo.apply({
38060                 fccls : cls
38061                 
38062             }, ev.data) , true);
38063             
38064             
38065             cg.on('mouseenter' ,this.onEventEnter, this, ev);
38066             cg.on('mouseleave' ,this.onEventLeave, this, ev);
38067             cg.on('click', this.onEventClick, this, ev);
38068             
38069             ev.els.push(cg);
38070             
38071             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
38072             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
38073             //Roo.log(cg);
38074              
38075             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
38076             cg.setWidth(ebox.right - sbox.x -2);
38077         }
38078     },
38079     
38080     renderEvents: function()
38081     {   
38082         // first make sure there is enough space..
38083         
38084         if (!this.eventTmpl) {
38085             this.eventTmpl = new Roo.Template(
38086                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
38087                     '<div class="fc-event-inner">' +
38088                         '<span class="fc-event-time">{time}</span>' +
38089                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
38090                     '</div>' +
38091                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
38092                 '</div>'
38093             );
38094                 
38095         }
38096                
38097         
38098         
38099         this.cells.each(function(c) {
38100             //Roo.log(c.select('.fc-day-content div',true).first());
38101             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
38102         });
38103         
38104         var ctr = this.view.el.select('.fc-event-container',true).first();
38105         
38106         var cls;
38107         this.eventStore.each(function(ev){
38108             
38109             this.renderEvent(ev);
38110              
38111              
38112         }, this);
38113         this.view.layout();
38114         
38115     },
38116     
38117     onEventEnter: function (e, el,event,d) {
38118         this.fireEvent('evententer', this, el, event);
38119     },
38120     
38121     onEventLeave: function (e, el,event,d) {
38122         this.fireEvent('eventleave', this, el, event);
38123     },
38124     
38125     onEventClick: function (e, el,event,d) {
38126         this.fireEvent('eventclick', this, el, event);
38127     },
38128     
38129     onMonthChange: function () {
38130         this.store.load();
38131     },
38132     
38133     onLoad: function () {
38134         
38135         //Roo.log('calendar onload');
38136 //         
38137         if(this.eventStore.getCount() > 0){
38138             
38139            
38140             
38141             this.eventStore.each(function(d){
38142                 
38143                 
38144                 // FIXME..
38145                 var add =   d.data;
38146                 if (typeof(add.end_dt) == 'undefined')  {
38147                     Roo.log("Missing End time in calendar data: ");
38148                     Roo.log(d);
38149                     return;
38150                 }
38151                 if (typeof(add.start_dt) == 'undefined')  {
38152                     Roo.log("Missing Start time in calendar data: ");
38153                     Roo.log(d);
38154                     return;
38155                 }
38156                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
38157                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
38158                 add.id = add.id || d.id;
38159                 add.title = add.title || '??';
38160                 
38161                 this.addItem(d);
38162                 
38163              
38164             },this);
38165         }
38166         
38167         this.renderEvents();
38168     }
38169     
38170
38171 });
38172 /*
38173  grid : {
38174                 xtype: 'Grid',
38175                 xns: Roo.grid,
38176                 listeners : {
38177                     render : function ()
38178                     {
38179                         _this.grid = this;
38180                         
38181                         if (!this.view.el.hasClass('course-timesheet')) {
38182                             this.view.el.addClass('course-timesheet');
38183                         }
38184                         if (this.tsStyle) {
38185                             this.ds.load({});
38186                             return; 
38187                         }
38188                         Roo.log('width');
38189                         Roo.log(_this.grid.view.el.getWidth());
38190                         
38191                         
38192                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
38193                             '.course-timesheet .x-grid-row' : {
38194                                 height: '80px'
38195                             },
38196                             '.x-grid-row td' : {
38197                                 'vertical-align' : 0
38198                             },
38199                             '.course-edit-link' : {
38200                                 'color' : 'blue',
38201                                 'text-overflow' : 'ellipsis',
38202                                 'overflow' : 'hidden',
38203                                 'white-space' : 'nowrap',
38204                                 'cursor' : 'pointer'
38205                             },
38206                             '.sub-link' : {
38207                                 'color' : 'green'
38208                             },
38209                             '.de-act-sup-link' : {
38210                                 'color' : 'purple',
38211                                 'text-decoration' : 'line-through'
38212                             },
38213                             '.de-act-link' : {
38214                                 'color' : 'red',
38215                                 'text-decoration' : 'line-through'
38216                             },
38217                             '.course-timesheet .course-highlight' : {
38218                                 'border-top-style': 'dashed !important',
38219                                 'border-bottom-bottom': 'dashed !important'
38220                             },
38221                             '.course-timesheet .course-item' : {
38222                                 'font-family'   : 'tahoma, arial, helvetica',
38223                                 'font-size'     : '11px',
38224                                 'overflow'      : 'hidden',
38225                                 'padding-left'  : '10px',
38226                                 'padding-right' : '10px',
38227                                 'padding-top' : '10px' 
38228                             }
38229                             
38230                         }, Roo.id());
38231                                 this.ds.load({});
38232                     }
38233                 },
38234                 autoWidth : true,
38235                 monitorWindowResize : false,
38236                 cellrenderer : function(v,x,r)
38237                 {
38238                     return v;
38239                 },
38240                 sm : {
38241                     xtype: 'CellSelectionModel',
38242                     xns: Roo.grid
38243                 },
38244                 dataSource : {
38245                     xtype: 'Store',
38246                     xns: Roo.data,
38247                     listeners : {
38248                         beforeload : function (_self, options)
38249                         {
38250                             options.params = options.params || {};
38251                             options.params._month = _this.monthField.getValue();
38252                             options.params.limit = 9999;
38253                             options.params['sort'] = 'when_dt';    
38254                             options.params['dir'] = 'ASC';    
38255                             this.proxy.loadResponse = this.loadResponse;
38256                             Roo.log("load?");
38257                             //this.addColumns();
38258                         },
38259                         load : function (_self, records, options)
38260                         {
38261                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
38262                                 // if you click on the translation.. you can edit it...
38263                                 var el = Roo.get(this);
38264                                 var id = el.dom.getAttribute('data-id');
38265                                 var d = el.dom.getAttribute('data-date');
38266                                 var t = el.dom.getAttribute('data-time');
38267                                 //var id = this.child('span').dom.textContent;
38268                                 
38269                                 //Roo.log(this);
38270                                 Pman.Dialog.CourseCalendar.show({
38271                                     id : id,
38272                                     when_d : d,
38273                                     when_t : t,
38274                                     productitem_active : id ? 1 : 0
38275                                 }, function() {
38276                                     _this.grid.ds.load({});
38277                                 });
38278                            
38279                            });
38280                            
38281                            _this.panel.fireEvent('resize', [ '', '' ]);
38282                         }
38283                     },
38284                     loadResponse : function(o, success, response){
38285                             // this is overridden on before load..
38286                             
38287                             Roo.log("our code?");       
38288                             //Roo.log(success);
38289                             //Roo.log(response)
38290                             delete this.activeRequest;
38291                             if(!success){
38292                                 this.fireEvent("loadexception", this, o, response);
38293                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
38294                                 return;
38295                             }
38296                             var result;
38297                             try {
38298                                 result = o.reader.read(response);
38299                             }catch(e){
38300                                 Roo.log("load exception?");
38301                                 this.fireEvent("loadexception", this, o, response, e);
38302                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
38303                                 return;
38304                             }
38305                             Roo.log("ready...");        
38306                             // loop through result.records;
38307                             // and set this.tdate[date] = [] << array of records..
38308                             _this.tdata  = {};
38309                             Roo.each(result.records, function(r){
38310                                 //Roo.log(r.data);
38311                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
38312                                     _this.tdata[r.data.when_dt.format('j')] = [];
38313                                 }
38314                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
38315                             });
38316                             
38317                             //Roo.log(_this.tdata);
38318                             
38319                             result.records = [];
38320                             result.totalRecords = 6;
38321                     
38322                             // let's generate some duumy records for the rows.
38323                             //var st = _this.dateField.getValue();
38324                             
38325                             // work out monday..
38326                             //st = st.add(Date.DAY, -1 * st.format('w'));
38327                             
38328                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38329                             
38330                             var firstOfMonth = date.getFirstDayOfMonth();
38331                             var days = date.getDaysInMonth();
38332                             var d = 1;
38333                             var firstAdded = false;
38334                             for (var i = 0; i < result.totalRecords ; i++) {
38335                                 //var d= st.add(Date.DAY, i);
38336                                 var row = {};
38337                                 var added = 0;
38338                                 for(var w = 0 ; w < 7 ; w++){
38339                                     if(!firstAdded && firstOfMonth != w){
38340                                         continue;
38341                                     }
38342                                     if(d > days){
38343                                         continue;
38344                                     }
38345                                     firstAdded = true;
38346                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
38347                                     row['weekday'+w] = String.format(
38348                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
38349                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
38350                                                     d,
38351                                                     date.format('Y-m-')+dd
38352                                                 );
38353                                     added++;
38354                                     if(typeof(_this.tdata[d]) != 'undefined'){
38355                                         Roo.each(_this.tdata[d], function(r){
38356                                             var is_sub = '';
38357                                             var deactive = '';
38358                                             var id = r.id;
38359                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
38360                                             if(r.parent_id*1>0){
38361                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
38362                                                 id = r.parent_id;
38363                                             }
38364                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
38365                                                 deactive = 'de-act-link';
38366                                             }
38367                                             
38368                                             row['weekday'+w] += String.format(
38369                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
38370                                                     id, //0
38371                                                     r.product_id_name, //1
38372                                                     r.when_dt.format('h:ia'), //2
38373                                                     is_sub, //3
38374                                                     deactive, //4
38375                                                     desc // 5
38376                                             );
38377                                         });
38378                                     }
38379                                     d++;
38380                                 }
38381                                 
38382                                 // only do this if something added..
38383                                 if(added > 0){ 
38384                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
38385                                 }
38386                                 
38387                                 
38388                                 // push it twice. (second one with an hour..
38389                                 
38390                             }
38391                             //Roo.log(result);
38392                             this.fireEvent("load", this, o, o.request.arg);
38393                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
38394                         },
38395                     sortInfo : {field: 'when_dt', direction : 'ASC' },
38396                     proxy : {
38397                         xtype: 'HttpProxy',
38398                         xns: Roo.data,
38399                         method : 'GET',
38400                         url : baseURL + '/Roo/Shop_course.php'
38401                     },
38402                     reader : {
38403                         xtype: 'JsonReader',
38404                         xns: Roo.data,
38405                         id : 'id',
38406                         fields : [
38407                             {
38408                                 'name': 'id',
38409                                 'type': 'int'
38410                             },
38411                             {
38412                                 'name': 'when_dt',
38413                                 'type': 'string'
38414                             },
38415                             {
38416                                 'name': 'end_dt',
38417                                 'type': 'string'
38418                             },
38419                             {
38420                                 'name': 'parent_id',
38421                                 'type': 'int'
38422                             },
38423                             {
38424                                 'name': 'product_id',
38425                                 'type': 'int'
38426                             },
38427                             {
38428                                 'name': 'productitem_id',
38429                                 'type': 'int'
38430                             },
38431                             {
38432                                 'name': 'guid',
38433                                 'type': 'int'
38434                             }
38435                         ]
38436                     }
38437                 },
38438                 toolbar : {
38439                     xtype: 'Toolbar',
38440                     xns: Roo,
38441                     items : [
38442                         {
38443                             xtype: 'Button',
38444                             xns: Roo.Toolbar,
38445                             listeners : {
38446                                 click : function (_self, e)
38447                                 {
38448                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38449                                     sd.setMonth(sd.getMonth()-1);
38450                                     _this.monthField.setValue(sd.format('Y-m-d'));
38451                                     _this.grid.ds.load({});
38452                                 }
38453                             },
38454                             text : "Back"
38455                         },
38456                         {
38457                             xtype: 'Separator',
38458                             xns: Roo.Toolbar
38459                         },
38460                         {
38461                             xtype: 'MonthField',
38462                             xns: Roo.form,
38463                             listeners : {
38464                                 render : function (_self)
38465                                 {
38466                                     _this.monthField = _self;
38467                                    // _this.monthField.set  today
38468                                 },
38469                                 select : function (combo, date)
38470                                 {
38471                                     _this.grid.ds.load({});
38472                                 }
38473                             },
38474                             value : (function() { return new Date(); })()
38475                         },
38476                         {
38477                             xtype: 'Separator',
38478                             xns: Roo.Toolbar
38479                         },
38480                         {
38481                             xtype: 'TextItem',
38482                             xns: Roo.Toolbar,
38483                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
38484                         },
38485                         {
38486                             xtype: 'Fill',
38487                             xns: Roo.Toolbar
38488                         },
38489                         {
38490                             xtype: 'Button',
38491                             xns: Roo.Toolbar,
38492                             listeners : {
38493                                 click : function (_self, e)
38494                                 {
38495                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
38496                                     sd.setMonth(sd.getMonth()+1);
38497                                     _this.monthField.setValue(sd.format('Y-m-d'));
38498                                     _this.grid.ds.load({});
38499                                 }
38500                             },
38501                             text : "Next"
38502                         }
38503                     ]
38504                 },
38505                  
38506             }
38507         };
38508         
38509         *//*
38510  * Based on:
38511  * Ext JS Library 1.1.1
38512  * Copyright(c) 2006-2007, Ext JS, LLC.
38513  *
38514  * Originally Released Under LGPL - original licence link has changed is not relivant.
38515  *
38516  * Fork - LGPL
38517  * <script type="text/javascript">
38518  */
38519  
38520 /**
38521  * @class Roo.LoadMask
38522  * A simple utility class for generically masking elements while loading data.  If the element being masked has
38523  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
38524  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
38525  * element's UpdateManager load indicator and will be destroyed after the initial load.
38526  * @constructor
38527  * Create a new LoadMask
38528  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
38529  * @param {Object} config The config object
38530  */
38531 Roo.LoadMask = function(el, config){
38532     this.el = Roo.get(el);
38533     Roo.apply(this, config);
38534     if(this.store){
38535         this.store.on('beforeload', this.onBeforeLoad, this);
38536         this.store.on('load', this.onLoad, this);
38537         this.store.on('loadexception', this.onLoadException, this);
38538         this.removeMask = false;
38539     }else{
38540         var um = this.el.getUpdateManager();
38541         um.showLoadIndicator = false; // disable the default indicator
38542         um.on('beforeupdate', this.onBeforeLoad, this);
38543         um.on('update', this.onLoad, this);
38544         um.on('failure', this.onLoad, this);
38545         this.removeMask = true;
38546     }
38547 };
38548
38549 Roo.LoadMask.prototype = {
38550     /**
38551      * @cfg {Boolean} removeMask
38552      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
38553      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
38554      */
38555     /**
38556      * @cfg {String} msg
38557      * The text to display in a centered loading message box (defaults to 'Loading...')
38558      */
38559     msg : 'Loading...',
38560     /**
38561      * @cfg {String} msgCls
38562      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
38563      */
38564     msgCls : 'x-mask-loading',
38565
38566     /**
38567      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
38568      * @type Boolean
38569      */
38570     disabled: false,
38571
38572     /**
38573      * Disables the mask to prevent it from being displayed
38574      */
38575     disable : function(){
38576        this.disabled = true;
38577     },
38578
38579     /**
38580      * Enables the mask so that it can be displayed
38581      */
38582     enable : function(){
38583         this.disabled = false;
38584     },
38585     
38586     onLoadException : function()
38587     {
38588         Roo.log(arguments);
38589         
38590         if (typeof(arguments[3]) != 'undefined') {
38591             Roo.MessageBox.alert("Error loading",arguments[3]);
38592         } 
38593         /*
38594         try {
38595             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
38596                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
38597             }   
38598         } catch(e) {
38599             
38600         }
38601         */
38602     
38603         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38604     },
38605     // private
38606     onLoad : function()
38607     {
38608         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
38609     },
38610
38611     // private
38612     onBeforeLoad : function(){
38613         if(!this.disabled){
38614             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
38615         }
38616     },
38617
38618     // private
38619     destroy : function(){
38620         if(this.store){
38621             this.store.un('beforeload', this.onBeforeLoad, this);
38622             this.store.un('load', this.onLoad, this);
38623             this.store.un('loadexception', this.onLoadException, this);
38624         }else{
38625             var um = this.el.getUpdateManager();
38626             um.un('beforeupdate', this.onBeforeLoad, this);
38627             um.un('update', this.onLoad, this);
38628             um.un('failure', this.onLoad, this);
38629         }
38630     }
38631 };/*
38632  * Based on:
38633  * Ext JS Library 1.1.1
38634  * Copyright(c) 2006-2007, Ext JS, LLC.
38635  *
38636  * Originally Released Under LGPL - original licence link has changed is not relivant.
38637  *
38638  * Fork - LGPL
38639  * <script type="text/javascript">
38640  */
38641
38642
38643 /**
38644  * @class Roo.XTemplate
38645  * @extends Roo.Template
38646  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
38647 <pre><code>
38648 var t = new Roo.XTemplate(
38649         '&lt;select name="{name}"&gt;',
38650                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
38651         '&lt;/select&gt;'
38652 );
38653  
38654 // then append, applying the master template values
38655  </code></pre>
38656  *
38657  * Supported features:
38658  *
38659  *  Tags:
38660
38661 <pre><code>
38662       {a_variable} - output encoded.
38663       {a_variable.format:("Y-m-d")} - call a method on the variable
38664       {a_variable:raw} - unencoded output
38665       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
38666       {a_variable:this.method_on_template(...)} - call a method on the template object.
38667  
38668 </code></pre>
38669  *  The tpl tag:
38670 <pre><code>
38671         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
38672         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
38673         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
38674         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
38675   
38676         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
38677         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
38678 </code></pre>
38679  *      
38680  */
38681 Roo.XTemplate = function()
38682 {
38683     Roo.XTemplate.superclass.constructor.apply(this, arguments);
38684     if (this.html) {
38685         this.compile();
38686     }
38687 };
38688
38689
38690 Roo.extend(Roo.XTemplate, Roo.Template, {
38691
38692     /**
38693      * The various sub templates
38694      */
38695     tpls : false,
38696     /**
38697      *
38698      * basic tag replacing syntax
38699      * WORD:WORD()
38700      *
38701      * // you can fake an object call by doing this
38702      *  x.t:(test,tesT) 
38703      * 
38704      */
38705     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
38706
38707     /**
38708      * compile the template
38709      *
38710      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
38711      *
38712      */
38713     compile: function()
38714     {
38715         var s = this.html;
38716      
38717         s = ['<tpl>', s, '</tpl>'].join('');
38718     
38719         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
38720             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
38721             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
38722             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
38723             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
38724             m,
38725             id     = 0,
38726             tpls   = [];
38727     
38728         while(true == !!(m = s.match(re))){
38729             var forMatch   = m[0].match(nameRe),
38730                 ifMatch   = m[0].match(ifRe),
38731                 execMatch   = m[0].match(execRe),
38732                 namedMatch   = m[0].match(namedRe),
38733                 
38734                 exp  = null, 
38735                 fn   = null,
38736                 exec = null,
38737                 name = forMatch && forMatch[1] ? forMatch[1] : '';
38738                 
38739             if (ifMatch) {
38740                 // if - puts fn into test..
38741                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
38742                 if(exp){
38743                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
38744                 }
38745             }
38746             
38747             if (execMatch) {
38748                 // exec - calls a function... returns empty if true is  returned.
38749                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
38750                 if(exp){
38751                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
38752                 }
38753             }
38754             
38755             
38756             if (name) {
38757                 // for = 
38758                 switch(name){
38759                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
38760                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
38761                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
38762                 }
38763             }
38764             var uid = namedMatch ? namedMatch[1] : id;
38765             
38766             
38767             tpls.push({
38768                 id:     namedMatch ? namedMatch[1] : id,
38769                 target: name,
38770                 exec:   exec,
38771                 test:   fn,
38772                 body:   m[1] || ''
38773             });
38774             if (namedMatch) {
38775                 s = s.replace(m[0], '');
38776             } else { 
38777                 s = s.replace(m[0], '{xtpl'+ id + '}');
38778             }
38779             ++id;
38780         }
38781         this.tpls = [];
38782         for(var i = tpls.length-1; i >= 0; --i){
38783             this.compileTpl(tpls[i]);
38784             this.tpls[tpls[i].id] = tpls[i];
38785         }
38786         this.master = tpls[tpls.length-1];
38787         return this;
38788     },
38789     /**
38790      * same as applyTemplate, except it's done to one of the subTemplates
38791      * when using named templates, you can do:
38792      *
38793      * var str = pl.applySubTemplate('your-name', values);
38794      *
38795      * 
38796      * @param {Number} id of the template
38797      * @param {Object} values to apply to template
38798      * @param {Object} parent (normaly the instance of this object)
38799      */
38800     applySubTemplate : function(id, values, parent)
38801     {
38802         
38803         
38804         var t = this.tpls[id];
38805         
38806         
38807         try { 
38808             if(t.test && !t.test.call(this, values, parent)){
38809                 return '';
38810             }
38811         } catch(e) {
38812             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
38813             Roo.log(e.toString());
38814             Roo.log(t.test);
38815             return ''
38816         }
38817         try { 
38818             
38819             if(t.exec && t.exec.call(this, values, parent)){
38820                 return '';
38821             }
38822         } catch(e) {
38823             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
38824             Roo.log(e.toString());
38825             Roo.log(t.exec);
38826             return ''
38827         }
38828         try {
38829             var vs = t.target ? t.target.call(this, values, parent) : values;
38830             parent = t.target ? values : parent;
38831             if(t.target && vs instanceof Array){
38832                 var buf = [];
38833                 for(var i = 0, len = vs.length; i < len; i++){
38834                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
38835                 }
38836                 return buf.join('');
38837             }
38838             return t.compiled.call(this, vs, parent);
38839         } catch (e) {
38840             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
38841             Roo.log(e.toString());
38842             Roo.log(t.compiled);
38843             return '';
38844         }
38845     },
38846
38847     compileTpl : function(tpl)
38848     {
38849         var fm = Roo.util.Format;
38850         var useF = this.disableFormats !== true;
38851         var sep = Roo.isGecko ? "+" : ",";
38852         var undef = function(str) {
38853             Roo.log("Property not found :"  + str);
38854             return '';
38855         };
38856         
38857         var fn = function(m, name, format, args)
38858         {
38859             //Roo.log(arguments);
38860             args = args ? args.replace(/\\'/g,"'") : args;
38861             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
38862             if (typeof(format) == 'undefined') {
38863                 format= 'htmlEncode';
38864             }
38865             if (format == 'raw' ) {
38866                 format = false;
38867             }
38868             
38869             if(name.substr(0, 4) == 'xtpl'){
38870                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
38871             }
38872             
38873             // build an array of options to determine if value is undefined..
38874             
38875             // basically get 'xxxx.yyyy' then do
38876             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
38877             //    (function () { Roo.log("Property not found"); return ''; })() :
38878             //    ......
38879             
38880             var udef_ar = [];
38881             var lookfor = '';
38882             Roo.each(name.split('.'), function(st) {
38883                 lookfor += (lookfor.length ? '.': '') + st;
38884                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
38885             });
38886             
38887             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
38888             
38889             
38890             if(format && useF){
38891                 
38892                 args = args ? ',' + args : "";
38893                  
38894                 if(format.substr(0, 5) != "this."){
38895                     format = "fm." + format + '(';
38896                 }else{
38897                     format = 'this.call("'+ format.substr(5) + '", ';
38898                     args = ", values";
38899                 }
38900                 
38901                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
38902             }
38903              
38904             if (args.length) {
38905                 // called with xxyx.yuu:(test,test)
38906                 // change to ()
38907                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
38908             }
38909             // raw.. - :raw modifier..
38910             return "'"+ sep + udef_st  + name + ")"+sep+"'";
38911             
38912         };
38913         var body;
38914         // branched to use + in gecko and [].join() in others
38915         if(Roo.isGecko){
38916             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
38917                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
38918                     "';};};";
38919         }else{
38920             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
38921             body.push(tpl.body.replace(/(\r\n|\n)/g,
38922                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
38923             body.push("'].join('');};};");
38924             body = body.join('');
38925         }
38926         
38927         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
38928        
38929         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
38930         eval(body);
38931         
38932         return this;
38933     },
38934
38935     applyTemplate : function(values){
38936         return this.master.compiled.call(this, values, {});
38937         //var s = this.subs;
38938     },
38939
38940     apply : function(){
38941         return this.applyTemplate.apply(this, arguments);
38942     }
38943
38944  });
38945
38946 Roo.XTemplate.from = function(el){
38947     el = Roo.getDom(el);
38948     return new Roo.XTemplate(el.value || el.innerHTML);
38949 };