fix #7793 - captions editing should store values in outer figure, rather than caption
[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  * @static
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} ret return data from JsonData.reader() - success, totalRecords, records
485          * @param {Object} opts - 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 [required] 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.DataReader} reader [required]  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>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
670      * <pre>
671                 {
672                     data : data,  // array of key=>value data like JsonReader
673                     total : data.length,
674                     success : true
675                     
676                 }
677         </pre>
678             }.</li>
679      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
680      * passed the following arguments:<ul>
681      * <li>r : Roo.data.Record[]</li>
682      * <li>options: Options object from the load call</li>
683      * <li>success: Boolean success indicator</li></ul></li>
684      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
685      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
686      * </ul>
687      */
688     load : function(options){
689         options = options || {};
690         if(this.fireEvent("beforeload", this, options) !== false){
691             this.storeOptions(options);
692             var p = Roo.apply(options.params || {}, this.baseParams);
693             // if meta was not loaded from remote source.. try requesting it.
694             if (!this.reader.metaFromRemote) {
695                 p._requestMeta = 1;
696             }
697             if(this.sortInfo && this.remoteSort){
698                 var pn = this.paramNames;
699                 p[pn["sort"]] = this.sortInfo.field;
700                 p[pn["dir"]] = this.sortInfo.direction;
701             }
702             if (this.multiSort) {
703                 var pn = this.paramNames;
704                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
705             }
706             
707             this.proxy.load(p, this.reader, this.loadRecords, this, options);
708         }
709     },
710
711     /**
712      * Reloads the Record cache from the configured Proxy using the configured Reader and
713      * the options from the last load operation performed.
714      * @param {Object} options (optional) An object containing properties which may override the options
715      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
716      * the most recently used options are reused).
717      */
718     reload : function(options){
719         this.load(Roo.applyIf(options||{}, this.lastOptions));
720     },
721
722     // private
723     // Called as a callback by the Reader during a load operation.
724     loadRecords : function(o, options, success){
725          
726         if(!o){
727             if(success !== false){
728                 this.fireEvent("load", this, [], options, o);
729             }
730             if(options.callback){
731                 options.callback.call(options.scope || this, [], options, false);
732             }
733             return;
734         }
735         // if data returned failure - throw an exception.
736         if (o.success === false) {
737             // show a message if no listener is registered.
738             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
739                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
740             }
741             // loadmask wil be hooked into this..
742             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
743             return;
744         }
745         var r = o.records, t = o.totalRecords || r.length;
746         
747         this.fireEvent("beforeloadadd", this, r, options, o);
748         
749         if(!options || options.add !== true){
750             if(this.pruneModifiedRecords){
751                 this.modified = [];
752             }
753             for(var i = 0, len = r.length; i < len; i++){
754                 r[i].join(this);
755             }
756             if(this.snapshot){
757                 this.data = this.snapshot;
758                 delete this.snapshot;
759             }
760             this.data.clear();
761             this.data.addAll(r);
762             this.totalLength = t;
763             this.applySort();
764             this.fireEvent("datachanged", this);
765         }else{
766             this.totalLength = Math.max(t, this.data.length+r.length);
767             this.add(r);
768         }
769         
770         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
771                 
772             var e = new Roo.data.Record({});
773
774             e.set(this.parent.displayField, this.parent.emptyTitle);
775             e.set(this.parent.valueField, '');
776
777             this.insert(0, e);
778         }
779             
780         this.fireEvent("load", this, r, options, o);
781         if(options.callback){
782             options.callback.call(options.scope || this, r, options, true);
783         }
784     },
785
786
787     /**
788      * Loads data from a passed data block. A Reader which understands the format of the data
789      * must have been configured in the constructor.
790      * @param {Object} data The data block from which to read the Records.  The format of the data expected
791      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
792      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
793      */
794     loadData : function(o, append){
795         var r = this.reader.readRecords(o);
796         this.loadRecords(r, {add: append}, true);
797     },
798     
799      /**
800      * using 'cn' the nested child reader read the child array into it's child stores.
801      * @param {Object} rec The record with a 'children array
802      */
803     loadDataFromChildren : function(rec)
804     {
805         this.loadData(this.reader.toLoadData(rec));
806     },
807     
808
809     /**
810      * Gets the number of cached records.
811      * <p>
812      * <em>If using paging, this may not be the total size of the dataset. If the data object
813      * used by the Reader contains the dataset size, then the getTotalCount() function returns
814      * the data set size</em>
815      */
816     getCount : function(){
817         return this.data.length || 0;
818     },
819
820     /**
821      * Gets the total number of records in the dataset as returned by the server.
822      * <p>
823      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
824      * the dataset size</em>
825      */
826     getTotalCount : function(){
827         return this.totalLength || 0;
828     },
829
830     /**
831      * Returns the sort state of the Store as an object with two properties:
832      * <pre><code>
833  field {String} The name of the field by which the Records are sorted
834  direction {String} The sort order, "ASC" or "DESC"
835      * </code></pre>
836      */
837     getSortState : function(){
838         return this.sortInfo;
839     },
840
841     // private
842     applySort : function(){
843         if(this.sortInfo && !this.remoteSort){
844             var s = this.sortInfo, f = s.field;
845             var st = this.fields.get(f).sortType;
846             var fn = function(r1, r2){
847                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
848                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
849             };
850             this.data.sort(s.direction, fn);
851             if(this.snapshot && this.snapshot != this.data){
852                 this.snapshot.sort(s.direction, fn);
853             }
854         }
855     },
856
857     /**
858      * Sets the default sort column and order to be used by the next load operation.
859      * @param {String} fieldName The name of the field to sort by.
860      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
861      */
862     setDefaultSort : function(field, dir){
863         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
864     },
865
866     /**
867      * Sort the Records.
868      * If remote sorting is used, the sort is performed on the server, and the cache is
869      * reloaded. If local sorting is used, the cache is sorted internally.
870      * @param {String} fieldName The name of the field to sort by.
871      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
872      */
873     sort : function(fieldName, dir){
874         var f = this.fields.get(fieldName);
875         if(!dir){
876             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
877             
878             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
879                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
880             }else{
881                 dir = f.sortDir;
882             }
883         }
884         this.sortToggle[f.name] = dir;
885         this.sortInfo = {field: f.name, direction: dir};
886         if(!this.remoteSort){
887             this.applySort();
888             this.fireEvent("datachanged", this);
889         }else{
890             this.load(this.lastOptions);
891         }
892     },
893
894     /**
895      * Calls the specified function for each of the Records in the cache.
896      * @param {Function} fn The function to call. The Record is passed as the first parameter.
897      * Returning <em>false</em> aborts and exits the iteration.
898      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
899      */
900     each : function(fn, scope){
901         this.data.each(fn, scope);
902     },
903
904     /**
905      * Gets all records modified since the last commit.  Modified records are persisted across load operations
906      * (e.g., during paging).
907      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
908      */
909     getModifiedRecords : function(){
910         return this.modified;
911     },
912
913     // private
914     createFilterFn : function(property, value, anyMatch){
915         if(!value.exec){ // not a regex
916             value = String(value);
917             if(value.length == 0){
918                 return false;
919             }
920             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
921         }
922         return function(r){
923             return value.test(r.data[property]);
924         };
925     },
926
927     /**
928      * Sums the value of <i>property</i> for each record between start and end and returns the result.
929      * @param {String} property A field on your records
930      * @param {Number} start The record index to start at (defaults to 0)
931      * @param {Number} end The last record index to include (defaults to length - 1)
932      * @return {Number} The sum
933      */
934     sum : function(property, start, end){
935         var rs = this.data.items, v = 0;
936         start = start || 0;
937         end = (end || end === 0) ? end : rs.length-1;
938
939         for(var i = start; i <= end; i++){
940             v += (rs[i].data[property] || 0);
941         }
942         return v;
943     },
944
945     /**
946      * Filter the records by a specified property.
947      * @param {String} field A field on your records
948      * @param {String/RegExp} value Either a string that the field
949      * should start with or a RegExp to test against the field
950      * @param {Boolean} anyMatch True to match any part not just the beginning
951      */
952     filter : function(property, value, anyMatch){
953         var fn = this.createFilterFn(property, value, anyMatch);
954         return fn ? this.filterBy(fn) : this.clearFilter();
955     },
956
957     /**
958      * Filter by a function. The specified function will be called with each
959      * record in this data source. If the function returns true the record is included,
960      * otherwise it is filtered.
961      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
962      * @param {Object} scope (optional) The scope of the function (defaults to this)
963      */
964     filterBy : function(fn, scope){
965         this.snapshot = this.snapshot || this.data;
966         this.data = this.queryBy(fn, scope||this);
967         this.fireEvent("datachanged", this);
968     },
969
970     /**
971      * Query the records by a specified property.
972      * @param {String} field A field on your records
973      * @param {String/RegExp} value Either a string that the field
974      * should start with or a RegExp to test against the field
975      * @param {Boolean} anyMatch True to match any part not just the beginning
976      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
977      */
978     query : function(property, value, anyMatch){
979         var fn = this.createFilterFn(property, value, anyMatch);
980         return fn ? this.queryBy(fn) : this.data.clone();
981     },
982
983     /**
984      * Query by a function. The specified function will be called with each
985      * record in this data source. If the function returns true the record is included
986      * in the results.
987      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
988      * @param {Object} scope (optional) The scope of the function (defaults to this)
989       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
990      **/
991     queryBy : function(fn, scope){
992         var data = this.snapshot || this.data;
993         return data.filterBy(fn, scope||this);
994     },
995
996     /**
997      * Collects unique values for a particular dataIndex from this store.
998      * @param {String} dataIndex The property to collect
999      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
1000      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
1001      * @return {Array} An array of the unique values
1002      **/
1003     collect : function(dataIndex, allowNull, bypassFilter){
1004         var d = (bypassFilter === true && this.snapshot) ?
1005                 this.snapshot.items : this.data.items;
1006         var v, sv, r = [], l = {};
1007         for(var i = 0, len = d.length; i < len; i++){
1008             v = d[i].data[dataIndex];
1009             sv = String(v);
1010             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
1011                 l[sv] = true;
1012                 r[r.length] = v;
1013             }
1014         }
1015         return r;
1016     },
1017
1018     /**
1019      * Revert to a view of the Record cache with no filtering applied.
1020      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
1021      */
1022     clearFilter : function(suppressEvent){
1023         if(this.snapshot && this.snapshot != this.data){
1024             this.data = this.snapshot;
1025             delete this.snapshot;
1026             if(suppressEvent !== true){
1027                 this.fireEvent("datachanged", this);
1028             }
1029         }
1030     },
1031
1032     // private
1033     afterEdit : function(record){
1034         if(this.modified.indexOf(record) == -1){
1035             this.modified.push(record);
1036         }
1037         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
1038     },
1039     
1040     // private
1041     afterReject : function(record){
1042         this.modified.remove(record);
1043         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
1044     },
1045
1046     // private
1047     afterCommit : function(record){
1048         this.modified.remove(record);
1049         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
1050     },
1051
1052     /**
1053      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
1054      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
1055      */
1056     commitChanges : function(){
1057         var m = this.modified.slice(0);
1058         this.modified = [];
1059         for(var i = 0, len = m.length; i < len; i++){
1060             m[i].commit();
1061         }
1062     },
1063
1064     /**
1065      * Cancel outstanding changes on all changed records.
1066      */
1067     rejectChanges : function(){
1068         var m = this.modified.slice(0);
1069         this.modified = [];
1070         for(var i = 0, len = m.length; i < len; i++){
1071             m[i].reject();
1072         }
1073     },
1074
1075     onMetaChange : function(meta, rtype, o){
1076         this.recordType = rtype;
1077         this.fields = rtype.prototype.fields;
1078         delete this.snapshot;
1079         this.sortInfo = meta.sortInfo || this.sortInfo;
1080         this.modified = [];
1081         this.fireEvent('metachange', this, this.reader.meta);
1082     },
1083     
1084     moveIndex : function(data, type)
1085     {
1086         var index = this.indexOf(data);
1087         
1088         var newIndex = index + type;
1089         
1090         this.remove(data);
1091         
1092         this.insert(newIndex, data);
1093         
1094     }
1095 });/*
1096  * Based on:
1097  * Ext JS Library 1.1.1
1098  * Copyright(c) 2006-2007, Ext JS, LLC.
1099  *
1100  * Originally Released Under LGPL - original licence link has changed is not relivant.
1101  *
1102  * Fork - LGPL
1103  * <script type="text/javascript">
1104  */
1105
1106 /**
1107  * @class Roo.data.SimpleStore
1108  * @extends Roo.data.Store
1109  * Small helper class to make creating Stores from Array data easier.
1110  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
1111  * @cfg {Array} fields An array of field definition objects, or field name strings.
1112  * @cfg {Object} an existing reader (eg. copied from another store)
1113  * @cfg {Array} data The multi-dimensional array of data
1114  * @cfg {Roo.data.DataProxy} proxy [not-required]  
1115  * @cfg {Roo.data.Reader} reader  [not-required] 
1116  * @constructor
1117  * @param {Object} config
1118  */
1119 Roo.data.SimpleStore = function(config)
1120 {
1121     Roo.data.SimpleStore.superclass.constructor.call(this, {
1122         isLocal : true,
1123         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
1124                 id: config.id
1125             },
1126             Roo.data.Record.create(config.fields)
1127         ),
1128         proxy : new Roo.data.MemoryProxy(config.data)
1129     });
1130     this.load();
1131 };
1132 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
1133  * Based on:
1134  * Ext JS Library 1.1.1
1135  * Copyright(c) 2006-2007, Ext JS, LLC.
1136  *
1137  * Originally Released Under LGPL - original licence link has changed is not relivant.
1138  *
1139  * Fork - LGPL
1140  * <script type="text/javascript">
1141  */
1142
1143 /**
1144 /**
1145  * @extends Roo.data.Store
1146  * @class Roo.data.JsonStore
1147  * Small helper class to make creating Stores for JSON data easier. <br/>
1148 <pre><code>
1149 var store = new Roo.data.JsonStore({
1150     url: 'get-images.php',
1151     root: 'images',
1152     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
1153 });
1154 </code></pre>
1155  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
1156  * JsonReader and HttpProxy (unless inline data is provided).</b>
1157  * @cfg {Array} fields An array of field definition objects, or field name strings.
1158  * @constructor
1159  * @param {Object} config
1160  */
1161 Roo.data.JsonStore = function(c){
1162     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
1163         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
1164         reader: new Roo.data.JsonReader(c, c.fields)
1165     }));
1166 };
1167 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
1168  * Based on:
1169  * Ext JS Library 1.1.1
1170  * Copyright(c) 2006-2007, Ext JS, LLC.
1171  *
1172  * Originally Released Under LGPL - original licence link has changed is not relivant.
1173  *
1174  * Fork - LGPL
1175  * <script type="text/javascript">
1176  */
1177
1178  
1179 Roo.data.Field = function(config){
1180     if(typeof config == "string"){
1181         config = {name: config};
1182     }
1183     Roo.apply(this, config);
1184     
1185     if(!this.type){
1186         this.type = "auto";
1187     }
1188     
1189     var st = Roo.data.SortTypes;
1190     // named sortTypes are supported, here we look them up
1191     if(typeof this.sortType == "string"){
1192         this.sortType = st[this.sortType];
1193     }
1194     
1195     // set default sortType for strings and dates
1196     if(!this.sortType){
1197         switch(this.type){
1198             case "string":
1199                 this.sortType = st.asUCString;
1200                 break;
1201             case "date":
1202                 this.sortType = st.asDate;
1203                 break;
1204             default:
1205                 this.sortType = st.none;
1206         }
1207     }
1208
1209     // define once
1210     var stripRe = /[\$,%]/g;
1211
1212     // prebuilt conversion function for this field, instead of
1213     // switching every time we're reading a value
1214     if(!this.convert){
1215         var cv, dateFormat = this.dateFormat;
1216         switch(this.type){
1217             case "":
1218             case "auto":
1219             case undefined:
1220                 cv = function(v){ return v; };
1221                 break;
1222             case "string":
1223                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
1224                 break;
1225             case "int":
1226                 cv = function(v){
1227                     return v !== undefined && v !== null && v !== '' ?
1228                            parseInt(String(v).replace(stripRe, ""), 10) : '';
1229                     };
1230                 break;
1231             case "float":
1232                 cv = function(v){
1233                     return v !== undefined && v !== null && v !== '' ?
1234                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
1235                     };
1236                 break;
1237             case "bool":
1238             case "boolean":
1239                 cv = function(v){ return v === true || v === "true" || v == 1; };
1240                 break;
1241             case "date":
1242                 cv = function(v){
1243                     if(!v){
1244                         return '';
1245                     }
1246                     if(v instanceof Date){
1247                         return v;
1248                     }
1249                     if(dateFormat){
1250                         if(dateFormat == "timestamp"){
1251                             return new Date(v*1000);
1252                         }
1253                         return Date.parseDate(v, dateFormat);
1254                     }
1255                     var parsed = Date.parse(v);
1256                     return parsed ? new Date(parsed) : null;
1257                 };
1258              break;
1259             
1260         }
1261         this.convert = cv;
1262     }
1263 };
1264
1265 Roo.data.Field.prototype = {
1266     dateFormat: null,
1267     defaultValue: "",
1268     mapping: null,
1269     sortType : null,
1270     sortDir : "ASC"
1271 };/*
1272  * Based on:
1273  * Ext JS Library 1.1.1
1274  * Copyright(c) 2006-2007, Ext JS, LLC.
1275  *
1276  * Originally Released Under LGPL - original licence link has changed is not relivant.
1277  *
1278  * Fork - LGPL
1279  * <script type="text/javascript">
1280  */
1281  
1282 // Base class for reading structured data from a data source.  This class is intended to be
1283 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
1284
1285 /**
1286  * @class Roo.data.DataReader
1287  * @abstract
1288  * Base class for reading structured data from a data source.  This class is intended to be
1289  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
1290  */
1291
1292 Roo.data.DataReader = function(meta, recordType){
1293     
1294     this.meta = meta;
1295     
1296     this.recordType = recordType instanceof Array ? 
1297         Roo.data.Record.create(recordType) : recordType;
1298 };
1299
1300 Roo.data.DataReader.prototype = {
1301     
1302     
1303     readerType : 'Data',
1304      /**
1305      * Create an empty record
1306      * @param {Object} data (optional) - overlay some values
1307      * @return {Roo.data.Record} record created.
1308      */
1309     newRow :  function(d) {
1310         var da =  {};
1311         this.recordType.prototype.fields.each(function(c) {
1312             switch( c.type) {
1313                 case 'int' : da[c.name] = 0; break;
1314                 case 'date' : da[c.name] = new Date(); break;
1315                 case 'float' : da[c.name] = 0.0; break;
1316                 case 'boolean' : da[c.name] = false; break;
1317                 default : da[c.name] = ""; break;
1318             }
1319             
1320         });
1321         return new this.recordType(Roo.apply(da, d));
1322     }
1323     
1324     
1325 };/*
1326  * Based on:
1327  * Ext JS Library 1.1.1
1328  * Copyright(c) 2006-2007, Ext JS, LLC.
1329  *
1330  * Originally Released Under LGPL - original licence link has changed is not relivant.
1331  *
1332  * Fork - LGPL
1333  * <script type="text/javascript">
1334  */
1335
1336 /**
1337  * @class Roo.data.DataProxy
1338  * @extends Roo.util.Observable
1339  * @abstract
1340  * This class is an abstract base class for implementations which provide retrieval of
1341  * unformatted data objects.<br>
1342  * <p>
1343  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
1344  * (of the appropriate type which knows how to parse the data object) to provide a block of
1345  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
1346  * <p>
1347  * Custom implementations must implement the load method as described in
1348  * {@link Roo.data.HttpProxy#load}.
1349  */
1350 Roo.data.DataProxy = function(){
1351     this.addEvents({
1352         /**
1353          * @event beforeload
1354          * Fires before a network request is made to retrieve a data object.
1355          * @param {Object} This DataProxy object.
1356          * @param {Object} params The params parameter to the load function.
1357          */
1358         beforeload : true,
1359         /**
1360          * @event load
1361          * Fires before the load method's callback is called.
1362          * @param {Object} This DataProxy object.
1363          * @param {Object} o The data object.
1364          * @param {Object} arg The callback argument object passed to the load function.
1365          */
1366         load : true,
1367         /**
1368          * @event loadexception
1369          * Fires if an Exception occurs during data retrieval.
1370          * @param {Object} This DataProxy object.
1371          * @param {Object} o The data object.
1372          * @param {Object} arg The callback argument object passed to the load function.
1373          * @param {Object} e The Exception.
1374          */
1375         loadexception : true
1376     });
1377     Roo.data.DataProxy.superclass.constructor.call(this);
1378 };
1379
1380 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
1381
1382     /**
1383      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
1384      */
1385 /*
1386  * Based on:
1387  * Ext JS Library 1.1.1
1388  * Copyright(c) 2006-2007, Ext JS, LLC.
1389  *
1390  * Originally Released Under LGPL - original licence link has changed is not relivant.
1391  *
1392  * Fork - LGPL
1393  * <script type="text/javascript">
1394  */
1395 /**
1396  * @class Roo.data.MemoryProxy
1397  * @extends Roo.data.DataProxy
1398  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
1399  * to the Reader when its load method is called.
1400  * @constructor
1401  * @param {Object} config  A config object containing the objects needed for the Store to access data,
1402  */
1403 Roo.data.MemoryProxy = function(config){
1404     var data = config;
1405     if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') {
1406         data = config.data;
1407     }
1408     Roo.data.MemoryProxy.superclass.constructor.call(this);
1409     this.data = data;
1410 };
1411
1412 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
1413     
1414     /**
1415      *  @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
1416      */
1417     /**
1418      * Load data from the requested source (in this case an in-memory
1419      * data object passed to the constructor), read the data object into
1420      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1421      * process that block using the passed callback.
1422      * @param {Object} params This parameter is not used by the MemoryProxy class.
1423      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1424      * object into a block of Roo.data.Records.
1425      * @param {Function} callback The function into which to pass the block of Roo.data.records.
1426      * The function must be passed <ul>
1427      * <li>The Record block object</li>
1428      * <li>The "arg" argument from the load function</li>
1429      * <li>A boolean success indicator</li>
1430      * </ul>
1431      * @param {Object} scope The scope in which to call the callback
1432      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1433      */
1434     load : function(params, reader, callback, scope, arg){
1435         params = params || {};
1436         var result;
1437         try {
1438             result = reader.readRecords(params.data ? params.data :this.data);
1439         }catch(e){
1440             this.fireEvent("loadexception", this, arg, null, e);
1441             callback.call(scope, null, arg, false);
1442             return;
1443         }
1444         callback.call(scope, result, arg, true);
1445     },
1446     
1447     // private
1448     update : function(params, records){
1449         
1450     }
1451 });/*
1452  * Based on:
1453  * Ext JS Library 1.1.1
1454  * Copyright(c) 2006-2007, Ext JS, LLC.
1455  *
1456  * Originally Released Under LGPL - original licence link has changed is not relivant.
1457  *
1458  * Fork - LGPL
1459  * <script type="text/javascript">
1460  */
1461 /**
1462  * @class Roo.data.HttpProxy
1463  * @extends Roo.data.DataProxy
1464  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
1465  * configured to reference a certain URL.<br><br>
1466  * <p>
1467  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
1468  * from which the running page was served.<br><br>
1469  * <p>
1470  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
1471  * <p>
1472  * Be aware that to enable the browser to parse an XML document, the server must set
1473  * the Content-Type header in the HTTP response to "text/xml".
1474  * @constructor
1475  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
1476  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
1477  * will be used to make the request.
1478  */
1479 Roo.data.HttpProxy = function(conn){
1480     Roo.data.HttpProxy.superclass.constructor.call(this);
1481     // is conn a conn config or a real conn?
1482     this.conn = conn;
1483     this.useAjax = !conn || !conn.events;
1484   
1485 };
1486
1487 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
1488     // thse are take from connection...
1489     
1490     /**
1491      * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
1492      */
1493     /**
1494      * @cfg {Object} extraParams  An object containing properties which are used as
1495      * extra parameters to each request made by this object. (defaults to undefined)
1496      */
1497     /**
1498      * @cfg {Object} defaultHeaders   An object containing request headers which are added
1499      *  to each request made by this object. (defaults to undefined)
1500      */
1501     /**
1502      * @cfg {String} method (GET|POST)  The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
1503      */
1504     /**
1505      * @cfg {Number} timeout The timeout in milliseconds to be used for requests. (defaults to 30000)
1506      */
1507      /**
1508      * @cfg {Boolean} autoAbort Whether this request should abort any pending requests. (defaults to false)
1509      * @type Boolean
1510      */
1511   
1512
1513     /**
1514      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
1515      * @type Boolean
1516      */
1517     /**
1518      * Return the {@link Roo.data.Connection} object being used by this Proxy.
1519      * @return {Connection} The Connection object. This object may be used to subscribe to events on
1520      * a finer-grained basis than the DataProxy events.
1521      */
1522     getConnection : function(){
1523         return this.useAjax ? Roo.Ajax : this.conn;
1524     },
1525
1526     /**
1527      * Load data from the configured {@link Roo.data.Connection}, read the data object into
1528      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
1529      * process that block using the passed callback.
1530      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1531      * for the request to the remote server.
1532      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1533      * object into a block of Roo.data.Records.
1534      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1535      * The function must be passed <ul>
1536      * <li>The Record block object</li>
1537      * <li>The "arg" argument from the load function</li>
1538      * <li>A boolean success indicator</li>
1539      * </ul>
1540      * @param {Object} scope The scope in which to call the callback
1541      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1542      */
1543     load : function(params, reader, callback, scope, arg){
1544         if(this.fireEvent("beforeload", this, params) !== false){
1545             var  o = {
1546                 params : params || {},
1547                 request: {
1548                     callback : callback,
1549                     scope : scope,
1550                     arg : arg
1551                 },
1552                 reader: reader,
1553                 callback : this.loadResponse,
1554                 scope: this
1555             };
1556             if(this.useAjax){
1557                 Roo.applyIf(o, this.conn);
1558                 if(this.activeRequest){
1559                     Roo.Ajax.abort(this.activeRequest);
1560                 }
1561                 this.activeRequest = Roo.Ajax.request(o);
1562             }else{
1563                 this.conn.request(o);
1564             }
1565         }else{
1566             callback.call(scope||this, null, arg, false);
1567         }
1568     },
1569
1570     // private
1571     loadResponse : function(o, success, response){
1572         delete this.activeRequest;
1573         if(!success){
1574             this.fireEvent("loadexception", this, o, response);
1575             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1576             return;
1577         }
1578         var result;
1579         try {
1580             result = o.reader.read(response);
1581         }catch(e){
1582             o.success = false;
1583             o.raw = { errorMsg : response.responseText };
1584             this.fireEvent("loadexception", this, o, response, e);
1585             o.request.callback.call(o.request.scope, o, o.request.arg, false);
1586             return;
1587         }
1588         
1589         this.fireEvent("load", this, o, o.request.arg);
1590         o.request.callback.call(o.request.scope, result, o.request.arg, true);
1591     },
1592
1593     // private
1594     update : function(dataSet){
1595
1596     },
1597
1598     // private
1599     updateResponse : function(dataSet){
1600
1601     }
1602 });/*
1603  * Based on:
1604  * Ext JS Library 1.1.1
1605  * Copyright(c) 2006-2007, Ext JS, LLC.
1606  *
1607  * Originally Released Under LGPL - original licence link has changed is not relivant.
1608  *
1609  * Fork - LGPL
1610  * <script type="text/javascript">
1611  */
1612
1613 /**
1614  * @class Roo.data.ScriptTagProxy
1615  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
1616  * other than the originating domain of the running page.<br><br>
1617  * <p>
1618  * <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
1619  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
1620  * <p>
1621  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
1622  * source code that is used as the source inside a &lt;script> tag.<br><br>
1623  * <p>
1624  * In order for the browser to process the returned data, the server must wrap the data object
1625  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
1626  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
1627  * depending on whether the callback name was passed:
1628  * <p>
1629  * <pre><code>
1630 boolean scriptTag = false;
1631 String cb = request.getParameter("callback");
1632 if (cb != null) {
1633     scriptTag = true;
1634     response.setContentType("text/javascript");
1635 } else {
1636     response.setContentType("application/x-json");
1637 }
1638 Writer out = response.getWriter();
1639 if (scriptTag) {
1640     out.write(cb + "(");
1641 }
1642 out.print(dataBlock.toJsonString());
1643 if (scriptTag) {
1644     out.write(");");
1645 }
1646 </pre></code>
1647  *
1648  * @constructor
1649  * @param {Object} config A configuration object.
1650  */
1651 Roo.data.ScriptTagProxy = function(config){
1652     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
1653     Roo.apply(this, config);
1654     this.head = document.getElementsByTagName("head")[0];
1655 };
1656
1657 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
1658
1659 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
1660     /**
1661      * @cfg {String} url The URL from which to request the data object.
1662      */
1663     /**
1664      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
1665      */
1666     timeout : 30000,
1667     /**
1668      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
1669      * the server the name of the callback function set up by the load call to process the returned data object.
1670      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
1671      * javascript output which calls this named function passing the data object as its only parameter.
1672      */
1673     callbackParam : "callback",
1674     /**
1675      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
1676      * name to the request.
1677      */
1678     nocache : true,
1679
1680     /**
1681      * Load data from the configured URL, read the data object into
1682      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1683      * process that block using the passed callback.
1684      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1685      * for the request to the remote server.
1686      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1687      * object into a block of Roo.data.Records.
1688      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1689      * The function must be passed <ul>
1690      * <li>The Record block object</li>
1691      * <li>The "arg" argument from the load function</li>
1692      * <li>A boolean success indicator</li>
1693      * </ul>
1694      * @param {Object} scope The scope in which to call the callback
1695      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1696      */
1697     load : function(params, reader, callback, scope, arg){
1698         if(this.fireEvent("beforeload", this, params) !== false){
1699
1700             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
1701
1702             var url = this.url;
1703             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
1704             if(this.nocache){
1705                 url += "&_dc=" + (new Date().getTime());
1706             }
1707             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
1708             var trans = {
1709                 id : transId,
1710                 cb : "stcCallback"+transId,
1711                 scriptId : "stcScript"+transId,
1712                 params : params,
1713                 arg : arg,
1714                 url : url,
1715                 callback : callback,
1716                 scope : scope,
1717                 reader : reader
1718             };
1719             var conn = this;
1720
1721             window[trans.cb] = function(o){
1722                 conn.handleResponse(o, trans);
1723             };
1724
1725             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
1726
1727             if(this.autoAbort !== false){
1728                 this.abort();
1729             }
1730
1731             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
1732
1733             var script = document.createElement("script");
1734             script.setAttribute("src", url);
1735             script.setAttribute("type", "text/javascript");
1736             script.setAttribute("id", trans.scriptId);
1737             this.head.appendChild(script);
1738
1739             this.trans = trans;
1740         }else{
1741             callback.call(scope||this, null, arg, false);
1742         }
1743     },
1744
1745     // private
1746     isLoading : function(){
1747         return this.trans ? true : false;
1748     },
1749
1750     /**
1751      * Abort the current server request.
1752      */
1753     abort : function(){
1754         if(this.isLoading()){
1755             this.destroyTrans(this.trans);
1756         }
1757     },
1758
1759     // private
1760     destroyTrans : function(trans, isLoaded){
1761         this.head.removeChild(document.getElementById(trans.scriptId));
1762         clearTimeout(trans.timeoutId);
1763         if(isLoaded){
1764             window[trans.cb] = undefined;
1765             try{
1766                 delete window[trans.cb];
1767             }catch(e){}
1768         }else{
1769             // if hasn't been loaded, wait for load to remove it to prevent script error
1770             window[trans.cb] = function(){
1771                 window[trans.cb] = undefined;
1772                 try{
1773                     delete window[trans.cb];
1774                 }catch(e){}
1775             };
1776         }
1777     },
1778
1779     // private
1780     handleResponse : function(o, trans){
1781         this.trans = false;
1782         this.destroyTrans(trans, true);
1783         var result;
1784         try {
1785             result = trans.reader.readRecords(o);
1786         }catch(e){
1787             this.fireEvent("loadexception", this, o, trans.arg, e);
1788             trans.callback.call(trans.scope||window, null, trans.arg, false);
1789             return;
1790         }
1791         this.fireEvent("load", this, o, trans.arg);
1792         trans.callback.call(trans.scope||window, result, trans.arg, true);
1793     },
1794
1795     // private
1796     handleFailure : function(trans){
1797         this.trans = false;
1798         this.destroyTrans(trans, false);
1799         this.fireEvent("loadexception", this, null, trans.arg);
1800         trans.callback.call(trans.scope||window, null, trans.arg, false);
1801     }
1802 });/*
1803  * Based on:
1804  * Ext JS Library 1.1.1
1805  * Copyright(c) 2006-2007, Ext JS, LLC.
1806  *
1807  * Originally Released Under LGPL - original licence link has changed is not relivant.
1808  *
1809  * Fork - LGPL
1810  * <script type="text/javascript">
1811  */
1812
1813 /**
1814  * @class Roo.data.JsonReader
1815  * @extends Roo.data.DataReader
1816  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
1817  * based on mappings in a provided Roo.data.Record constructor.
1818  * 
1819  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
1820  * in the reply previously. 
1821  * 
1822  * <p>
1823  * Example code:
1824  * <pre><code>
1825 var RecordDef = Roo.data.Record.create([
1826     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1827     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
1828 ]);
1829 var myReader = new Roo.data.JsonReader({
1830     totalProperty: "results",    // The property which contains the total dataset size (optional)
1831     root: "rows",                // The property which contains an Array of row objects
1832     id: "id"                     // The property within each row object that provides an ID for the record (optional)
1833 }, RecordDef);
1834 </code></pre>
1835  * <p>
1836  * This would consume a JSON file like this:
1837  * <pre><code>
1838 { 'results': 2, 'rows': [
1839     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
1840     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
1841 }
1842 </code></pre>
1843  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
1844  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
1845  * paged from the remote server.
1846  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
1847  * @cfg {String} root name of the property which contains the Array of row objects.
1848  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
1849  * @cfg {Array} fields Array of field definition objects
1850  * @constructor
1851  * Create a new JsonReader
1852  * @param {Object} meta Metadata configuration options
1853  * @param {Object} recordType Either an Array of field definition objects,
1854  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
1855  */
1856 Roo.data.JsonReader = function(meta, recordType){
1857     
1858     meta = meta || {};
1859     // set some defaults:
1860     Roo.applyIf(meta, {
1861         totalProperty: 'total',
1862         successProperty : 'success',
1863         root : 'data',
1864         id : 'id'
1865     });
1866     
1867     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
1868 };
1869 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
1870     
1871     readerType : 'Json',
1872     
1873     /**
1874      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
1875      * Used by Store query builder to append _requestMeta to params.
1876      * 
1877      */
1878     metaFromRemote : false,
1879     /**
1880      * This method is only used by a DataProxy which has retrieved data from a remote server.
1881      * @param {Object} response The XHR object which contains the JSON data in its responseText.
1882      * @return {Object} data A data block which is used by an Roo.data.Store object as
1883      * a cache of Roo.data.Records.
1884      */
1885     read : function(response){
1886         var json = response.responseText;
1887        
1888         var o = /* eval:var:o */ eval("("+json+")");
1889         if(!o) {
1890             throw {message: "JsonReader.read: Json object not found"};
1891         }
1892         
1893         if(o.metaData){
1894             
1895             delete this.ef;
1896             this.metaFromRemote = true;
1897             this.meta = o.metaData;
1898             this.recordType = Roo.data.Record.create(o.metaData.fields);
1899             this.onMetaChange(this.meta, this.recordType, o);
1900         }
1901         return this.readRecords(o);
1902     },
1903
1904     // private function a store will implement
1905     onMetaChange : function(meta, recordType, o){
1906
1907     },
1908
1909     /**
1910          * @ignore
1911          */
1912     simpleAccess: function(obj, subsc) {
1913         return obj[subsc];
1914     },
1915
1916         /**
1917          * @ignore
1918          */
1919     getJsonAccessor: function(){
1920         var re = /[\[\.]/;
1921         return function(expr) {
1922             try {
1923                 return(re.test(expr))
1924                     ? new Function("obj", "return obj." + expr)
1925                     : function(obj){
1926                         return obj[expr];
1927                     };
1928             } catch(e){}
1929             return Roo.emptyFn;
1930         };
1931     }(),
1932
1933     /**
1934      * Create a data block containing Roo.data.Records from an XML document.
1935      * @param {Object} o An object which contains an Array of row objects in the property specified
1936      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
1937      * which contains the total size of the dataset.
1938      * @return {Object} data A data block which is used by an Roo.data.Store object as
1939      * a cache of Roo.data.Records.
1940      */
1941     readRecords : function(o){
1942         /**
1943          * After any data loads, the raw JSON data is available for further custom processing.
1944          * @type Object
1945          */
1946         this.o = o;
1947         var s = this.meta, Record = this.recordType,
1948             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
1949
1950 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
1951         if (!this.ef) {
1952             if(s.totalProperty) {
1953                     this.getTotal = this.getJsonAccessor(s.totalProperty);
1954                 }
1955                 if(s.successProperty) {
1956                     this.getSuccess = this.getJsonAccessor(s.successProperty);
1957                 }
1958                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
1959                 if (s.id) {
1960                         var g = this.getJsonAccessor(s.id);
1961                         this.getId = function(rec) {
1962                                 var r = g(rec);  
1963                                 return (r === undefined || r === "") ? null : r;
1964                         };
1965                 } else {
1966                         this.getId = function(){return null;};
1967                 }
1968             this.ef = [];
1969             for(var jj = 0; jj < fl; jj++){
1970                 f = fi[jj];
1971                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
1972                 this.ef[jj] = this.getJsonAccessor(map);
1973             }
1974         }
1975
1976         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
1977         if(s.totalProperty){
1978             var vt = parseInt(this.getTotal(o), 10);
1979             if(!isNaN(vt)){
1980                 totalRecords = vt;
1981             }
1982         }
1983         if(s.successProperty){
1984             var vs = this.getSuccess(o);
1985             if(vs === false || vs === 'false'){
1986                 success = false;
1987             }
1988         }
1989         var records = [];
1990         for(var i = 0; i < c; i++){
1991             var n = root[i];
1992             var values = {};
1993             var id = this.getId(n);
1994             for(var j = 0; j < fl; j++){
1995                 f = fi[j];
1996                                 var v = this.ef[j](n);
1997                                 if (!f.convert) {
1998                                         Roo.log('missing convert for ' + f.name);
1999                                         Roo.log(f);
2000                                         continue;
2001                                 }
2002                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
2003             }
2004                         if (!Record) {
2005                                 return {
2006                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
2007                                         success : false,
2008                                         records : [],
2009                                         totalRecords : 0
2010                                 };
2011                         }
2012             var record = new Record(values, id);
2013             record.json = n;
2014             records[i] = record;
2015         }
2016         return {
2017             raw : o,
2018             success : success,
2019             records : records,
2020             totalRecords : totalRecords
2021         };
2022     },
2023     // used when loading children.. @see loadDataFromChildren
2024     toLoadData: function(rec)
2025     {
2026         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
2027         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
2028         return { data : data, total : data.length };
2029         
2030     }
2031 });/*
2032  * Based on:
2033  * Ext JS Library 1.1.1
2034  * Copyright(c) 2006-2007, Ext JS, LLC.
2035  *
2036  * Originally Released Under LGPL - original licence link has changed is not relivant.
2037  *
2038  * Fork - LGPL
2039  * <script type="text/javascript">
2040  */
2041
2042 /**
2043  * @class Roo.data.XmlReader
2044  * @extends Roo.data.DataReader
2045  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
2046  * based on mappings in a provided Roo.data.Record constructor.<br><br>
2047  * <p>
2048  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
2049  * header in the HTTP response must be set to "text/xml".</em>
2050  * <p>
2051  * Example code:
2052  * <pre><code>
2053 var RecordDef = Roo.data.Record.create([
2054    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
2055    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
2056 ]);
2057 var myReader = new Roo.data.XmlReader({
2058    totalRecords: "results", // The element which contains the total dataset size (optional)
2059    record: "row",           // The repeated element which contains row information
2060    id: "id"                 // The element within the row that provides an ID for the record (optional)
2061 }, RecordDef);
2062 </code></pre>
2063  * <p>
2064  * This would consume an XML file like this:
2065  * <pre><code>
2066 &lt;?xml?>
2067 &lt;dataset>
2068  &lt;results>2&lt;/results>
2069  &lt;row>
2070    &lt;id>1&lt;/id>
2071    &lt;name>Bill&lt;/name>
2072    &lt;occupation>Gardener&lt;/occupation>
2073  &lt;/row>
2074  &lt;row>
2075    &lt;id>2&lt;/id>
2076    &lt;name>Ben&lt;/name>
2077    &lt;occupation>Horticulturalist&lt;/occupation>
2078  &lt;/row>
2079 &lt;/dataset>
2080 </code></pre>
2081  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
2082  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
2083  * paged from the remote server.
2084  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
2085  * @cfg {String} success The DomQuery path to the success attribute used by forms.
2086  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
2087  * a record identifier value.
2088  * @constructor
2089  * Create a new XmlReader
2090  * @param {Object} meta Metadata configuration options
2091  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
2092  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
2093  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
2094  */
2095 Roo.data.XmlReader = function(meta, recordType){
2096     meta = meta || {};
2097     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2098 };
2099 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
2100     
2101     readerType : 'Xml',
2102     
2103     /**
2104      * This method is only used by a DataProxy which has retrieved data from a remote server.
2105          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
2106          * to contain a method called 'responseXML' that returns an XML document object.
2107      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2108      * a cache of Roo.data.Records.
2109      */
2110     read : function(response){
2111         var doc = response.responseXML;
2112         if(!doc) {
2113             throw {message: "XmlReader.read: XML Document not available"};
2114         }
2115         return this.readRecords(doc);
2116     },
2117
2118     /**
2119      * Create a data block containing Roo.data.Records from an XML document.
2120          * @param {Object} doc A parsed XML document.
2121      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2122      * a cache of Roo.data.Records.
2123      */
2124     readRecords : function(doc){
2125         /**
2126          * After any data loads/reads, the raw XML Document is available for further custom processing.
2127          * @type XMLDocument
2128          */
2129         this.xmlData = doc;
2130         var root = doc.documentElement || doc;
2131         var q = Roo.DomQuery;
2132         var recordType = this.recordType, fields = recordType.prototype.fields;
2133         var sid = this.meta.id;
2134         var totalRecords = 0, success = true;
2135         if(this.meta.totalRecords){
2136             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
2137         }
2138         
2139         if(this.meta.success){
2140             var sv = q.selectValue(this.meta.success, root, true);
2141             success = sv !== false && sv !== 'false';
2142         }
2143         var records = [];
2144         var ns = q.select(this.meta.record, root);
2145         for(var i = 0, len = ns.length; i < len; i++) {
2146                 var n = ns[i];
2147                 var values = {};
2148                 var id = sid ? q.selectValue(sid, n) : undefined;
2149                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2150                     var f = fields.items[j];
2151                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
2152                     v = f.convert(v);
2153                     values[f.name] = v;
2154                 }
2155                 var record = new recordType(values, id);
2156                 record.node = n;
2157                 records[records.length] = record;
2158             }
2159
2160             return {
2161                 success : success,
2162                 records : records,
2163                 totalRecords : totalRecords || records.length
2164             };
2165     }
2166 });/*
2167  * Based on:
2168  * Ext JS Library 1.1.1
2169  * Copyright(c) 2006-2007, Ext JS, LLC.
2170  *
2171  * Originally Released Under LGPL - original licence link has changed is not relivant.
2172  *
2173  * Fork - LGPL
2174  * <script type="text/javascript">
2175  */
2176
2177 /**
2178  * @class Roo.data.ArrayReader
2179  * @extends Roo.data.DataReader
2180  * Data reader class to create an Array of Roo.data.Record objects from an Array.
2181  * Each element of that Array represents a row of data fields. The
2182  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
2183  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
2184  * <p>
2185  * Example code:.
2186  * <pre><code>
2187 var RecordDef = Roo.data.Record.create([
2188     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
2189     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
2190 ]);
2191 var myReader = new Roo.data.ArrayReader({
2192     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
2193 }, RecordDef);
2194 </code></pre>
2195  * <p>
2196  * This would consume an Array like this:
2197  * <pre><code>
2198 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
2199   </code></pre>
2200  
2201  * @constructor
2202  * Create a new JsonReader
2203  * @param {Object} meta Metadata configuration options.
2204  * @param {Object|Array} recordType Either an Array of field definition objects
2205  * 
2206  * @cfg {Array} fields Array of field definition objects
2207  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
2208  * as specified to {@link Roo.data.Record#create},
2209  * or an {@link Roo.data.Record} object
2210  *
2211  * 
2212  * created using {@link Roo.data.Record#create}.
2213  */
2214 Roo.data.ArrayReader = function(meta, recordType)
2215 {    
2216     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2217 };
2218
2219 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
2220     
2221       /**
2222      * Create a data block containing Roo.data.Records from an XML document.
2223      * @param {Object} o An Array of row objects which represents the dataset.
2224      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
2225      * a cache of Roo.data.Records.
2226      */
2227     readRecords : function(o)
2228     {
2229         var sid = this.meta ? this.meta.id : null;
2230         var recordType = this.recordType, fields = recordType.prototype.fields;
2231         var records = [];
2232         var root = o;
2233         for(var i = 0; i < root.length; i++){
2234             var n = root[i];
2235             var values = {};
2236             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
2237             for(var j = 0, jlen = fields.length; j < jlen; j++){
2238                 var f = fields.items[j];
2239                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
2240                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
2241                 v = f.convert(v);
2242                 values[f.name] = v;
2243             }
2244             var record = new recordType(values, id);
2245             record.json = n;
2246             records[records.length] = record;
2247         }
2248         return {
2249             records : records,
2250             totalRecords : records.length
2251         };
2252     },
2253     // used when loading children.. @see loadDataFromChildren
2254     toLoadData: function(rec)
2255     {
2256         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
2257         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
2258         
2259     }
2260     
2261     
2262 });/*
2263  * Based on:
2264  * Ext JS Library 1.1.1
2265  * Copyright(c) 2006-2007, Ext JS, LLC.
2266  *
2267  * Originally Released Under LGPL - original licence link has changed is not relivant.
2268  *
2269  * Fork - LGPL
2270  * <script type="text/javascript">
2271  */
2272
2273
2274 /**
2275  * @class Roo.data.Tree
2276  * @extends Roo.util.Observable
2277  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
2278  * in the tree have most standard DOM functionality.
2279  * @constructor
2280  * @param {Node} root (optional) The root node
2281  */
2282 Roo.data.Tree = function(root){
2283    this.nodeHash = {};
2284    /**
2285     * The root node for this tree
2286     * @type Node
2287     */
2288    this.root = null;
2289    if(root){
2290        this.setRootNode(root);
2291    }
2292    this.addEvents({
2293        /**
2294         * @event append
2295         * Fires when a new child node is appended to a node in this tree.
2296         * @param {Tree} tree The owner tree
2297         * @param {Node} parent The parent node
2298         * @param {Node} node The newly appended node
2299         * @param {Number} index The index of the newly appended node
2300         */
2301        "append" : true,
2302        /**
2303         * @event remove
2304         * Fires when a child node is removed from a node in this tree.
2305         * @param {Tree} tree The owner tree
2306         * @param {Node} parent The parent node
2307         * @param {Node} node The child node removed
2308         */
2309        "remove" : true,
2310        /**
2311         * @event move
2312         * Fires when a node is moved to a new location in the tree
2313         * @param {Tree} tree The owner tree
2314         * @param {Node} node The node moved
2315         * @param {Node} oldParent The old parent of this node
2316         * @param {Node} newParent The new parent of this node
2317         * @param {Number} index The index it was moved to
2318         */
2319        "move" : true,
2320        /**
2321         * @event insert
2322         * Fires when a new child node is inserted in a node in this tree.
2323         * @param {Tree} tree The owner tree
2324         * @param {Node} parent The parent node
2325         * @param {Node} node The child node inserted
2326         * @param {Node} refNode The child node the node was inserted before
2327         */
2328        "insert" : true,
2329        /**
2330         * @event beforeappend
2331         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
2332         * @param {Tree} tree The owner tree
2333         * @param {Node} parent The parent node
2334         * @param {Node} node The child node to be appended
2335         */
2336        "beforeappend" : true,
2337        /**
2338         * @event beforeremove
2339         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
2340         * @param {Tree} tree The owner tree
2341         * @param {Node} parent The parent node
2342         * @param {Node} node The child node to be removed
2343         */
2344        "beforeremove" : true,
2345        /**
2346         * @event beforemove
2347         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
2348         * @param {Tree} tree The owner tree
2349         * @param {Node} node The node being moved
2350         * @param {Node} oldParent The parent of the node
2351         * @param {Node} newParent The new parent the node is moving to
2352         * @param {Number} index The index it is being moved to
2353         */
2354        "beforemove" : true,
2355        /**
2356         * @event beforeinsert
2357         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
2358         * @param {Tree} tree The owner tree
2359         * @param {Node} parent The parent node
2360         * @param {Node} node The child node to be inserted
2361         * @param {Node} refNode The child node the node is being inserted before
2362         */
2363        "beforeinsert" : true
2364    });
2365
2366     Roo.data.Tree.superclass.constructor.call(this);
2367 };
2368
2369 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
2370     pathSeparator: "/",
2371
2372     proxyNodeEvent : function(){
2373         return this.fireEvent.apply(this, arguments);
2374     },
2375
2376     /**
2377      * Returns the root node for this tree.
2378      * @return {Node}
2379      */
2380     getRootNode : function(){
2381         return this.root;
2382     },
2383
2384     /**
2385      * Sets the root node for this tree.
2386      * @param {Node} node
2387      * @return {Node}
2388      */
2389     setRootNode : function(node){
2390         this.root = node;
2391         node.ownerTree = this;
2392         node.isRoot = true;
2393         this.registerNode(node);
2394         return node;
2395     },
2396
2397     /**
2398      * Gets a node in this tree by its id.
2399      * @param {String} id
2400      * @return {Node}
2401      */
2402     getNodeById : function(id){
2403         return this.nodeHash[id];
2404     },
2405
2406     registerNode : function(node){
2407         this.nodeHash[node.id] = node;
2408     },
2409
2410     unregisterNode : function(node){
2411         delete this.nodeHash[node.id];
2412     },
2413
2414     toString : function(){
2415         return "[Tree"+(this.id?" "+this.id:"")+"]";
2416     }
2417 });
2418
2419 /**
2420  * @class Roo.data.Node
2421  * @extends Roo.util.Observable
2422  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
2423  * @cfg {String} id The id for this node. If one is not specified, one is generated.
2424  * @constructor
2425  * @param {Object} attributes The attributes/config for the node
2426  */
2427 Roo.data.Node = function(attributes){
2428     /**
2429      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
2430      * @type {Object}
2431      */
2432     this.attributes = attributes || {};
2433     this.leaf = this.attributes.leaf;
2434     /**
2435      * The node id. @type String
2436      */
2437     this.id = this.attributes.id;
2438     if(!this.id){
2439         this.id = Roo.id(null, "ynode-");
2440         this.attributes.id = this.id;
2441     }
2442      
2443     
2444     /**
2445      * All child nodes of this node. @type Array
2446      */
2447     this.childNodes = [];
2448     if(!this.childNodes.indexOf){ // indexOf is a must
2449         this.childNodes.indexOf = function(o){
2450             for(var i = 0, len = this.length; i < len; i++){
2451                 if(this[i] == o) {
2452                     return i;
2453                 }
2454             }
2455             return -1;
2456         };
2457     }
2458     /**
2459      * The parent node for this node. @type Node
2460      */
2461     this.parentNode = null;
2462     /**
2463      * The first direct child node of this node, or null if this node has no child nodes. @type Node
2464      */
2465     this.firstChild = null;
2466     /**
2467      * The last direct child node of this node, or null if this node has no child nodes. @type Node
2468      */
2469     this.lastChild = null;
2470     /**
2471      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
2472      */
2473     this.previousSibling = null;
2474     /**
2475      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
2476      */
2477     this.nextSibling = null;
2478
2479     this.addEvents({
2480        /**
2481         * @event append
2482         * Fires when a new child node is appended
2483         * @param {Tree} tree The owner tree
2484         * @param {Node} this This node
2485         * @param {Node} node The newly appended node
2486         * @param {Number} index The index of the newly appended node
2487         */
2488        "append" : true,
2489        /**
2490         * @event remove
2491         * Fires when a child node is removed
2492         * @param {Tree} tree The owner tree
2493         * @param {Node} this This node
2494         * @param {Node} node The removed node
2495         */
2496        "remove" : true,
2497        /**
2498         * @event move
2499         * Fires when this node is moved to a new location in the tree
2500         * @param {Tree} tree The owner tree
2501         * @param {Node} this This node
2502         * @param {Node} oldParent The old parent of this node
2503         * @param {Node} newParent The new parent of this node
2504         * @param {Number} index The index it was moved to
2505         */
2506        "move" : true,
2507        /**
2508         * @event insert
2509         * Fires when a new child node is inserted.
2510         * @param {Tree} tree The owner tree
2511         * @param {Node} this This node
2512         * @param {Node} node The child node inserted
2513         * @param {Node} refNode The child node the node was inserted before
2514         */
2515        "insert" : true,
2516        /**
2517         * @event beforeappend
2518         * Fires before a new child is appended, return false to cancel the append.
2519         * @param {Tree} tree The owner tree
2520         * @param {Node} this This node
2521         * @param {Node} node The child node to be appended
2522         */
2523        "beforeappend" : true,
2524        /**
2525         * @event beforeremove
2526         * Fires before a child is removed, return false to cancel the remove.
2527         * @param {Tree} tree The owner tree
2528         * @param {Node} this This node
2529         * @param {Node} node The child node to be removed
2530         */
2531        "beforeremove" : true,
2532        /**
2533         * @event beforemove
2534         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
2535         * @param {Tree} tree The owner tree
2536         * @param {Node} this This node
2537         * @param {Node} oldParent The parent of this node
2538         * @param {Node} newParent The new parent this node is moving to
2539         * @param {Number} index The index it is being moved to
2540         */
2541        "beforemove" : true,
2542        /**
2543         * @event beforeinsert
2544         * Fires before a new child is inserted, return false to cancel the insert.
2545         * @param {Tree} tree The owner tree
2546         * @param {Node} this This node
2547         * @param {Node} node The child node to be inserted
2548         * @param {Node} refNode The child node the node is being inserted before
2549         */
2550        "beforeinsert" : true
2551    });
2552     this.listeners = this.attributes.listeners;
2553     Roo.data.Node.superclass.constructor.call(this);
2554 };
2555
2556 Roo.extend(Roo.data.Node, Roo.util.Observable, {
2557     fireEvent : function(evtName){
2558         // first do standard event for this node
2559         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
2560             return false;
2561         }
2562         // then bubble it up to the tree if the event wasn't cancelled
2563         var ot = this.getOwnerTree();
2564         if(ot){
2565             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
2566                 return false;
2567             }
2568         }
2569         return true;
2570     },
2571
2572     /**
2573      * Returns true if this node is a leaf
2574      * @return {Boolean}
2575      */
2576     isLeaf : function(){
2577         return this.leaf === true;
2578     },
2579
2580     // private
2581     setFirstChild : function(node){
2582         this.firstChild = node;
2583     },
2584
2585     //private
2586     setLastChild : function(node){
2587         this.lastChild = node;
2588     },
2589
2590
2591     /**
2592      * Returns true if this node is the last child of its parent
2593      * @return {Boolean}
2594      */
2595     isLast : function(){
2596        return (!this.parentNode ? true : this.parentNode.lastChild == this);
2597     },
2598
2599     /**
2600      * Returns true if this node is the first child of its parent
2601      * @return {Boolean}
2602      */
2603     isFirst : function(){
2604        return (!this.parentNode ? true : this.parentNode.firstChild == this);
2605     },
2606
2607     hasChildNodes : function(){
2608         return !this.isLeaf() && this.childNodes.length > 0;
2609     },
2610
2611     /**
2612      * Insert node(s) as the last child node of this node.
2613      * @param {Node/Array} node The node or Array of nodes to append
2614      * @return {Node} The appended node if single append, or null if an array was passed
2615      */
2616     appendChild : function(node){
2617         var multi = false;
2618         if(node instanceof Array){
2619             multi = node;
2620         }else if(arguments.length > 1){
2621             multi = arguments;
2622         }
2623         
2624         // if passed an array or multiple args do them one by one
2625         if(multi){
2626             for(var i = 0, len = multi.length; i < len; i++) {
2627                 this.appendChild(multi[i]);
2628             }
2629         }else{
2630             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
2631                 return false;
2632             }
2633             var index = this.childNodes.length;
2634             var oldParent = node.parentNode;
2635             // it's a move, make sure we move it cleanly
2636             if(oldParent){
2637                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
2638                     return false;
2639                 }
2640                 oldParent.removeChild(node);
2641             }
2642             
2643             index = this.childNodes.length;
2644             if(index == 0){
2645                 this.setFirstChild(node);
2646             }
2647             this.childNodes.push(node);
2648             node.parentNode = this;
2649             var ps = this.childNodes[index-1];
2650             if(ps){
2651                 node.previousSibling = ps;
2652                 ps.nextSibling = node;
2653             }else{
2654                 node.previousSibling = null;
2655             }
2656             node.nextSibling = null;
2657             this.setLastChild(node);
2658             node.setOwnerTree(this.getOwnerTree());
2659             this.fireEvent("append", this.ownerTree, this, node, index);
2660             if(this.ownerTree) {
2661                 this.ownerTree.fireEvent("appendnode", this, node, index);
2662             }
2663             if(oldParent){
2664                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
2665             }
2666             return node;
2667         }
2668     },
2669
2670     /**
2671      * Removes a child node from this node.
2672      * @param {Node} node The node to remove
2673      * @return {Node} The removed node
2674      */
2675     removeChild : function(node){
2676         var index = this.childNodes.indexOf(node);
2677         if(index == -1){
2678             return false;
2679         }
2680         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
2681             return false;
2682         }
2683
2684         // remove it from childNodes collection
2685         this.childNodes.splice(index, 1);
2686
2687         // update siblings
2688         if(node.previousSibling){
2689             node.previousSibling.nextSibling = node.nextSibling;
2690         }
2691         if(node.nextSibling){
2692             node.nextSibling.previousSibling = node.previousSibling;
2693         }
2694
2695         // update child refs
2696         if(this.firstChild == node){
2697             this.setFirstChild(node.nextSibling);
2698         }
2699         if(this.lastChild == node){
2700             this.setLastChild(node.previousSibling);
2701         }
2702
2703         node.setOwnerTree(null);
2704         // clear any references from the node
2705         node.parentNode = null;
2706         node.previousSibling = null;
2707         node.nextSibling = null;
2708         this.fireEvent("remove", this.ownerTree, this, node);
2709         return node;
2710     },
2711
2712     /**
2713      * Inserts the first node before the second node in this nodes childNodes collection.
2714      * @param {Node} node The node to insert
2715      * @param {Node} refNode The node to insert before (if null the node is appended)
2716      * @return {Node} The inserted node
2717      */
2718     insertBefore : function(node, refNode){
2719         if(!refNode){ // like standard Dom, refNode can be null for append
2720             return this.appendChild(node);
2721         }
2722         // nothing to do
2723         if(node == refNode){
2724             return false;
2725         }
2726
2727         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
2728             return false;
2729         }
2730         var index = this.childNodes.indexOf(refNode);
2731         var oldParent = node.parentNode;
2732         var refIndex = index;
2733
2734         // when moving internally, indexes will change after remove
2735         if(oldParent == this && this.childNodes.indexOf(node) < index){
2736             refIndex--;
2737         }
2738
2739         // it's a move, make sure we move it cleanly
2740         if(oldParent){
2741             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
2742                 return false;
2743             }
2744             oldParent.removeChild(node);
2745         }
2746         if(refIndex == 0){
2747             this.setFirstChild(node);
2748         }
2749         this.childNodes.splice(refIndex, 0, node);
2750         node.parentNode = this;
2751         var ps = this.childNodes[refIndex-1];
2752         if(ps){
2753             node.previousSibling = ps;
2754             ps.nextSibling = node;
2755         }else{
2756             node.previousSibling = null;
2757         }
2758         node.nextSibling = refNode;
2759         refNode.previousSibling = node;
2760         node.setOwnerTree(this.getOwnerTree());
2761         this.fireEvent("insert", this.ownerTree, this, node, refNode);
2762         if(oldParent){
2763             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
2764         }
2765         return node;
2766     },
2767
2768     /**
2769      * Returns the child node at the specified index.
2770      * @param {Number} index
2771      * @return {Node}
2772      */
2773     item : function(index){
2774         return this.childNodes[index];
2775     },
2776
2777     /**
2778      * Replaces one child node in this node with another.
2779      * @param {Node} newChild The replacement node
2780      * @param {Node} oldChild The node to replace
2781      * @return {Node} The replaced node
2782      */
2783     replaceChild : function(newChild, oldChild){
2784         this.insertBefore(newChild, oldChild);
2785         this.removeChild(oldChild);
2786         return oldChild;
2787     },
2788
2789     /**
2790      * Returns the index of a child node
2791      * @param {Node} node
2792      * @return {Number} The index of the node or -1 if it was not found
2793      */
2794     indexOf : function(child){
2795         return this.childNodes.indexOf(child);
2796     },
2797
2798     /**
2799      * Returns the tree this node is in.
2800      * @return {Tree}
2801      */
2802     getOwnerTree : function(){
2803         // if it doesn't have one, look for one
2804         if(!this.ownerTree){
2805             var p = this;
2806             while(p){
2807                 if(p.ownerTree){
2808                     this.ownerTree = p.ownerTree;
2809                     break;
2810                 }
2811                 p = p.parentNode;
2812             }
2813         }
2814         return this.ownerTree;
2815     },
2816
2817     /**
2818      * Returns depth of this node (the root node has a depth of 0)
2819      * @return {Number}
2820      */
2821     getDepth : function(){
2822         var depth = 0;
2823         var p = this;
2824         while(p.parentNode){
2825             ++depth;
2826             p = p.parentNode;
2827         }
2828         return depth;
2829     },
2830
2831     // private
2832     setOwnerTree : function(tree){
2833         // if it's move, we need to update everyone
2834         if(tree != this.ownerTree){
2835             if(this.ownerTree){
2836                 this.ownerTree.unregisterNode(this);
2837             }
2838             this.ownerTree = tree;
2839             var cs = this.childNodes;
2840             for(var i = 0, len = cs.length; i < len; i++) {
2841                 cs[i].setOwnerTree(tree);
2842             }
2843             if(tree){
2844                 tree.registerNode(this);
2845             }
2846         }
2847     },
2848
2849     /**
2850      * Returns the path for this node. The path can be used to expand or select this node programmatically.
2851      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
2852      * @return {String} The path
2853      */
2854     getPath : function(attr){
2855         attr = attr || "id";
2856         var p = this.parentNode;
2857         var b = [this.attributes[attr]];
2858         while(p){
2859             b.unshift(p.attributes[attr]);
2860             p = p.parentNode;
2861         }
2862         var sep = this.getOwnerTree().pathSeparator;
2863         return sep + b.join(sep);
2864     },
2865
2866     /**
2867      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2868      * function call will be the scope provided or the current node. The arguments to the function
2869      * will be the args provided or the current node. If the function returns false at any point,
2870      * the bubble is stopped.
2871      * @param {Function} fn The function to call
2872      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2873      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2874      */
2875     bubble : function(fn, scope, args){
2876         var p = this;
2877         while(p){
2878             if(fn.call(scope || p, args || p) === false){
2879                 break;
2880             }
2881             p = p.parentNode;
2882         }
2883     },
2884
2885     /**
2886      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2887      * function call will be the scope provided or the current node. The arguments to the function
2888      * will be the args provided or the current node. If the function returns false at any point,
2889      * the cascade is stopped on that branch.
2890      * @param {Function} fn The function to call
2891      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2892      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2893      */
2894     cascade : function(fn, scope, args){
2895         if(fn.call(scope || this, args || this) !== false){
2896             var cs = this.childNodes;
2897             for(var i = 0, len = cs.length; i < len; i++) {
2898                 cs[i].cascade(fn, scope, args);
2899             }
2900         }
2901     },
2902
2903     /**
2904      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
2905      * function call will be the scope provided or the current node. The arguments to the function
2906      * will be the args provided or the current node. If the function returns false at any point,
2907      * the iteration stops.
2908      * @param {Function} fn The function to call
2909      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2910      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2911      */
2912     eachChild : function(fn, scope, args){
2913         var cs = this.childNodes;
2914         for(var i = 0, len = cs.length; i < len; i++) {
2915                 if(fn.call(scope || this, args || cs[i]) === false){
2916                     break;
2917                 }
2918         }
2919     },
2920
2921     /**
2922      * Finds the first child that has the attribute with the specified value.
2923      * @param {String} attribute The attribute name
2924      * @param {Mixed} value The value to search for
2925      * @return {Node} The found child or null if none was found
2926      */
2927     findChild : function(attribute, value){
2928         var cs = this.childNodes;
2929         for(var i = 0, len = cs.length; i < len; i++) {
2930                 if(cs[i].attributes[attribute] == value){
2931                     return cs[i];
2932                 }
2933         }
2934         return null;
2935     },
2936
2937     /**
2938      * Finds the first child by a custom function. The child matches if the function passed
2939      * returns true.
2940      * @param {Function} fn
2941      * @param {Object} scope (optional)
2942      * @return {Node} The found child or null if none was found
2943      */
2944     findChildBy : function(fn, scope){
2945         var cs = this.childNodes;
2946         for(var i = 0, len = cs.length; i < len; i++) {
2947                 if(fn.call(scope||cs[i], cs[i]) === true){
2948                     return cs[i];
2949                 }
2950         }
2951         return null;
2952     },
2953
2954     /**
2955      * Sorts this nodes children using the supplied sort function
2956      * @param {Function} fn
2957      * @param {Object} scope (optional)
2958      */
2959     sort : function(fn, scope){
2960         var cs = this.childNodes;
2961         var len = cs.length;
2962         if(len > 0){
2963             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
2964             cs.sort(sortFn);
2965             for(var i = 0; i < len; i++){
2966                 var n = cs[i];
2967                 n.previousSibling = cs[i-1];
2968                 n.nextSibling = cs[i+1];
2969                 if(i == 0){
2970                     this.setFirstChild(n);
2971                 }
2972                 if(i == len-1){
2973                     this.setLastChild(n);
2974                 }
2975             }
2976         }
2977     },
2978
2979     /**
2980      * Returns true if this node is an ancestor (at any point) of the passed node.
2981      * @param {Node} node
2982      * @return {Boolean}
2983      */
2984     contains : function(node){
2985         return node.isAncestor(this);
2986     },
2987
2988     /**
2989      * Returns true if the passed node is an ancestor (at any point) of this node.
2990      * @param {Node} node
2991      * @return {Boolean}
2992      */
2993     isAncestor : function(node){
2994         var p = this.parentNode;
2995         while(p){
2996             if(p == node){
2997                 return true;
2998             }
2999             p = p.parentNode;
3000         }
3001         return false;
3002     },
3003
3004     toString : function(){
3005         return "[Node"+(this.id?" "+this.id:"")+"]";
3006     }
3007 });/*
3008  * Based on:
3009  * Ext JS Library 1.1.1
3010  * Copyright(c) 2006-2007, Ext JS, LLC.
3011  *
3012  * Originally Released Under LGPL - original licence link has changed is not relivant.
3013  *
3014  * Fork - LGPL
3015  * <script type="text/javascript">
3016  */
3017
3018
3019 /**
3020  * @class Roo.Shadow
3021  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
3022  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
3023  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
3024  * @constructor
3025  * Create a new Shadow
3026  * @param {Object} config The config object
3027  */
3028 Roo.Shadow = function(config){
3029     Roo.apply(this, config);
3030     if(typeof this.mode != "string"){
3031         this.mode = this.defaultMode;
3032     }
3033     var o = this.offset, a = {h: 0};
3034     var rad = Math.floor(this.offset/2);
3035     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
3036         case "drop":
3037             a.w = 0;
3038             a.l = a.t = o;
3039             a.t -= 1;
3040             if(Roo.isIE){
3041                 a.l -= this.offset + rad;
3042                 a.t -= this.offset + rad;
3043                 a.w -= rad;
3044                 a.h -= rad;
3045                 a.t += 1;
3046             }
3047         break;
3048         case "sides":
3049             a.w = (o*2);
3050             a.l = -o;
3051             a.t = o-1;
3052             if(Roo.isIE){
3053                 a.l -= (this.offset - rad);
3054                 a.t -= this.offset + rad;
3055                 a.l += 1;
3056                 a.w -= (this.offset - rad)*2;
3057                 a.w -= rad + 1;
3058                 a.h -= 1;
3059             }
3060         break;
3061         case "frame":
3062             a.w = a.h = (o*2);
3063             a.l = a.t = -o;
3064             a.t += 1;
3065             a.h -= 2;
3066             if(Roo.isIE){
3067                 a.l -= (this.offset - rad);
3068                 a.t -= (this.offset - rad);
3069                 a.l += 1;
3070                 a.w -= (this.offset + rad + 1);
3071                 a.h -= (this.offset + rad);
3072                 a.h += 1;
3073             }
3074         break;
3075     };
3076
3077     this.adjusts = a;
3078 };
3079
3080 Roo.Shadow.prototype = {
3081     /**
3082      * @cfg {String} mode
3083      * The shadow display mode.  Supports the following options:<br />
3084      * sides: Shadow displays on both sides and bottom only<br />
3085      * frame: Shadow displays equally on all four sides<br />
3086      * drop: Traditional bottom-right drop shadow (default)
3087      */
3088     mode: false,
3089     /**
3090      * @cfg {String} offset
3091      * The number of pixels to offset the shadow from the element (defaults to 4)
3092      */
3093     offset: 4,
3094
3095     // private
3096     defaultMode: "drop",
3097
3098     /**
3099      * Displays the shadow under the target element
3100      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
3101      */
3102     show : function(target){
3103         target = Roo.get(target);
3104         if(!this.el){
3105             this.el = Roo.Shadow.Pool.pull();
3106             if(this.el.dom.nextSibling != target.dom){
3107                 this.el.insertBefore(target);
3108             }
3109         }
3110         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
3111         if(Roo.isIE){
3112             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
3113         }
3114         this.realign(
3115             target.getLeft(true),
3116             target.getTop(true),
3117             target.getWidth(),
3118             target.getHeight()
3119         );
3120         this.el.dom.style.display = "block";
3121     },
3122
3123     /**
3124      * Returns true if the shadow is visible, else false
3125      */
3126     isVisible : function(){
3127         return this.el ? true : false;  
3128     },
3129
3130     /**
3131      * Direct alignment when values are already available. Show must be called at least once before
3132      * calling this method to ensure it is initialized.
3133      * @param {Number} left The target element left position
3134      * @param {Number} top The target element top position
3135      * @param {Number} width The target element width
3136      * @param {Number} height The target element height
3137      */
3138     realign : function(l, t, w, h){
3139         if(!this.el){
3140             return;
3141         }
3142         var a = this.adjusts, d = this.el.dom, s = d.style;
3143         var iea = 0;
3144         s.left = (l+a.l)+"px";
3145         s.top = (t+a.t)+"px";
3146         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
3147  
3148         if(s.width != sws || s.height != shs){
3149             s.width = sws;
3150             s.height = shs;
3151             if(!Roo.isIE){
3152                 var cn = d.childNodes;
3153                 var sww = Math.max(0, (sw-12))+"px";
3154                 cn[0].childNodes[1].style.width = sww;
3155                 cn[1].childNodes[1].style.width = sww;
3156                 cn[2].childNodes[1].style.width = sww;
3157                 cn[1].style.height = Math.max(0, (sh-12))+"px";
3158             }
3159         }
3160     },
3161
3162     /**
3163      * Hides this shadow
3164      */
3165     hide : function(){
3166         if(this.el){
3167             this.el.dom.style.display = "none";
3168             Roo.Shadow.Pool.push(this.el);
3169             delete this.el;
3170         }
3171     },
3172
3173     /**
3174      * Adjust the z-index of this shadow
3175      * @param {Number} zindex The new z-index
3176      */
3177     setZIndex : function(z){
3178         this.zIndex = z;
3179         if(this.el){
3180             this.el.setStyle("z-index", z);
3181         }
3182     }
3183 };
3184
3185 // Private utility class that manages the internal Shadow cache
3186 Roo.Shadow.Pool = function(){
3187     var p = [];
3188     var markup = Roo.isIE ?
3189                  '<div class="x-ie-shadow"></div>' :
3190                  '<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>';
3191     return {
3192         pull : function(){
3193             var sh = p.shift();
3194             if(!sh){
3195                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
3196                 sh.autoBoxAdjust = false;
3197             }
3198             return sh;
3199         },
3200
3201         push : function(sh){
3202             p.push(sh);
3203         }
3204     };
3205 }();/*
3206  * Based on:
3207  * Ext JS Library 1.1.1
3208  * Copyright(c) 2006-2007, Ext JS, LLC.
3209  *
3210  * Originally Released Under LGPL - original licence link has changed is not relivant.
3211  *
3212  * Fork - LGPL
3213  * <script type="text/javascript">
3214  */
3215
3216
3217 /**
3218  * @class Roo.SplitBar
3219  * @extends Roo.util.Observable
3220  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
3221  * <br><br>
3222  * Usage:
3223  * <pre><code>
3224 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
3225                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
3226 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
3227 split.minSize = 100;
3228 split.maxSize = 600;
3229 split.animate = true;
3230 split.on('moved', splitterMoved);
3231 </code></pre>
3232  * @constructor
3233  * Create a new SplitBar
3234  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
3235  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
3236  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3237  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
3238                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
3239                         position of the SplitBar).
3240  */
3241 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
3242     
3243     /** @private */
3244     this.el = Roo.get(dragElement, true);
3245     this.el.dom.unselectable = "on";
3246     /** @private */
3247     this.resizingEl = Roo.get(resizingElement, true);
3248
3249     /**
3250      * @private
3251      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3252      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
3253      * @type Number
3254      */
3255     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
3256     
3257     /**
3258      * The minimum size of the resizing element. (Defaults to 0)
3259      * @type Number
3260      */
3261     this.minSize = 0;
3262     
3263     /**
3264      * The maximum size of the resizing element. (Defaults to 2000)
3265      * @type Number
3266      */
3267     this.maxSize = 2000;
3268     
3269     /**
3270      * Whether to animate the transition to the new size
3271      * @type Boolean
3272      */
3273     this.animate = false;
3274     
3275     /**
3276      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
3277      * @type Boolean
3278      */
3279     this.useShim = false;
3280     
3281     /** @private */
3282     this.shim = null;
3283     
3284     if(!existingProxy){
3285         /** @private */
3286         this.proxy = Roo.SplitBar.createProxy(this.orientation);
3287     }else{
3288         this.proxy = Roo.get(existingProxy).dom;
3289     }
3290     /** @private */
3291     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
3292     
3293     /** @private */
3294     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
3295     
3296     /** @private */
3297     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
3298     
3299     /** @private */
3300     this.dragSpecs = {};
3301     
3302     /**
3303      * @private The adapter to use to positon and resize elements
3304      */
3305     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
3306     this.adapter.init(this);
3307     
3308     if(this.orientation == Roo.SplitBar.HORIZONTAL){
3309         /** @private */
3310         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
3311         this.el.addClass("x-splitbar-h");
3312     }else{
3313         /** @private */
3314         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
3315         this.el.addClass("x-splitbar-v");
3316     }
3317     
3318     this.addEvents({
3319         /**
3320          * @event resize
3321          * Fires when the splitter is moved (alias for {@link #event-moved})
3322          * @param {Roo.SplitBar} this
3323          * @param {Number} newSize the new width or height
3324          */
3325         "resize" : true,
3326         /**
3327          * @event moved
3328          * Fires when the splitter is moved
3329          * @param {Roo.SplitBar} this
3330          * @param {Number} newSize the new width or height
3331          */
3332         "moved" : true,
3333         /**
3334          * @event beforeresize
3335          * Fires before the splitter is dragged
3336          * @param {Roo.SplitBar} this
3337          */
3338         "beforeresize" : true,
3339
3340         "beforeapply" : true
3341     });
3342
3343     Roo.util.Observable.call(this);
3344 };
3345
3346 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
3347     onStartProxyDrag : function(x, y){
3348         this.fireEvent("beforeresize", this);
3349         if(!this.overlay){
3350             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
3351             o.unselectable();
3352             o.enableDisplayMode("block");
3353             // all splitbars share the same overlay
3354             Roo.SplitBar.prototype.overlay = o;
3355         }
3356         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
3357         this.overlay.show();
3358         Roo.get(this.proxy).setDisplayed("block");
3359         var size = this.adapter.getElementSize(this);
3360         this.activeMinSize = this.getMinimumSize();;
3361         this.activeMaxSize = this.getMaximumSize();;
3362         var c1 = size - this.activeMinSize;
3363         var c2 = Math.max(this.activeMaxSize - size, 0);
3364         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3365             this.dd.resetConstraints();
3366             this.dd.setXConstraint(
3367                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
3368                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
3369             );
3370             this.dd.setYConstraint(0, 0);
3371         }else{
3372             this.dd.resetConstraints();
3373             this.dd.setXConstraint(0, 0);
3374             this.dd.setYConstraint(
3375                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
3376                 this.placement == Roo.SplitBar.TOP ? c2 : c1
3377             );
3378          }
3379         this.dragSpecs.startSize = size;
3380         this.dragSpecs.startPoint = [x, y];
3381         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
3382     },
3383     
3384     /** 
3385      * @private Called after the drag operation by the DDProxy
3386      */
3387     onEndProxyDrag : function(e){
3388         Roo.get(this.proxy).setDisplayed(false);
3389         var endPoint = Roo.lib.Event.getXY(e);
3390         if(this.overlay){
3391             this.overlay.hide();
3392         }
3393         var newSize;
3394         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3395             newSize = this.dragSpecs.startSize + 
3396                 (this.placement == Roo.SplitBar.LEFT ?
3397                     endPoint[0] - this.dragSpecs.startPoint[0] :
3398                     this.dragSpecs.startPoint[0] - endPoint[0]
3399                 );
3400         }else{
3401             newSize = this.dragSpecs.startSize + 
3402                 (this.placement == Roo.SplitBar.TOP ?
3403                     endPoint[1] - this.dragSpecs.startPoint[1] :
3404                     this.dragSpecs.startPoint[1] - endPoint[1]
3405                 );
3406         }
3407         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
3408         if(newSize != this.dragSpecs.startSize){
3409             if(this.fireEvent('beforeapply', this, newSize) !== false){
3410                 this.adapter.setElementSize(this, newSize);
3411                 this.fireEvent("moved", this, newSize);
3412                 this.fireEvent("resize", this, newSize);
3413             }
3414         }
3415     },
3416     
3417     /**
3418      * Get the adapter this SplitBar uses
3419      * @return The adapter object
3420      */
3421     getAdapter : function(){
3422         return this.adapter;
3423     },
3424     
3425     /**
3426      * Set the adapter this SplitBar uses
3427      * @param {Object} adapter A SplitBar adapter object
3428      */
3429     setAdapter : function(adapter){
3430         this.adapter = adapter;
3431         this.adapter.init(this);
3432     },
3433     
3434     /**
3435      * Gets the minimum size for the resizing element
3436      * @return {Number} The minimum size
3437      */
3438     getMinimumSize : function(){
3439         return this.minSize;
3440     },
3441     
3442     /**
3443      * Sets the minimum size for the resizing element
3444      * @param {Number} minSize The minimum size
3445      */
3446     setMinimumSize : function(minSize){
3447         this.minSize = minSize;
3448     },
3449     
3450     /**
3451      * Gets the maximum size for the resizing element
3452      * @return {Number} The maximum size
3453      */
3454     getMaximumSize : function(){
3455         return this.maxSize;
3456     },
3457     
3458     /**
3459      * Sets the maximum size for the resizing element
3460      * @param {Number} maxSize The maximum size
3461      */
3462     setMaximumSize : function(maxSize){
3463         this.maxSize = maxSize;
3464     },
3465     
3466     /**
3467      * Sets the initialize size for the resizing element
3468      * @param {Number} size The initial size
3469      */
3470     setCurrentSize : function(size){
3471         var oldAnimate = this.animate;
3472         this.animate = false;
3473         this.adapter.setElementSize(this, size);
3474         this.animate = oldAnimate;
3475     },
3476     
3477     /**
3478      * Destroy this splitbar. 
3479      * @param {Boolean} removeEl True to remove the element
3480      */
3481     destroy : function(removeEl){
3482         if(this.shim){
3483             this.shim.remove();
3484         }
3485         this.dd.unreg();
3486         this.proxy.parentNode.removeChild(this.proxy);
3487         if(removeEl){
3488             this.el.remove();
3489         }
3490     }
3491 });
3492
3493 /**
3494  * @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.
3495  */
3496 Roo.SplitBar.createProxy = function(dir){
3497     var proxy = new Roo.Element(document.createElement("div"));
3498     proxy.unselectable();
3499     var cls = 'x-splitbar-proxy';
3500     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
3501     document.body.appendChild(proxy.dom);
3502     return proxy.dom;
3503 };
3504
3505 /** 
3506  * @class Roo.SplitBar.BasicLayoutAdapter
3507  * Default Adapter. It assumes the splitter and resizing element are not positioned
3508  * elements and only gets/sets the width of the element. Generally used for table based layouts.
3509  */
3510 Roo.SplitBar.BasicLayoutAdapter = function(){
3511 };
3512
3513 Roo.SplitBar.BasicLayoutAdapter.prototype = {
3514     // do nothing for now
3515     init : function(s){
3516     
3517     },
3518     /**
3519      * Called before drag operations to get the current size of the resizing element. 
3520      * @param {Roo.SplitBar} s The SplitBar using this adapter
3521      */
3522      getElementSize : function(s){
3523         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3524             return s.resizingEl.getWidth();
3525         }else{
3526             return s.resizingEl.getHeight();
3527         }
3528     },
3529     
3530     /**
3531      * Called after drag operations to set the size of the resizing element.
3532      * @param {Roo.SplitBar} s The SplitBar using this adapter
3533      * @param {Number} newSize The new size to set
3534      * @param {Function} onComplete A function to be invoked when resizing is complete
3535      */
3536     setElementSize : function(s, newSize, onComplete){
3537         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3538             if(!s.animate){
3539                 s.resizingEl.setWidth(newSize);
3540                 if(onComplete){
3541                     onComplete(s, newSize);
3542                 }
3543             }else{
3544                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
3545             }
3546         }else{
3547             
3548             if(!s.animate){
3549                 s.resizingEl.setHeight(newSize);
3550                 if(onComplete){
3551                     onComplete(s, newSize);
3552                 }
3553             }else{
3554                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
3555             }
3556         }
3557     }
3558 };
3559
3560 /** 
3561  *@class Roo.SplitBar.AbsoluteLayoutAdapter
3562  * @extends Roo.SplitBar.BasicLayoutAdapter
3563  * Adapter that  moves the splitter element to align with the resized sizing element. 
3564  * Used with an absolute positioned SplitBar.
3565  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
3566  * document.body, make sure you assign an id to the body element.
3567  */
3568 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
3569     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
3570     this.container = Roo.get(container);
3571 };
3572
3573 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
3574     init : function(s){
3575         this.basic.init(s);
3576     },
3577     
3578     getElementSize : function(s){
3579         return this.basic.getElementSize(s);
3580     },
3581     
3582     setElementSize : function(s, newSize, onComplete){
3583         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
3584     },
3585     
3586     moveSplitter : function(s){
3587         var yes = Roo.SplitBar;
3588         switch(s.placement){
3589             case yes.LEFT:
3590                 s.el.setX(s.resizingEl.getRight());
3591                 break;
3592             case yes.RIGHT:
3593                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
3594                 break;
3595             case yes.TOP:
3596                 s.el.setY(s.resizingEl.getBottom());
3597                 break;
3598             case yes.BOTTOM:
3599                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
3600                 break;
3601         }
3602     }
3603 };
3604
3605 /**
3606  * Orientation constant - Create a vertical SplitBar
3607  * @static
3608  * @type Number
3609  */
3610 Roo.SplitBar.VERTICAL = 1;
3611
3612 /**
3613  * Orientation constant - Create a horizontal SplitBar
3614  * @static
3615  * @type Number
3616  */
3617 Roo.SplitBar.HORIZONTAL = 2;
3618
3619 /**
3620  * Placement constant - The resizing element is to the left of the splitter element
3621  * @static
3622  * @type Number
3623  */
3624 Roo.SplitBar.LEFT = 1;
3625
3626 /**
3627  * Placement constant - The resizing element is to the right of the splitter element
3628  * @static
3629  * @type Number
3630  */
3631 Roo.SplitBar.RIGHT = 2;
3632
3633 /**
3634  * Placement constant - The resizing element is positioned above the splitter element
3635  * @static
3636  * @type Number
3637  */
3638 Roo.SplitBar.TOP = 3;
3639
3640 /**
3641  * Placement constant - The resizing element is positioned under splitter element
3642  * @static
3643  * @type Number
3644  */
3645 Roo.SplitBar.BOTTOM = 4;
3646 /*
3647  * Based on:
3648  * Ext JS Library 1.1.1
3649  * Copyright(c) 2006-2007, Ext JS, LLC.
3650  *
3651  * Originally Released Under LGPL - original licence link has changed is not relivant.
3652  *
3653  * Fork - LGPL
3654  * <script type="text/javascript">
3655  */
3656
3657 /**
3658  * @class Roo.View
3659  * @extends Roo.util.Observable
3660  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
3661  * This class also supports single and multi selection modes. <br>
3662  * Create a data model bound view:
3663  <pre><code>
3664  var store = new Roo.data.Store(...);
3665
3666  var view = new Roo.View({
3667     el : "my-element",
3668     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
3669  
3670     singleSelect: true,
3671     selectedClass: "ydataview-selected",
3672     store: store
3673  });
3674
3675  // listen for node click?
3676  view.on("click", function(vw, index, node, e){
3677  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
3678  });
3679
3680  // load XML data
3681  dataModel.load("foobar.xml");
3682  </code></pre>
3683  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
3684  * <br><br>
3685  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
3686  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
3687  * 
3688  * Note: old style constructor is still suported (container, template, config)
3689  * 
3690  * @constructor
3691  * Create a new View
3692  * @param {Object} config The config object
3693  * 
3694  */
3695 Roo.View = function(config, depreciated_tpl, depreciated_config){
3696     
3697     this.parent = false;
3698     
3699     if (typeof(depreciated_tpl) == 'undefined') {
3700         // new way.. - universal constructor.
3701         Roo.apply(this, config);
3702         this.el  = Roo.get(this.el);
3703     } else {
3704         // old format..
3705         this.el  = Roo.get(config);
3706         this.tpl = depreciated_tpl;
3707         Roo.apply(this, depreciated_config);
3708     }
3709     this.wrapEl  = this.el.wrap().wrap();
3710     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
3711     
3712     
3713     if(typeof(this.tpl) == "string"){
3714         this.tpl = new Roo.Template(this.tpl);
3715     } else {
3716         // support xtype ctors..
3717         this.tpl = new Roo.factory(this.tpl, Roo);
3718     }
3719     
3720     
3721     this.tpl.compile();
3722     
3723     /** @private */
3724     this.addEvents({
3725         /**
3726          * @event beforeclick
3727          * Fires before a click is processed. Returns false to cancel the default action.
3728          * @param {Roo.View} this
3729          * @param {Number} index The index of the target node
3730          * @param {HTMLElement} node The target node
3731          * @param {Roo.EventObject} e The raw event object
3732          */
3733             "beforeclick" : true,
3734         /**
3735          * @event click
3736          * Fires when a template node is clicked.
3737          * @param {Roo.View} this
3738          * @param {Number} index The index of the target node
3739          * @param {HTMLElement} node The target node
3740          * @param {Roo.EventObject} e The raw event object
3741          */
3742             "click" : true,
3743         /**
3744          * @event dblclick
3745          * Fires when a template node is double clicked.
3746          * @param {Roo.View} this
3747          * @param {Number} index The index of the target node
3748          * @param {HTMLElement} node The target node
3749          * @param {Roo.EventObject} e The raw event object
3750          */
3751             "dblclick" : true,
3752         /**
3753          * @event contextmenu
3754          * Fires when a template node is right clicked.
3755          * @param {Roo.View} this
3756          * @param {Number} index The index of the target node
3757          * @param {HTMLElement} node The target node
3758          * @param {Roo.EventObject} e The raw event object
3759          */
3760             "contextmenu" : true,
3761         /**
3762          * @event selectionchange
3763          * Fires when the selected nodes change.
3764          * @param {Roo.View} this
3765          * @param {Array} selections Array of the selected nodes
3766          */
3767             "selectionchange" : true,
3768     
3769         /**
3770          * @event beforeselect
3771          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
3772          * @param {Roo.View} this
3773          * @param {HTMLElement} node The node to be selected
3774          * @param {Array} selections Array of currently selected nodes
3775          */
3776             "beforeselect" : true,
3777         /**
3778          * @event preparedata
3779          * Fires on every row to render, to allow you to change the data.
3780          * @param {Roo.View} this
3781          * @param {Object} data to be rendered (change this)
3782          */
3783           "preparedata" : true
3784           
3785           
3786         });
3787
3788
3789
3790     this.el.on({
3791         "click": this.onClick,
3792         "dblclick": this.onDblClick,
3793         "contextmenu": this.onContextMenu,
3794         scope:this
3795     });
3796
3797     this.selections = [];
3798     this.nodes = [];
3799     this.cmp = new Roo.CompositeElementLite([]);
3800     if(this.store){
3801         this.store = Roo.factory(this.store, Roo.data);
3802         this.setStore(this.store, true);
3803     }
3804     
3805     if ( this.footer && this.footer.xtype) {
3806            
3807          var fctr = this.wrapEl.appendChild(document.createElement("div"));
3808         
3809         this.footer.dataSource = this.store;
3810         this.footer.container = fctr;
3811         this.footer = Roo.factory(this.footer, Roo);
3812         fctr.insertFirst(this.el);
3813         
3814         // this is a bit insane - as the paging toolbar seems to detach the el..
3815 //        dom.parentNode.parentNode.parentNode
3816          // they get detached?
3817     }
3818     
3819     
3820     Roo.View.superclass.constructor.call(this);
3821     
3822     
3823 };
3824
3825 Roo.extend(Roo.View, Roo.util.Observable, {
3826     
3827      /**
3828      * @cfg {Roo.data.Store} store Data store to load data from.
3829      */
3830     store : false,
3831     
3832     /**
3833      * @cfg {String|Roo.Element} el The container element.
3834      */
3835     el : '',
3836     
3837     /**
3838      * @cfg {String|Roo.Template} tpl The template used by this View 
3839      */
3840     tpl : false,
3841     /**
3842      * @cfg {String} dataName the named area of the template to use as the data area
3843      *                          Works with domtemplates roo-name="name"
3844      */
3845     dataName: false,
3846     /**
3847      * @cfg {String} selectedClass The css class to add to selected nodes
3848      */
3849     selectedClass : "x-view-selected",
3850      /**
3851      * @cfg {String} emptyText The empty text to show when nothing is loaded.
3852      */
3853     emptyText : "",
3854     
3855     /**
3856      * @cfg {String} text to display on mask (default Loading)
3857      */
3858     mask : false,
3859     /**
3860      * @cfg {Boolean} multiSelect Allow multiple selection
3861      */
3862     multiSelect : false,
3863     /**
3864      * @cfg {Boolean} singleSelect Allow single selection
3865      */
3866     singleSelect:  false,
3867     
3868     /**
3869      * @cfg {Boolean} toggleSelect - selecting 
3870      */
3871     toggleSelect : false,
3872     
3873     /**
3874      * @cfg {Boolean} tickable - selecting 
3875      */
3876     tickable : false,
3877     
3878     /**
3879      * Returns the element this view is bound to.
3880      * @return {Roo.Element}
3881      */
3882     getEl : function(){
3883         return this.wrapEl;
3884     },
3885     
3886     
3887
3888     /**
3889      * Refreshes the view. - called by datachanged on the store. - do not call directly.
3890      */
3891     refresh : function(){
3892         //Roo.log('refresh');
3893         var t = this.tpl;
3894         
3895         // if we are using something like 'domtemplate', then
3896         // the what gets used is:
3897         // t.applySubtemplate(NAME, data, wrapping data..)
3898         // the outer template then get' applied with
3899         //     the store 'extra data'
3900         // and the body get's added to the
3901         //      roo-name="data" node?
3902         //      <span class='roo-tpl-{name}'></span> ?????
3903         
3904         
3905         
3906         this.clearSelections();
3907         this.el.update("");
3908         var html = [];
3909         var records = this.store.getRange();
3910         if(records.length < 1) {
3911             
3912             // is this valid??  = should it render a template??
3913             
3914             this.el.update(this.emptyText);
3915             return;
3916         }
3917         var el = this.el;
3918         if (this.dataName) {
3919             this.el.update(t.apply(this.store.meta)); //????
3920             el = this.el.child('.roo-tpl-' + this.dataName);
3921         }
3922         
3923         for(var i = 0, len = records.length; i < len; i++){
3924             var data = this.prepareData(records[i].data, i, records[i]);
3925             this.fireEvent("preparedata", this, data, i, records[i]);
3926             
3927             var d = Roo.apply({}, data);
3928             
3929             if(this.tickable){
3930                 Roo.apply(d, {'roo-id' : Roo.id()});
3931                 
3932                 var _this = this;
3933             
3934                 Roo.each(this.parent.item, function(item){
3935                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
3936                         return;
3937                     }
3938                     Roo.apply(d, {'roo-data-checked' : 'checked'});
3939                 });
3940             }
3941             
3942             html[html.length] = Roo.util.Format.trim(
3943                 this.dataName ?
3944                     t.applySubtemplate(this.dataName, d, this.store.meta) :
3945                     t.apply(d)
3946             );
3947         }
3948         
3949         
3950         
3951         el.update(html.join(""));
3952         this.nodes = el.dom.childNodes;
3953         this.updateIndexes(0);
3954     },
3955     
3956
3957     /**
3958      * Function to override to reformat the data that is sent to
3959      * the template for each node.
3960      * DEPRICATED - use the preparedata event handler.
3961      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
3962      * a JSON object for an UpdateManager bound view).
3963      */
3964     prepareData : function(data, index, record)
3965     {
3966         this.fireEvent("preparedata", this, data, index, record);
3967         return data;
3968     },
3969
3970     onUpdate : function(ds, record){
3971         // Roo.log('on update');   
3972         this.clearSelections();
3973         var index = this.store.indexOf(record);
3974         var n = this.nodes[index];
3975         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
3976         n.parentNode.removeChild(n);
3977         this.updateIndexes(index, index);
3978     },
3979
3980     
3981     
3982 // --------- FIXME     
3983     onAdd : function(ds, records, index)
3984     {
3985         //Roo.log(['on Add', ds, records, index] );        
3986         this.clearSelections();
3987         if(this.nodes.length == 0){
3988             this.refresh();
3989             return;
3990         }
3991         var n = this.nodes[index];
3992         for(var i = 0, len = records.length; i < len; i++){
3993             var d = this.prepareData(records[i].data, i, records[i]);
3994             if(n){
3995                 this.tpl.insertBefore(n, d);
3996             }else{
3997                 
3998                 this.tpl.append(this.el, d);
3999             }
4000         }
4001         this.updateIndexes(index);
4002     },
4003
4004     onRemove : function(ds, record, index){
4005        // Roo.log('onRemove');
4006         this.clearSelections();
4007         var el = this.dataName  ?
4008             this.el.child('.roo-tpl-' + this.dataName) :
4009             this.el; 
4010         
4011         el.dom.removeChild(this.nodes[index]);
4012         this.updateIndexes(index);
4013     },
4014
4015     /**
4016      * Refresh an individual node.
4017      * @param {Number} index
4018      */
4019     refreshNode : function(index){
4020         this.onUpdate(this.store, this.store.getAt(index));
4021     },
4022
4023     updateIndexes : function(startIndex, endIndex){
4024         var ns = this.nodes;
4025         startIndex = startIndex || 0;
4026         endIndex = endIndex || ns.length - 1;
4027         for(var i = startIndex; i <= endIndex; i++){
4028             ns[i].nodeIndex = i;
4029         }
4030     },
4031
4032     /**
4033      * Changes the data store this view uses and refresh the view.
4034      * @param {Store} store
4035      */
4036     setStore : function(store, initial){
4037         if(!initial && this.store){
4038             this.store.un("datachanged", this.refresh);
4039             this.store.un("add", this.onAdd);
4040             this.store.un("remove", this.onRemove);
4041             this.store.un("update", this.onUpdate);
4042             this.store.un("clear", this.refresh);
4043             this.store.un("beforeload", this.onBeforeLoad);
4044             this.store.un("load", this.onLoad);
4045             this.store.un("loadexception", this.onLoad);
4046         }
4047         if(store){
4048           
4049             store.on("datachanged", this.refresh, this);
4050             store.on("add", this.onAdd, this);
4051             store.on("remove", this.onRemove, this);
4052             store.on("update", this.onUpdate, this);
4053             store.on("clear", this.refresh, this);
4054             store.on("beforeload", this.onBeforeLoad, this);
4055             store.on("load", this.onLoad, this);
4056             store.on("loadexception", this.onLoad, this);
4057         }
4058         
4059         if(store){
4060             this.refresh();
4061         }
4062     },
4063     /**
4064      * onbeforeLoad - masks the loading area.
4065      *
4066      */
4067     onBeforeLoad : function(store,opts)
4068     {
4069          //Roo.log('onBeforeLoad');   
4070         if (!opts.add) {
4071             this.el.update("");
4072         }
4073         this.el.mask(this.mask ? this.mask : "Loading" ); 
4074     },
4075     onLoad : function ()
4076     {
4077         this.el.unmask();
4078     },
4079     
4080
4081     /**
4082      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
4083      * @param {HTMLElement} node
4084      * @return {HTMLElement} The template node
4085      */
4086     findItemFromChild : function(node){
4087         var el = this.dataName  ?
4088             this.el.child('.roo-tpl-' + this.dataName,true) :
4089             this.el.dom; 
4090         
4091         if(!node || node.parentNode == el){
4092                     return node;
4093             }
4094             var p = node.parentNode;
4095             while(p && p != el){
4096             if(p.parentNode == el){
4097                 return p;
4098             }
4099             p = p.parentNode;
4100         }
4101             return null;
4102     },
4103
4104     /** @ignore */
4105     onClick : function(e){
4106         var item = this.findItemFromChild(e.getTarget());
4107         if(item){
4108             var index = this.indexOf(item);
4109             if(this.onItemClick(item, index, e) !== false){
4110                 this.fireEvent("click", this, index, item, e);
4111             }
4112         }else{
4113             this.clearSelections();
4114         }
4115     },
4116
4117     /** @ignore */
4118     onContextMenu : function(e){
4119         var item = this.findItemFromChild(e.getTarget());
4120         if(item){
4121             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
4122         }
4123     },
4124
4125     /** @ignore */
4126     onDblClick : function(e){
4127         var item = this.findItemFromChild(e.getTarget());
4128         if(item){
4129             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
4130         }
4131     },
4132
4133     onItemClick : function(item, index, e)
4134     {
4135         if(this.fireEvent("beforeclick", this, index, item, e) === false){
4136             return false;
4137         }
4138         if (this.toggleSelect) {
4139             var m = this.isSelected(item) ? 'unselect' : 'select';
4140             //Roo.log(m);
4141             var _t = this;
4142             _t[m](item, true, false);
4143             return true;
4144         }
4145         if(this.multiSelect || this.singleSelect){
4146             if(this.multiSelect && e.shiftKey && this.lastSelection){
4147                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
4148             }else{
4149                 this.select(item, this.multiSelect && e.ctrlKey);
4150                 this.lastSelection = item;
4151             }
4152             
4153             if(!this.tickable){
4154                 e.preventDefault();
4155             }
4156             
4157         }
4158         return true;
4159     },
4160
4161     /**
4162      * Get the number of selected nodes.
4163      * @return {Number}
4164      */
4165     getSelectionCount : function(){
4166         return this.selections.length;
4167     },
4168
4169     /**
4170      * Get the currently selected nodes.
4171      * @return {Array} An array of HTMLElements
4172      */
4173     getSelectedNodes : function(){
4174         return this.selections;
4175     },
4176
4177     /**
4178      * Get the indexes of the selected nodes.
4179      * @return {Array}
4180      */
4181     getSelectedIndexes : function(){
4182         var indexes = [], s = this.selections;
4183         for(var i = 0, len = s.length; i < len; i++){
4184             indexes.push(s[i].nodeIndex);
4185         }
4186         return indexes;
4187     },
4188
4189     /**
4190      * Clear all selections
4191      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
4192      */
4193     clearSelections : function(suppressEvent){
4194         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
4195             this.cmp.elements = this.selections;
4196             this.cmp.removeClass(this.selectedClass);
4197             this.selections = [];
4198             if(!suppressEvent){
4199                 this.fireEvent("selectionchange", this, this.selections);
4200             }
4201         }
4202     },
4203
4204     /**
4205      * Returns true if the passed node is selected
4206      * @param {HTMLElement/Number} node The node or node index
4207      * @return {Boolean}
4208      */
4209     isSelected : function(node){
4210         var s = this.selections;
4211         if(s.length < 1){
4212             return false;
4213         }
4214         node = this.getNode(node);
4215         return s.indexOf(node) !== -1;
4216     },
4217
4218     /**
4219      * Selects nodes.
4220      * @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
4221      * @param {Boolean} keepExisting (optional) true to keep existing selections
4222      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4223      */
4224     select : function(nodeInfo, keepExisting, suppressEvent){
4225         if(nodeInfo instanceof Array){
4226             if(!keepExisting){
4227                 this.clearSelections(true);
4228             }
4229             for(var i = 0, len = nodeInfo.length; i < len; i++){
4230                 this.select(nodeInfo[i], true, true);
4231             }
4232             return;
4233         } 
4234         var node = this.getNode(nodeInfo);
4235         if(!node || this.isSelected(node)){
4236             return; // already selected.
4237         }
4238         if(!keepExisting){
4239             this.clearSelections(true);
4240         }
4241         
4242         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
4243             Roo.fly(node).addClass(this.selectedClass);
4244             this.selections.push(node);
4245             if(!suppressEvent){
4246                 this.fireEvent("selectionchange", this, this.selections);
4247             }
4248         }
4249         
4250         
4251     },
4252       /**
4253      * Unselects nodes.
4254      * @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
4255      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
4256      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4257      */
4258     unselect : function(nodeInfo, keepExisting, suppressEvent)
4259     {
4260         if(nodeInfo instanceof Array){
4261             Roo.each(this.selections, function(s) {
4262                 this.unselect(s, nodeInfo);
4263             }, this);
4264             return;
4265         }
4266         var node = this.getNode(nodeInfo);
4267         if(!node || !this.isSelected(node)){
4268             //Roo.log("not selected");
4269             return; // not selected.
4270         }
4271         // fireevent???
4272         var ns = [];
4273         Roo.each(this.selections, function(s) {
4274             if (s == node ) {
4275                 Roo.fly(node).removeClass(this.selectedClass);
4276
4277                 return;
4278             }
4279             ns.push(s);
4280         },this);
4281         
4282         this.selections= ns;
4283         this.fireEvent("selectionchange", this, this.selections);
4284     },
4285
4286     /**
4287      * Gets a template node.
4288      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4289      * @return {HTMLElement} The node or null if it wasn't found
4290      */
4291     getNode : function(nodeInfo){
4292         if(typeof nodeInfo == "string"){
4293             return document.getElementById(nodeInfo);
4294         }else if(typeof nodeInfo == "number"){
4295             return this.nodes[nodeInfo];
4296         }
4297         return nodeInfo;
4298     },
4299
4300     /**
4301      * Gets a range template nodes.
4302      * @param {Number} startIndex
4303      * @param {Number} endIndex
4304      * @return {Array} An array of nodes
4305      */
4306     getNodes : function(start, end){
4307         var ns = this.nodes;
4308         start = start || 0;
4309         end = typeof end == "undefined" ? ns.length - 1 : end;
4310         var nodes = [];
4311         if(start <= end){
4312             for(var i = start; i <= end; i++){
4313                 nodes.push(ns[i]);
4314             }
4315         } else{
4316             for(var i = start; i >= end; i--){
4317                 nodes.push(ns[i]);
4318             }
4319         }
4320         return nodes;
4321     },
4322
4323     /**
4324      * Finds the index of the passed node
4325      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4326      * @return {Number} The index of the node or -1
4327      */
4328     indexOf : function(node){
4329         node = this.getNode(node);
4330         if(typeof node.nodeIndex == "number"){
4331             return node.nodeIndex;
4332         }
4333         var ns = this.nodes;
4334         for(var i = 0, len = ns.length; i < len; i++){
4335             if(ns[i] == node){
4336                 return i;
4337             }
4338         }
4339         return -1;
4340     }
4341 });
4342 /*
4343  * Based on:
4344  * Ext JS Library 1.1.1
4345  * Copyright(c) 2006-2007, Ext JS, LLC.
4346  *
4347  * Originally Released Under LGPL - original licence link has changed is not relivant.
4348  *
4349  * Fork - LGPL
4350  * <script type="text/javascript">
4351  */
4352
4353 /**
4354  * @class Roo.JsonView
4355  * @extends Roo.View
4356  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
4357 <pre><code>
4358 var view = new Roo.JsonView({
4359     container: "my-element",
4360     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
4361     multiSelect: true, 
4362     jsonRoot: "data" 
4363 });
4364
4365 // listen for node click?
4366 view.on("click", function(vw, index, node, e){
4367     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4368 });
4369
4370 // direct load of JSON data
4371 view.load("foobar.php");
4372
4373 // Example from my blog list
4374 var tpl = new Roo.Template(
4375     '&lt;div class="entry"&gt;' +
4376     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
4377     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
4378     "&lt;/div&gt;&lt;hr /&gt;"
4379 );
4380
4381 var moreView = new Roo.JsonView({
4382     container :  "entry-list", 
4383     template : tpl,
4384     jsonRoot: "posts"
4385 });
4386 moreView.on("beforerender", this.sortEntries, this);
4387 moreView.load({
4388     url: "/blog/get-posts.php",
4389     params: "allposts=true",
4390     text: "Loading Blog Entries..."
4391 });
4392 </code></pre>
4393
4394 * Note: old code is supported with arguments : (container, template, config)
4395
4396
4397  * @constructor
4398  * Create a new JsonView
4399  * 
4400  * @param {Object} config The config object
4401  * 
4402  */
4403 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
4404     
4405     
4406     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
4407
4408     var um = this.el.getUpdateManager();
4409     um.setRenderer(this);
4410     um.on("update", this.onLoad, this);
4411     um.on("failure", this.onLoadException, this);
4412
4413     /**
4414      * @event beforerender
4415      * Fires before rendering of the downloaded JSON data.
4416      * @param {Roo.JsonView} this
4417      * @param {Object} data The JSON data loaded
4418      */
4419     /**
4420      * @event load
4421      * Fires when data is loaded.
4422      * @param {Roo.JsonView} this
4423      * @param {Object} data The JSON data loaded
4424      * @param {Object} response The raw Connect response object
4425      */
4426     /**
4427      * @event loadexception
4428      * Fires when loading fails.
4429      * @param {Roo.JsonView} this
4430      * @param {Object} response The raw Connect response object
4431      */
4432     this.addEvents({
4433         'beforerender' : true,
4434         'load' : true,
4435         'loadexception' : true
4436     });
4437 };
4438 Roo.extend(Roo.JsonView, Roo.View, {
4439     /**
4440      * @type {String} The root property in the loaded JSON object that contains the data
4441      */
4442     jsonRoot : "",
4443
4444     /**
4445      * Refreshes the view.
4446      */
4447     refresh : function(){
4448         this.clearSelections();
4449         this.el.update("");
4450         var html = [];
4451         var o = this.jsonData;
4452         if(o && o.length > 0){
4453             for(var i = 0, len = o.length; i < len; i++){
4454                 var data = this.prepareData(o[i], i, o);
4455                 html[html.length] = this.tpl.apply(data);
4456             }
4457         }else{
4458             html.push(this.emptyText);
4459         }
4460         this.el.update(html.join(""));
4461         this.nodes = this.el.dom.childNodes;
4462         this.updateIndexes(0);
4463     },
4464
4465     /**
4466      * 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.
4467      * @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:
4468      <pre><code>
4469      view.load({
4470          url: "your-url.php",
4471          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
4472          callback: yourFunction,
4473          scope: yourObject, //(optional scope)
4474          discardUrl: false,
4475          nocache: false,
4476          text: "Loading...",
4477          timeout: 30,
4478          scripts: false
4479      });
4480      </code></pre>
4481      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
4482      * 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.
4483      * @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}
4484      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
4485      * @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.
4486      */
4487     load : function(){
4488         var um = this.el.getUpdateManager();
4489         um.update.apply(um, arguments);
4490     },
4491
4492     // note - render is a standard framework call...
4493     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
4494     render : function(el, response){
4495         
4496         this.clearSelections();
4497         this.el.update("");
4498         var o;
4499         try{
4500             if (response != '') {
4501                 o = Roo.util.JSON.decode(response.responseText);
4502                 if(this.jsonRoot){
4503                     
4504                     o = o[this.jsonRoot];
4505                 }
4506             }
4507         } catch(e){
4508         }
4509         /**
4510          * The current JSON data or null
4511          */
4512         this.jsonData = o;
4513         this.beforeRender();
4514         this.refresh();
4515     },
4516
4517 /**
4518  * Get the number of records in the current JSON dataset
4519  * @return {Number}
4520  */
4521     getCount : function(){
4522         return this.jsonData ? this.jsonData.length : 0;
4523     },
4524
4525 /**
4526  * Returns the JSON object for the specified node(s)
4527  * @param {HTMLElement/Array} node The node or an array of nodes
4528  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
4529  * you get the JSON object for the node
4530  */
4531     getNodeData : function(node){
4532         if(node instanceof Array){
4533             var data = [];
4534             for(var i = 0, len = node.length; i < len; i++){
4535                 data.push(this.getNodeData(node[i]));
4536             }
4537             return data;
4538         }
4539         return this.jsonData[this.indexOf(node)] || null;
4540     },
4541
4542     beforeRender : function(){
4543         this.snapshot = this.jsonData;
4544         if(this.sortInfo){
4545             this.sort.apply(this, this.sortInfo);
4546         }
4547         this.fireEvent("beforerender", this, this.jsonData);
4548     },
4549
4550     onLoad : function(el, o){
4551         this.fireEvent("load", this, this.jsonData, o);
4552     },
4553
4554     onLoadException : function(el, o){
4555         this.fireEvent("loadexception", this, o);
4556     },
4557
4558 /**
4559  * Filter the data by a specific property.
4560  * @param {String} property A property on your JSON objects
4561  * @param {String/RegExp} value Either string that the property values
4562  * should start with, or a RegExp to test against the property
4563  */
4564     filter : function(property, value){
4565         if(this.jsonData){
4566             var data = [];
4567             var ss = this.snapshot;
4568             if(typeof value == "string"){
4569                 var vlen = value.length;
4570                 if(vlen == 0){
4571                     this.clearFilter();
4572                     return;
4573                 }
4574                 value = value.toLowerCase();
4575                 for(var i = 0, len = ss.length; i < len; i++){
4576                     var o = ss[i];
4577                     if(o[property].substr(0, vlen).toLowerCase() == value){
4578                         data.push(o);
4579                     }
4580                 }
4581             } else if(value.exec){ // regex?
4582                 for(var i = 0, len = ss.length; i < len; i++){
4583                     var o = ss[i];
4584                     if(value.test(o[property])){
4585                         data.push(o);
4586                     }
4587                 }
4588             } else{
4589                 return;
4590             }
4591             this.jsonData = data;
4592             this.refresh();
4593         }
4594     },
4595
4596 /**
4597  * Filter by a function. The passed function will be called with each
4598  * object in the current dataset. If the function returns true the value is kept,
4599  * otherwise it is filtered.
4600  * @param {Function} fn
4601  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
4602  */
4603     filterBy : function(fn, scope){
4604         if(this.jsonData){
4605             var data = [];
4606             var ss = this.snapshot;
4607             for(var i = 0, len = ss.length; i < len; i++){
4608                 var o = ss[i];
4609                 if(fn.call(scope || this, o)){
4610                     data.push(o);
4611                 }
4612             }
4613             this.jsonData = data;
4614             this.refresh();
4615         }
4616     },
4617
4618 /**
4619  * Clears the current filter.
4620  */
4621     clearFilter : function(){
4622         if(this.snapshot && this.jsonData != this.snapshot){
4623             this.jsonData = this.snapshot;
4624             this.refresh();
4625         }
4626     },
4627
4628
4629 /**
4630  * Sorts the data for this view and refreshes it.
4631  * @param {String} property A property on your JSON objects to sort on
4632  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
4633  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
4634  */
4635     sort : function(property, dir, sortType){
4636         this.sortInfo = Array.prototype.slice.call(arguments, 0);
4637         if(this.jsonData){
4638             var p = property;
4639             var dsc = dir && dir.toLowerCase() == "desc";
4640             var f = function(o1, o2){
4641                 var v1 = sortType ? sortType(o1[p]) : o1[p];
4642                 var v2 = sortType ? sortType(o2[p]) : o2[p];
4643                 ;
4644                 if(v1 < v2){
4645                     return dsc ? +1 : -1;
4646                 } else if(v1 > v2){
4647                     return dsc ? -1 : +1;
4648                 } else{
4649                     return 0;
4650                 }
4651             };
4652             this.jsonData.sort(f);
4653             this.refresh();
4654             if(this.jsonData != this.snapshot){
4655                 this.snapshot.sort(f);
4656             }
4657         }
4658     }
4659 });/*
4660  * Based on:
4661  * Ext JS Library 1.1.1
4662  * Copyright(c) 2006-2007, Ext JS, LLC.
4663  *
4664  * Originally Released Under LGPL - original licence link has changed is not relivant.
4665  *
4666  * Fork - LGPL
4667  * <script type="text/javascript">
4668  */
4669  
4670
4671 /**
4672  * @class Roo.ColorPalette
4673  * @extends Roo.Component
4674  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
4675  * Here's an example of typical usage:
4676  * <pre><code>
4677 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
4678 cp.render('my-div');
4679
4680 cp.on('select', function(palette, selColor){
4681     // do something with selColor
4682 });
4683 </code></pre>
4684  * @constructor
4685  * Create a new ColorPalette
4686  * @param {Object} config The config object
4687  */
4688 Roo.ColorPalette = function(config){
4689     Roo.ColorPalette.superclass.constructor.call(this, config);
4690     this.addEvents({
4691         /**
4692              * @event select
4693              * Fires when a color is selected
4694              * @param {ColorPalette} this
4695              * @param {String} color The 6-digit color hex code (without the # symbol)
4696              */
4697         select: true
4698     });
4699
4700     if(this.handler){
4701         this.on("select", this.handler, this.scope, true);
4702     }
4703 };
4704 Roo.extend(Roo.ColorPalette, Roo.Component, {
4705     /**
4706      * @cfg {String} itemCls
4707      * The CSS class to apply to the containing element (defaults to "x-color-palette")
4708      */
4709     itemCls : "x-color-palette",
4710     /**
4711      * @cfg {String} value
4712      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
4713      * the hex codes are case-sensitive.
4714      */
4715     value : null,
4716     clickEvent:'click',
4717     // private
4718     ctype: "Roo.ColorPalette",
4719
4720     /**
4721      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
4722      */
4723     allowReselect : false,
4724
4725     /**
4726      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
4727      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
4728      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
4729      * of colors with the width setting until the box is symmetrical.</p>
4730      * <p>You can override individual colors if needed:</p>
4731      * <pre><code>
4732 var cp = new Roo.ColorPalette();
4733 cp.colors[0] = "FF0000";  // change the first box to red
4734 </code></pre>
4735
4736 Or you can provide a custom array of your own for complete control:
4737 <pre><code>
4738 var cp = new Roo.ColorPalette();
4739 cp.colors = ["000000", "993300", "333300"];
4740 </code></pre>
4741      * @type Array
4742      */
4743     colors : [
4744         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
4745         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
4746         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
4747         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
4748         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
4749     ],
4750
4751     // private
4752     onRender : function(container, position){
4753         var t = new Roo.MasterTemplate(
4754             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
4755         );
4756         var c = this.colors;
4757         for(var i = 0, len = c.length; i < len; i++){
4758             t.add([c[i]]);
4759         }
4760         var el = document.createElement("div");
4761         el.className = this.itemCls;
4762         t.overwrite(el);
4763         container.dom.insertBefore(el, position);
4764         this.el = Roo.get(el);
4765         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
4766         if(this.clickEvent != 'click'){
4767             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
4768         }
4769     },
4770
4771     // private
4772     afterRender : function(){
4773         Roo.ColorPalette.superclass.afterRender.call(this);
4774         if(this.value){
4775             var s = this.value;
4776             this.value = null;
4777             this.select(s);
4778         }
4779     },
4780
4781     // private
4782     handleClick : function(e, t){
4783         e.preventDefault();
4784         if(!this.disabled){
4785             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
4786             this.select(c.toUpperCase());
4787         }
4788     },
4789
4790     /**
4791      * Selects the specified color in the palette (fires the select event)
4792      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
4793      */
4794     select : function(color){
4795         color = color.replace("#", "");
4796         if(color != this.value || this.allowReselect){
4797             var el = this.el;
4798             if(this.value){
4799                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
4800             }
4801             el.child("a.color-"+color).addClass("x-color-palette-sel");
4802             this.value = color;
4803             this.fireEvent("select", this, color);
4804         }
4805     }
4806 });/*
4807  * Based on:
4808  * Ext JS Library 1.1.1
4809  * Copyright(c) 2006-2007, Ext JS, LLC.
4810  *
4811  * Originally Released Under LGPL - original licence link has changed is not relivant.
4812  *
4813  * Fork - LGPL
4814  * <script type="text/javascript">
4815  */
4816  
4817 /**
4818  * @class Roo.DatePicker
4819  * @extends Roo.Component
4820  * Simple date picker class.
4821  * @constructor
4822  * Create a new DatePicker
4823  * @param {Object} config The config object
4824  */
4825 Roo.DatePicker = function(config){
4826     Roo.DatePicker.superclass.constructor.call(this, config);
4827
4828     this.value = config && config.value ?
4829                  config.value.clearTime() : new Date().clearTime();
4830
4831     this.addEvents({
4832         /**
4833              * @event select
4834              * Fires when a date is selected
4835              * @param {DatePicker} this
4836              * @param {Date} date The selected date
4837              */
4838         'select': true,
4839         /**
4840              * @event monthchange
4841              * Fires when the displayed month changes 
4842              * @param {DatePicker} this
4843              * @param {Date} date The selected month
4844              */
4845         'monthchange': true
4846     });
4847
4848     if(this.handler){
4849         this.on("select", this.handler,  this.scope || this);
4850     }
4851     // build the disabledDatesRE
4852     if(!this.disabledDatesRE && this.disabledDates){
4853         var dd = this.disabledDates;
4854         var re = "(?:";
4855         for(var i = 0; i < dd.length; i++){
4856             re += dd[i];
4857             if(i != dd.length-1) {
4858                 re += "|";
4859             }
4860         }
4861         this.disabledDatesRE = new RegExp(re + ")");
4862     }
4863 };
4864
4865 Roo.extend(Roo.DatePicker, Roo.Component, {
4866     /**
4867      * @cfg {String} todayText
4868      * The text to display on the button that selects the current date (defaults to "Today")
4869      */
4870     todayText : "Today",
4871     /**
4872      * @cfg {String} okText
4873      * The text to display on the ok button
4874      */
4875     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
4876     /**
4877      * @cfg {String} cancelText
4878      * The text to display on the cancel button
4879      */
4880     cancelText : "Cancel",
4881     /**
4882      * @cfg {String} todayTip
4883      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
4884      */
4885     todayTip : "{0} (Spacebar)",
4886     /**
4887      * @cfg {Date} minDate
4888      * Minimum allowable date (JavaScript date object, defaults to null)
4889      */
4890     minDate : null,
4891     /**
4892      * @cfg {Date} maxDate
4893      * Maximum allowable date (JavaScript date object, defaults to null)
4894      */
4895     maxDate : null,
4896     /**
4897      * @cfg {String} minText
4898      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
4899      */
4900     minText : "This date is before the minimum date",
4901     /**
4902      * @cfg {String} maxText
4903      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
4904      */
4905     maxText : "This date is after the maximum date",
4906     /**
4907      * @cfg {String} format
4908      * The default date format string which can be overriden for localization support.  The format must be
4909      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
4910      */
4911     format : "m/d/y",
4912     /**
4913      * @cfg {Array} disabledDays
4914      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
4915      */
4916     disabledDays : null,
4917     /**
4918      * @cfg {String} disabledDaysText
4919      * The tooltip to display when the date falls on a disabled day (defaults to "")
4920      */
4921     disabledDaysText : "",
4922     /**
4923      * @cfg {RegExp} disabledDatesRE
4924      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
4925      */
4926     disabledDatesRE : null,
4927     /**
4928      * @cfg {String} disabledDatesText
4929      * The tooltip text to display when the date falls on a disabled date (defaults to "")
4930      */
4931     disabledDatesText : "",
4932     /**
4933      * @cfg {Boolean} constrainToViewport
4934      * True to constrain the date picker to the viewport (defaults to true)
4935      */
4936     constrainToViewport : true,
4937     /**
4938      * @cfg {Array} monthNames
4939      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
4940      */
4941     monthNames : Date.monthNames,
4942     /**
4943      * @cfg {Array} dayNames
4944      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
4945      */
4946     dayNames : Date.dayNames,
4947     /**
4948      * @cfg {String} nextText
4949      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
4950      */
4951     nextText: 'Next Month (Control+Right)',
4952     /**
4953      * @cfg {String} prevText
4954      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
4955      */
4956     prevText: 'Previous Month (Control+Left)',
4957     /**
4958      * @cfg {String} monthYearText
4959      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
4960      */
4961     monthYearText: 'Choose a month (Control+Up/Down to move years)',
4962     /**
4963      * @cfg {Number} startDay
4964      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
4965      */
4966     startDay : 0,
4967     /**
4968      * @cfg {Bool} showClear
4969      * Show a clear button (usefull for date form elements that can be blank.)
4970      */
4971     
4972     showClear: false,
4973     
4974     /**
4975      * Sets the value of the date field
4976      * @param {Date} value The date to set
4977      */
4978     setValue : function(value){
4979         var old = this.value;
4980         
4981         if (typeof(value) == 'string') {
4982          
4983             value = Date.parseDate(value, this.format);
4984         }
4985         if (!value) {
4986             value = new Date();
4987         }
4988         
4989         this.value = value.clearTime(true);
4990         if(this.el){
4991             this.update(this.value);
4992         }
4993     },
4994
4995     /**
4996      * Gets the current selected value of the date field
4997      * @return {Date} The selected date
4998      */
4999     getValue : function(){
5000         return this.value;
5001     },
5002
5003     // private
5004     focus : function(){
5005         if(this.el){
5006             this.update(this.activeDate);
5007         }
5008     },
5009
5010     // privateval
5011     onRender : function(container, position){
5012         
5013         var m = [
5014              '<table cellspacing="0">',
5015                 '<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>',
5016                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
5017         var dn = this.dayNames;
5018         for(var i = 0; i < 7; i++){
5019             var d = this.startDay+i;
5020             if(d > 6){
5021                 d = d-7;
5022             }
5023             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
5024         }
5025         m[m.length] = "</tr></thead><tbody><tr>";
5026         for(var i = 0; i < 42; i++) {
5027             if(i % 7 == 0 && i != 0){
5028                 m[m.length] = "</tr><tr>";
5029             }
5030             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
5031         }
5032         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
5033             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
5034
5035         var el = document.createElement("div");
5036         el.className = "x-date-picker";
5037         el.innerHTML = m.join("");
5038
5039         container.dom.insertBefore(el, position);
5040
5041         this.el = Roo.get(el);
5042         this.eventEl = Roo.get(el.firstChild);
5043
5044         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
5045             handler: this.showPrevMonth,
5046             scope: this,
5047             preventDefault:true,
5048             stopDefault:true
5049         });
5050
5051         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
5052             handler: this.showNextMonth,
5053             scope: this,
5054             preventDefault:true,
5055             stopDefault:true
5056         });
5057
5058         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
5059
5060         this.monthPicker = this.el.down('div.x-date-mp');
5061         this.monthPicker.enableDisplayMode('block');
5062         
5063         var kn = new Roo.KeyNav(this.eventEl, {
5064             "left" : function(e){
5065                 e.ctrlKey ?
5066                     this.showPrevMonth() :
5067                     this.update(this.activeDate.add("d", -1));
5068             },
5069
5070             "right" : function(e){
5071                 e.ctrlKey ?
5072                     this.showNextMonth() :
5073                     this.update(this.activeDate.add("d", 1));
5074             },
5075
5076             "up" : function(e){
5077                 e.ctrlKey ?
5078                     this.showNextYear() :
5079                     this.update(this.activeDate.add("d", -7));
5080             },
5081
5082             "down" : function(e){
5083                 e.ctrlKey ?
5084                     this.showPrevYear() :
5085                     this.update(this.activeDate.add("d", 7));
5086             },
5087
5088             "pageUp" : function(e){
5089                 this.showNextMonth();
5090             },
5091
5092             "pageDown" : function(e){
5093                 this.showPrevMonth();
5094             },
5095
5096             "enter" : function(e){
5097                 e.stopPropagation();
5098                 return true;
5099             },
5100
5101             scope : this
5102         });
5103
5104         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
5105
5106         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
5107
5108         this.el.unselectable();
5109         
5110         this.cells = this.el.select("table.x-date-inner tbody td");
5111         this.textNodes = this.el.query("table.x-date-inner tbody span");
5112
5113         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
5114             text: "&#160;",
5115             tooltip: this.monthYearText
5116         });
5117
5118         this.mbtn.on('click', this.showMonthPicker, this);
5119         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
5120
5121
5122         var today = (new Date()).dateFormat(this.format);
5123         
5124         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
5125         if (this.showClear) {
5126             baseTb.add( new Roo.Toolbar.Fill());
5127         }
5128         baseTb.add({
5129             text: String.format(this.todayText, today),
5130             tooltip: String.format(this.todayTip, today),
5131             handler: this.selectToday,
5132             scope: this
5133         });
5134         
5135         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
5136             
5137         //});
5138         if (this.showClear) {
5139             
5140             baseTb.add( new Roo.Toolbar.Fill());
5141             baseTb.add({
5142                 text: '&#160;',
5143                 cls: 'x-btn-icon x-btn-clear',
5144                 handler: function() {
5145                     //this.value = '';
5146                     this.fireEvent("select", this, '');
5147                 },
5148                 scope: this
5149             });
5150         }
5151         
5152         
5153         if(Roo.isIE){
5154             this.el.repaint();
5155         }
5156         this.update(this.value);
5157     },
5158
5159     createMonthPicker : function(){
5160         if(!this.monthPicker.dom.firstChild){
5161             var buf = ['<table border="0" cellspacing="0">'];
5162             for(var i = 0; i < 6; i++){
5163                 buf.push(
5164                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
5165                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
5166                     i == 0 ?
5167                     '<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>' :
5168                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
5169                 );
5170             }
5171             buf.push(
5172                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
5173                     this.okText,
5174                     '</button><button type="button" class="x-date-mp-cancel">',
5175                     this.cancelText,
5176                     '</button></td></tr>',
5177                 '</table>'
5178             );
5179             this.monthPicker.update(buf.join(''));
5180             this.monthPicker.on('click', this.onMonthClick, this);
5181             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
5182
5183             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
5184             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
5185
5186             this.mpMonths.each(function(m, a, i){
5187                 i += 1;
5188                 if((i%2) == 0){
5189                     m.dom.xmonth = 5 + Math.round(i * .5);
5190                 }else{
5191                     m.dom.xmonth = Math.round((i-1) * .5);
5192                 }
5193             });
5194         }
5195     },
5196
5197     showMonthPicker : function(){
5198         this.createMonthPicker();
5199         var size = this.el.getSize();
5200         this.monthPicker.setSize(size);
5201         this.monthPicker.child('table').setSize(size);
5202
5203         this.mpSelMonth = (this.activeDate || this.value).getMonth();
5204         this.updateMPMonth(this.mpSelMonth);
5205         this.mpSelYear = (this.activeDate || this.value).getFullYear();
5206         this.updateMPYear(this.mpSelYear);
5207
5208         this.monthPicker.slideIn('t', {duration:.2});
5209     },
5210
5211     updateMPYear : function(y){
5212         this.mpyear = y;
5213         var ys = this.mpYears.elements;
5214         for(var i = 1; i <= 10; i++){
5215             var td = ys[i-1], y2;
5216             if((i%2) == 0){
5217                 y2 = y + Math.round(i * .5);
5218                 td.firstChild.innerHTML = y2;
5219                 td.xyear = y2;
5220             }else{
5221                 y2 = y - (5-Math.round(i * .5));
5222                 td.firstChild.innerHTML = y2;
5223                 td.xyear = y2;
5224             }
5225             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
5226         }
5227     },
5228
5229     updateMPMonth : function(sm){
5230         this.mpMonths.each(function(m, a, i){
5231             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
5232         });
5233     },
5234
5235     selectMPMonth: function(m){
5236         
5237     },
5238
5239     onMonthClick : function(e, t){
5240         e.stopEvent();
5241         var el = new Roo.Element(t), pn;
5242         if(el.is('button.x-date-mp-cancel')){
5243             this.hideMonthPicker();
5244         }
5245         else if(el.is('button.x-date-mp-ok')){
5246             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5247             this.hideMonthPicker();
5248         }
5249         else if(pn = el.up('td.x-date-mp-month', 2)){
5250             this.mpMonths.removeClass('x-date-mp-sel');
5251             pn.addClass('x-date-mp-sel');
5252             this.mpSelMonth = pn.dom.xmonth;
5253         }
5254         else if(pn = el.up('td.x-date-mp-year', 2)){
5255             this.mpYears.removeClass('x-date-mp-sel');
5256             pn.addClass('x-date-mp-sel');
5257             this.mpSelYear = pn.dom.xyear;
5258         }
5259         else if(el.is('a.x-date-mp-prev')){
5260             this.updateMPYear(this.mpyear-10);
5261         }
5262         else if(el.is('a.x-date-mp-next')){
5263             this.updateMPYear(this.mpyear+10);
5264         }
5265     },
5266
5267     onMonthDblClick : function(e, t){
5268         e.stopEvent();
5269         var el = new Roo.Element(t), pn;
5270         if(pn = el.up('td.x-date-mp-month', 2)){
5271             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
5272             this.hideMonthPicker();
5273         }
5274         else if(pn = el.up('td.x-date-mp-year', 2)){
5275             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5276             this.hideMonthPicker();
5277         }
5278     },
5279
5280     hideMonthPicker : function(disableAnim){
5281         if(this.monthPicker){
5282             if(disableAnim === true){
5283                 this.monthPicker.hide();
5284             }else{
5285                 this.monthPicker.slideOut('t', {duration:.2});
5286             }
5287         }
5288     },
5289
5290     // private
5291     showPrevMonth : function(e){
5292         this.update(this.activeDate.add("mo", -1));
5293     },
5294
5295     // private
5296     showNextMonth : function(e){
5297         this.update(this.activeDate.add("mo", 1));
5298     },
5299
5300     // private
5301     showPrevYear : function(){
5302         this.update(this.activeDate.add("y", -1));
5303     },
5304
5305     // private
5306     showNextYear : function(){
5307         this.update(this.activeDate.add("y", 1));
5308     },
5309
5310     // private
5311     handleMouseWheel : function(e){
5312         var delta = e.getWheelDelta();
5313         if(delta > 0){
5314             this.showPrevMonth();
5315             e.stopEvent();
5316         } else if(delta < 0){
5317             this.showNextMonth();
5318             e.stopEvent();
5319         }
5320     },
5321
5322     // private
5323     handleDateClick : function(e, t){
5324         e.stopEvent();
5325         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
5326             this.setValue(new Date(t.dateValue));
5327             this.fireEvent("select", this, this.value);
5328         }
5329     },
5330
5331     // private
5332     selectToday : function(){
5333         this.setValue(new Date().clearTime());
5334         this.fireEvent("select", this, this.value);
5335     },
5336
5337     // private
5338     update : function(date)
5339     {
5340         var vd = this.activeDate;
5341         this.activeDate = date;
5342         if(vd && this.el){
5343             var t = date.getTime();
5344             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
5345                 this.cells.removeClass("x-date-selected");
5346                 this.cells.each(function(c){
5347                    if(c.dom.firstChild.dateValue == t){
5348                        c.addClass("x-date-selected");
5349                        setTimeout(function(){
5350                             try{c.dom.firstChild.focus();}catch(e){}
5351                        }, 50);
5352                        return false;
5353                    }
5354                 });
5355                 return;
5356             }
5357         }
5358         
5359         var days = date.getDaysInMonth();
5360         var firstOfMonth = date.getFirstDateOfMonth();
5361         var startingPos = firstOfMonth.getDay()-this.startDay;
5362
5363         if(startingPos <= this.startDay){
5364             startingPos += 7;
5365         }
5366
5367         var pm = date.add("mo", -1);
5368         var prevStart = pm.getDaysInMonth()-startingPos;
5369
5370         var cells = this.cells.elements;
5371         var textEls = this.textNodes;
5372         days += startingPos;
5373
5374         // convert everything to numbers so it's fast
5375         var day = 86400000;
5376         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
5377         var today = new Date().clearTime().getTime();
5378         var sel = date.clearTime().getTime();
5379         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
5380         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
5381         var ddMatch = this.disabledDatesRE;
5382         var ddText = this.disabledDatesText;
5383         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
5384         var ddaysText = this.disabledDaysText;
5385         var format = this.format;
5386
5387         var setCellClass = function(cal, cell){
5388             cell.title = "";
5389             var t = d.getTime();
5390             cell.firstChild.dateValue = t;
5391             if(t == today){
5392                 cell.className += " x-date-today";
5393                 cell.title = cal.todayText;
5394             }
5395             if(t == sel){
5396                 cell.className += " x-date-selected";
5397                 setTimeout(function(){
5398                     try{cell.firstChild.focus();}catch(e){}
5399                 }, 50);
5400             }
5401             // disabling
5402             if(t < min) {
5403                 cell.className = " x-date-disabled";
5404                 cell.title = cal.minText;
5405                 return;
5406             }
5407             if(t > max) {
5408                 cell.className = " x-date-disabled";
5409                 cell.title = cal.maxText;
5410                 return;
5411             }
5412             if(ddays){
5413                 if(ddays.indexOf(d.getDay()) != -1){
5414                     cell.title = ddaysText;
5415                     cell.className = " x-date-disabled";
5416                 }
5417             }
5418             if(ddMatch && format){
5419                 var fvalue = d.dateFormat(format);
5420                 if(ddMatch.test(fvalue)){
5421                     cell.title = ddText.replace("%0", fvalue);
5422                     cell.className = " x-date-disabled";
5423                 }
5424             }
5425         };
5426
5427         var i = 0;
5428         for(; i < startingPos; i++) {
5429             textEls[i].innerHTML = (++prevStart);
5430             d.setDate(d.getDate()+1);
5431             cells[i].className = "x-date-prevday";
5432             setCellClass(this, cells[i]);
5433         }
5434         for(; i < days; i++){
5435             intDay = i - startingPos + 1;
5436             textEls[i].innerHTML = (intDay);
5437             d.setDate(d.getDate()+1);
5438             cells[i].className = "x-date-active";
5439             setCellClass(this, cells[i]);
5440         }
5441         var extraDays = 0;
5442         for(; i < 42; i++) {
5443              textEls[i].innerHTML = (++extraDays);
5444              d.setDate(d.getDate()+1);
5445              cells[i].className = "x-date-nextday";
5446              setCellClass(this, cells[i]);
5447         }
5448
5449         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
5450         this.fireEvent('monthchange', this, date);
5451         
5452         if(!this.internalRender){
5453             var main = this.el.dom.firstChild;
5454             var w = main.offsetWidth;
5455             this.el.setWidth(w + this.el.getBorderWidth("lr"));
5456             Roo.fly(main).setWidth(w);
5457             this.internalRender = true;
5458             // opera does not respect the auto grow header center column
5459             // then, after it gets a width opera refuses to recalculate
5460             // without a second pass
5461             if(Roo.isOpera && !this.secondPass){
5462                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
5463                 this.secondPass = true;
5464                 this.update.defer(10, this, [date]);
5465             }
5466         }
5467         
5468         
5469     }
5470 });        /*
5471  * Based on:
5472  * Ext JS Library 1.1.1
5473  * Copyright(c) 2006-2007, Ext JS, LLC.
5474  *
5475  * Originally Released Under LGPL - original licence link has changed is not relivant.
5476  *
5477  * Fork - LGPL
5478  * <script type="text/javascript">
5479  */
5480 /**
5481  * @class Roo.TabPanel
5482  * @extends Roo.util.Observable
5483  * A lightweight tab container.
5484  * <br><br>
5485  * Usage:
5486  * <pre><code>
5487 // basic tabs 1, built from existing content
5488 var tabs = new Roo.TabPanel("tabs1");
5489 tabs.addTab("script", "View Script");
5490 tabs.addTab("markup", "View Markup");
5491 tabs.activate("script");
5492
5493 // more advanced tabs, built from javascript
5494 var jtabs = new Roo.TabPanel("jtabs");
5495 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
5496
5497 // set up the UpdateManager
5498 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
5499 var updater = tab2.getUpdateManager();
5500 updater.setDefaultUrl("ajax1.htm");
5501 tab2.on('activate', updater.refresh, updater, true);
5502
5503 // Use setUrl for Ajax loading
5504 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
5505 tab3.setUrl("ajax2.htm", null, true);
5506
5507 // Disabled tab
5508 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
5509 tab4.disable();
5510
5511 jtabs.activate("jtabs-1");
5512  * </code></pre>
5513  * @constructor
5514  * Create a new TabPanel.
5515  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
5516  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
5517  */
5518 Roo.TabPanel = function(container, config){
5519     /**
5520     * The container element for this TabPanel.
5521     * @type Roo.Element
5522     */
5523     this.el = Roo.get(container, true);
5524     if(config){
5525         if(typeof config == "boolean"){
5526             this.tabPosition = config ? "bottom" : "top";
5527         }else{
5528             Roo.apply(this, config);
5529         }
5530     }
5531     if(this.tabPosition == "bottom"){
5532         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5533         this.el.addClass("x-tabs-bottom");
5534     }
5535     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
5536     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
5537     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
5538     if(Roo.isIE){
5539         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
5540     }
5541     if(this.tabPosition != "bottom"){
5542         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
5543          * @type Roo.Element
5544          */
5545         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5546         this.el.addClass("x-tabs-top");
5547     }
5548     this.items = [];
5549
5550     this.bodyEl.setStyle("position", "relative");
5551
5552     this.active = null;
5553     this.activateDelegate = this.activate.createDelegate(this);
5554
5555     this.addEvents({
5556         /**
5557          * @event tabchange
5558          * Fires when the active tab changes
5559          * @param {Roo.TabPanel} this
5560          * @param {Roo.TabPanelItem} activePanel The new active tab
5561          */
5562         "tabchange": true,
5563         /**
5564          * @event beforetabchange
5565          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
5566          * @param {Roo.TabPanel} this
5567          * @param {Object} e Set cancel to true on this object to cancel the tab change
5568          * @param {Roo.TabPanelItem} tab The tab being changed to
5569          */
5570         "beforetabchange" : true
5571     });
5572
5573     Roo.EventManager.onWindowResize(this.onResize, this);
5574     this.cpad = this.el.getPadding("lr");
5575     this.hiddenCount = 0;
5576
5577
5578     // toolbar on the tabbar support...
5579     if (this.toolbar) {
5580         var tcfg = this.toolbar;
5581         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
5582         this.toolbar = new Roo.Toolbar(tcfg);
5583         if (Roo.isSafari) {
5584             var tbl = tcfg.container.child('table', true);
5585             tbl.setAttribute('width', '100%');
5586         }
5587         
5588     }
5589    
5590
5591
5592     Roo.TabPanel.superclass.constructor.call(this);
5593 };
5594
5595 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
5596     /*
5597      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
5598      */
5599     tabPosition : "top",
5600     /*
5601      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
5602      */
5603     currentTabWidth : 0,
5604     /*
5605      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
5606      */
5607     minTabWidth : 40,
5608     /*
5609      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
5610      */
5611     maxTabWidth : 250,
5612     /*
5613      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
5614      */
5615     preferredTabWidth : 175,
5616     /*
5617      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
5618      */
5619     resizeTabs : false,
5620     /*
5621      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
5622      */
5623     monitorResize : true,
5624     /*
5625      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
5626      */
5627     toolbar : false,
5628
5629     /**
5630      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
5631      * @param {String} id The id of the div to use <b>or create</b>
5632      * @param {String} text The text for the tab
5633      * @param {String} content (optional) Content to put in the TabPanelItem body
5634      * @param {Boolean} closable (optional) True to create a close icon on the tab
5635      * @return {Roo.TabPanelItem} The created TabPanelItem
5636      */
5637     addTab : function(id, text, content, closable){
5638         var item = new Roo.TabPanelItem(this, id, text, closable);
5639         this.addTabItem(item);
5640         if(content){
5641             item.setContent(content);
5642         }
5643         return item;
5644     },
5645
5646     /**
5647      * Returns the {@link Roo.TabPanelItem} with the specified id/index
5648      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
5649      * @return {Roo.TabPanelItem}
5650      */
5651     getTab : function(id){
5652         return this.items[id];
5653     },
5654
5655     /**
5656      * Hides the {@link Roo.TabPanelItem} with the specified id/index
5657      * @param {String/Number} id The id or index of the TabPanelItem to hide.
5658      */
5659     hideTab : function(id){
5660         var t = this.items[id];
5661         if(!t.isHidden()){
5662            t.setHidden(true);
5663            this.hiddenCount++;
5664            this.autoSizeTabs();
5665         }
5666     },
5667
5668     /**
5669      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
5670      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
5671      */
5672     unhideTab : function(id){
5673         var t = this.items[id];
5674         if(t.isHidden()){
5675            t.setHidden(false);
5676            this.hiddenCount--;
5677            this.autoSizeTabs();
5678         }
5679     },
5680
5681     /**
5682      * Adds an existing {@link Roo.TabPanelItem}.
5683      * @param {Roo.TabPanelItem} item The TabPanelItem to add
5684      */
5685     addTabItem : function(item){
5686         this.items[item.id] = item;
5687         this.items.push(item);
5688         if(this.resizeTabs){
5689            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
5690            this.autoSizeTabs();
5691         }else{
5692             item.autoSize();
5693         }
5694     },
5695
5696     /**
5697      * Removes a {@link Roo.TabPanelItem}.
5698      * @param {String/Number} id The id or index of the TabPanelItem to remove.
5699      */
5700     removeTab : function(id){
5701         var items = this.items;
5702         var tab = items[id];
5703         if(!tab) { return; }
5704         var index = items.indexOf(tab);
5705         if(this.active == tab && items.length > 1){
5706             var newTab = this.getNextAvailable(index);
5707             if(newTab) {
5708                 newTab.activate();
5709             }
5710         }
5711         this.stripEl.dom.removeChild(tab.pnode.dom);
5712         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
5713             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
5714         }
5715         items.splice(index, 1);
5716         delete this.items[tab.id];
5717         tab.fireEvent("close", tab);
5718         tab.purgeListeners();
5719         this.autoSizeTabs();
5720     },
5721
5722     getNextAvailable : function(start){
5723         var items = this.items;
5724         var index = start;
5725         // look for a next tab that will slide over to
5726         // replace the one being removed
5727         while(index < items.length){
5728             var item = items[++index];
5729             if(item && !item.isHidden()){
5730                 return item;
5731             }
5732         }
5733         // if one isn't found select the previous tab (on the left)
5734         index = start;
5735         while(index >= 0){
5736             var item = items[--index];
5737             if(item && !item.isHidden()){
5738                 return item;
5739             }
5740         }
5741         return null;
5742     },
5743
5744     /**
5745      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
5746      * @param {String/Number} id The id or index of the TabPanelItem to disable.
5747      */
5748     disableTab : function(id){
5749         var tab = this.items[id];
5750         if(tab && this.active != tab){
5751             tab.disable();
5752         }
5753     },
5754
5755     /**
5756      * Enables a {@link Roo.TabPanelItem} that is disabled.
5757      * @param {String/Number} id The id or index of the TabPanelItem to enable.
5758      */
5759     enableTab : function(id){
5760         var tab = this.items[id];
5761         tab.enable();
5762     },
5763
5764     /**
5765      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
5766      * @param {String/Number} id The id or index of the TabPanelItem to activate.
5767      * @return {Roo.TabPanelItem} The TabPanelItem.
5768      */
5769     activate : function(id){
5770         var tab = this.items[id];
5771         if(!tab){
5772             return null;
5773         }
5774         if(tab == this.active || tab.disabled){
5775             return tab;
5776         }
5777         var e = {};
5778         this.fireEvent("beforetabchange", this, e, tab);
5779         if(e.cancel !== true && !tab.disabled){
5780             if(this.active){
5781                 this.active.hide();
5782             }
5783             this.active = this.items[id];
5784             this.active.show();
5785             this.fireEvent("tabchange", this, this.active);
5786         }
5787         return tab;
5788     },
5789
5790     /**
5791      * Gets the active {@link Roo.TabPanelItem}.
5792      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
5793      */
5794     getActiveTab : function(){
5795         return this.active;
5796     },
5797
5798     /**
5799      * Updates the tab body element to fit the height of the container element
5800      * for overflow scrolling
5801      * @param {Number} targetHeight (optional) Override the starting height from the elements height
5802      */
5803     syncHeight : function(targetHeight){
5804         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
5805         var bm = this.bodyEl.getMargins();
5806         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
5807         this.bodyEl.setHeight(newHeight);
5808         return newHeight;
5809     },
5810
5811     onResize : function(){
5812         if(this.monitorResize){
5813             this.autoSizeTabs();
5814         }
5815     },
5816
5817     /**
5818      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
5819      */
5820     beginUpdate : function(){
5821         this.updating = true;
5822     },
5823
5824     /**
5825      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
5826      */
5827     endUpdate : function(){
5828         this.updating = false;
5829         this.autoSizeTabs();
5830     },
5831
5832     /**
5833      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
5834      */
5835     autoSizeTabs : function(){
5836         var count = this.items.length;
5837         var vcount = count - this.hiddenCount;
5838         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
5839             return;
5840         }
5841         var w = Math.max(this.el.getWidth() - this.cpad, 10);
5842         var availWidth = Math.floor(w / vcount);
5843         var b = this.stripBody;
5844         if(b.getWidth() > w){
5845             var tabs = this.items;
5846             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
5847             if(availWidth < this.minTabWidth){
5848                 /*if(!this.sleft){    // incomplete scrolling code
5849                     this.createScrollButtons();
5850                 }
5851                 this.showScroll();
5852                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
5853             }
5854         }else{
5855             if(this.currentTabWidth < this.preferredTabWidth){
5856                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
5857             }
5858         }
5859     },
5860
5861     /**
5862      * Returns the number of tabs in this TabPanel.
5863      * @return {Number}
5864      */
5865      getCount : function(){
5866          return this.items.length;
5867      },
5868
5869     /**
5870      * Resizes all the tabs to the passed width
5871      * @param {Number} The new width
5872      */
5873     setTabWidth : function(width){
5874         this.currentTabWidth = width;
5875         for(var i = 0, len = this.items.length; i < len; i++) {
5876                 if(!this.items[i].isHidden()) {
5877                 this.items[i].setWidth(width);
5878             }
5879         }
5880     },
5881
5882     /**
5883      * Destroys this TabPanel
5884      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
5885      */
5886     destroy : function(removeEl){
5887         Roo.EventManager.removeResizeListener(this.onResize, this);
5888         for(var i = 0, len = this.items.length; i < len; i++){
5889             this.items[i].purgeListeners();
5890         }
5891         if(removeEl === true){
5892             this.el.update("");
5893             this.el.remove();
5894         }
5895     }
5896 });
5897
5898 /**
5899  * @class Roo.TabPanelItem
5900  * @extends Roo.util.Observable
5901  * Represents an individual item (tab plus body) in a TabPanel.
5902  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
5903  * @param {String} id The id of this TabPanelItem
5904  * @param {String} text The text for the tab of this TabPanelItem
5905  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
5906  */
5907 Roo.TabPanelItem = function(tabPanel, id, text, closable){
5908     /**
5909      * The {@link Roo.TabPanel} this TabPanelItem belongs to
5910      * @type Roo.TabPanel
5911      */
5912     this.tabPanel = tabPanel;
5913     /**
5914      * The id for this TabPanelItem
5915      * @type String
5916      */
5917     this.id = id;
5918     /** @private */
5919     this.disabled = false;
5920     /** @private */
5921     this.text = text;
5922     /** @private */
5923     this.loaded = false;
5924     this.closable = closable;
5925
5926     /**
5927      * The body element for this TabPanelItem.
5928      * @type Roo.Element
5929      */
5930     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
5931     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
5932     this.bodyEl.setStyle("display", "block");
5933     this.bodyEl.setStyle("zoom", "1");
5934     this.hideAction();
5935
5936     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
5937     /** @private */
5938     this.el = Roo.get(els.el, true);
5939     this.inner = Roo.get(els.inner, true);
5940     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
5941     this.pnode = Roo.get(els.el.parentNode, true);
5942     this.el.on("mousedown", this.onTabMouseDown, this);
5943     this.el.on("click", this.onTabClick, this);
5944     /** @private */
5945     if(closable){
5946         var c = Roo.get(els.close, true);
5947         c.dom.title = this.closeText;
5948         c.addClassOnOver("close-over");
5949         c.on("click", this.closeClick, this);
5950      }
5951
5952     this.addEvents({
5953          /**
5954          * @event activate
5955          * Fires when this tab becomes the active tab.
5956          * @param {Roo.TabPanel} tabPanel The parent TabPanel
5957          * @param {Roo.TabPanelItem} this
5958          */
5959         "activate": true,
5960         /**
5961          * @event beforeclose
5962          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
5963          * @param {Roo.TabPanelItem} this
5964          * @param {Object} e Set cancel to true on this object to cancel the close.
5965          */
5966         "beforeclose": true,
5967         /**
5968          * @event close
5969          * Fires when this tab is closed.
5970          * @param {Roo.TabPanelItem} this
5971          */
5972          "close": true,
5973         /**
5974          * @event deactivate
5975          * Fires when this tab is no longer the active tab.
5976          * @param {Roo.TabPanel} tabPanel The parent TabPanel
5977          * @param {Roo.TabPanelItem} this
5978          */
5979          "deactivate" : true
5980     });
5981     this.hidden = false;
5982
5983     Roo.TabPanelItem.superclass.constructor.call(this);
5984 };
5985
5986 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
5987     purgeListeners : function(){
5988        Roo.util.Observable.prototype.purgeListeners.call(this);
5989        this.el.removeAllListeners();
5990     },
5991     /**
5992      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
5993      */
5994     show : function(){
5995         this.pnode.addClass("on");
5996         this.showAction();
5997         if(Roo.isOpera){
5998             this.tabPanel.stripWrap.repaint();
5999         }
6000         this.fireEvent("activate", this.tabPanel, this);
6001     },
6002
6003     /**
6004      * Returns true if this tab is the active tab.
6005      * @return {Boolean}
6006      */
6007     isActive : function(){
6008         return this.tabPanel.getActiveTab() == this;
6009     },
6010
6011     /**
6012      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
6013      */
6014     hide : function(){
6015         this.pnode.removeClass("on");
6016         this.hideAction();
6017         this.fireEvent("deactivate", this.tabPanel, this);
6018     },
6019
6020     hideAction : function(){
6021         this.bodyEl.hide();
6022         this.bodyEl.setStyle("position", "absolute");
6023         this.bodyEl.setLeft("-20000px");
6024         this.bodyEl.setTop("-20000px");
6025     },
6026
6027     showAction : function(){
6028         this.bodyEl.setStyle("position", "relative");
6029         this.bodyEl.setTop("");
6030         this.bodyEl.setLeft("");
6031         this.bodyEl.show();
6032     },
6033
6034     /**
6035      * Set the tooltip for the tab.
6036      * @param {String} tooltip The tab's tooltip
6037      */
6038     setTooltip : function(text){
6039         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
6040             this.textEl.dom.qtip = text;
6041             this.textEl.dom.removeAttribute('title');
6042         }else{
6043             this.textEl.dom.title = text;
6044         }
6045     },
6046
6047     onTabClick : function(e){
6048         e.preventDefault();
6049         this.tabPanel.activate(this.id);
6050     },
6051
6052     onTabMouseDown : function(e){
6053         e.preventDefault();
6054         this.tabPanel.activate(this.id);
6055     },
6056
6057     getWidth : function(){
6058         return this.inner.getWidth();
6059     },
6060
6061     setWidth : function(width){
6062         var iwidth = width - this.pnode.getPadding("lr");
6063         this.inner.setWidth(iwidth);
6064         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
6065         this.pnode.setWidth(width);
6066     },
6067
6068     /**
6069      * Show or hide the tab
6070      * @param {Boolean} hidden True to hide or false to show.
6071      */
6072     setHidden : function(hidden){
6073         this.hidden = hidden;
6074         this.pnode.setStyle("display", hidden ? "none" : "");
6075     },
6076
6077     /**
6078      * Returns true if this tab is "hidden"
6079      * @return {Boolean}
6080      */
6081     isHidden : function(){
6082         return this.hidden;
6083     },
6084
6085     /**
6086      * Returns the text for this tab
6087      * @return {String}
6088      */
6089     getText : function(){
6090         return this.text;
6091     },
6092
6093     autoSize : function(){
6094         //this.el.beginMeasure();
6095         this.textEl.setWidth(1);
6096         /*
6097          *  #2804 [new] Tabs in Roojs
6098          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
6099          */
6100         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
6101         //this.el.endMeasure();
6102     },
6103
6104     /**
6105      * Sets the text for the tab (Note: this also sets the tooltip text)
6106      * @param {String} text The tab's text and tooltip
6107      */
6108     setText : function(text){
6109         this.text = text;
6110         this.textEl.update(text);
6111         this.setTooltip(text);
6112         if(!this.tabPanel.resizeTabs){
6113             this.autoSize();
6114         }
6115     },
6116     /**
6117      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
6118      */
6119     activate : function(){
6120         this.tabPanel.activate(this.id);
6121     },
6122
6123     /**
6124      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
6125      */
6126     disable : function(){
6127         if(this.tabPanel.active != this){
6128             this.disabled = true;
6129             this.pnode.addClass("disabled");
6130         }
6131     },
6132
6133     /**
6134      * Enables this TabPanelItem if it was previously disabled.
6135      */
6136     enable : function(){
6137         this.disabled = false;
6138         this.pnode.removeClass("disabled");
6139     },
6140
6141     /**
6142      * Sets the content for this TabPanelItem.
6143      * @param {String} content The content
6144      * @param {Boolean} loadScripts true to look for and load scripts
6145      */
6146     setContent : function(content, loadScripts){
6147         this.bodyEl.update(content, loadScripts);
6148     },
6149
6150     /**
6151      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
6152      * @return {Roo.UpdateManager} The UpdateManager
6153      */
6154     getUpdateManager : function(){
6155         return this.bodyEl.getUpdateManager();
6156     },
6157
6158     /**
6159      * Set a URL to be used to load the content for this TabPanelItem.
6160      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
6161      * @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)
6162      * @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)
6163      * @return {Roo.UpdateManager} The UpdateManager
6164      */
6165     setUrl : function(url, params, loadOnce){
6166         if(this.refreshDelegate){
6167             this.un('activate', this.refreshDelegate);
6168         }
6169         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
6170         this.on("activate", this.refreshDelegate);
6171         return this.bodyEl.getUpdateManager();
6172     },
6173
6174     /** @private */
6175     _handleRefresh : function(url, params, loadOnce){
6176         if(!loadOnce || !this.loaded){
6177             var updater = this.bodyEl.getUpdateManager();
6178             updater.update(url, params, this._setLoaded.createDelegate(this));
6179         }
6180     },
6181
6182     /**
6183      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
6184      *   Will fail silently if the setUrl method has not been called.
6185      *   This does not activate the panel, just updates its content.
6186      */
6187     refresh : function(){
6188         if(this.refreshDelegate){
6189            this.loaded = false;
6190            this.refreshDelegate();
6191         }
6192     },
6193
6194     /** @private */
6195     _setLoaded : function(){
6196         this.loaded = true;
6197     },
6198
6199     /** @private */
6200     closeClick : function(e){
6201         var o = {};
6202         e.stopEvent();
6203         this.fireEvent("beforeclose", this, o);
6204         if(o.cancel !== true){
6205             this.tabPanel.removeTab(this.id);
6206         }
6207     },
6208     /**
6209      * The text displayed in the tooltip for the close icon.
6210      * @type String
6211      */
6212     closeText : "Close this tab"
6213 });
6214
6215 /** @private */
6216 Roo.TabPanel.prototype.createStrip = function(container){
6217     var strip = document.createElement("div");
6218     strip.className = "x-tabs-wrap";
6219     container.appendChild(strip);
6220     return strip;
6221 };
6222 /** @private */
6223 Roo.TabPanel.prototype.createStripList = function(strip){
6224     // div wrapper for retard IE
6225     // returns the "tr" element.
6226     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
6227         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
6228         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
6229     return strip.firstChild.firstChild.firstChild.firstChild;
6230 };
6231 /** @private */
6232 Roo.TabPanel.prototype.createBody = function(container){
6233     var body = document.createElement("div");
6234     Roo.id(body, "tab-body");
6235     Roo.fly(body).addClass("x-tabs-body");
6236     container.appendChild(body);
6237     return body;
6238 };
6239 /** @private */
6240 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
6241     var body = Roo.getDom(id);
6242     if(!body){
6243         body = document.createElement("div");
6244         body.id = id;
6245     }
6246     Roo.fly(body).addClass("x-tabs-item-body");
6247     bodyEl.insertBefore(body, bodyEl.firstChild);
6248     return body;
6249 };
6250 /** @private */
6251 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
6252     var td = document.createElement("td");
6253     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
6254     //stripEl.appendChild(td);
6255     if(closable){
6256         td.className = "x-tabs-closable";
6257         if(!this.closeTpl){
6258             this.closeTpl = new Roo.Template(
6259                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6260                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
6261                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
6262             );
6263         }
6264         var el = this.closeTpl.overwrite(td, {"text": text});
6265         var close = el.getElementsByTagName("div")[0];
6266         var inner = el.getElementsByTagName("em")[0];
6267         return {"el": el, "close": close, "inner": inner};
6268     } else {
6269         if(!this.tabTpl){
6270             this.tabTpl = new Roo.Template(
6271                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6272                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
6273             );
6274         }
6275         var el = this.tabTpl.overwrite(td, {"text": text});
6276         var inner = el.getElementsByTagName("em")[0];
6277         return {"el": el, "inner": inner};
6278     }
6279 };/*
6280  * Based on:
6281  * Ext JS Library 1.1.1
6282  * Copyright(c) 2006-2007, Ext JS, LLC.
6283  *
6284  * Originally Released Under LGPL - original licence link has changed is not relivant.
6285  *
6286  * Fork - LGPL
6287  * <script type="text/javascript">
6288  */
6289
6290 /**
6291  * @class Roo.Button
6292  * @extends Roo.util.Observable
6293  * Simple Button class
6294  * @cfg {String} text The button text
6295  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
6296  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
6297  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
6298  * @cfg {Object} scope The scope of the handler
6299  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
6300  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
6301  * @cfg {Boolean} hidden True to start hidden (defaults to false)
6302  * @cfg {Boolean} disabled True to start disabled (defaults to false)
6303  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
6304  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
6305    applies if enableToggle = true)
6306  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
6307  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
6308   an {@link Roo.util.ClickRepeater} config object (defaults to false).
6309  * @constructor
6310  * Create a new button
6311  * @param {Object} config The config object
6312  */
6313 Roo.Button = function(renderTo, config)
6314 {
6315     if (!config) {
6316         config = renderTo;
6317         renderTo = config.renderTo || false;
6318     }
6319     
6320     Roo.apply(this, config);
6321     this.addEvents({
6322         /**
6323              * @event click
6324              * Fires when this button is clicked
6325              * @param {Button} this
6326              * @param {EventObject} e The click event
6327              */
6328             "click" : true,
6329         /**
6330              * @event toggle
6331              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
6332              * @param {Button} this
6333              * @param {Boolean} pressed
6334              */
6335             "toggle" : true,
6336         /**
6337              * @event mouseover
6338              * Fires when the mouse hovers over the button
6339              * @param {Button} this
6340              * @param {Event} e The event object
6341              */
6342         'mouseover' : true,
6343         /**
6344              * @event mouseout
6345              * Fires when the mouse exits the button
6346              * @param {Button} this
6347              * @param {Event} e The event object
6348              */
6349         'mouseout': true,
6350          /**
6351              * @event render
6352              * Fires when the button is rendered
6353              * @param {Button} this
6354              */
6355         'render': true
6356     });
6357     if(this.menu){
6358         this.menu = Roo.menu.MenuMgr.get(this.menu);
6359     }
6360     // register listeners first!!  - so render can be captured..
6361     Roo.util.Observable.call(this);
6362     if(renderTo){
6363         this.render(renderTo);
6364     }
6365     
6366   
6367 };
6368
6369 Roo.extend(Roo.Button, Roo.util.Observable, {
6370     /**
6371      * 
6372      */
6373     
6374     /**
6375      * Read-only. True if this button is hidden
6376      * @type Boolean
6377      */
6378     hidden : false,
6379     /**
6380      * Read-only. True if this button is disabled
6381      * @type Boolean
6382      */
6383     disabled : false,
6384     /**
6385      * Read-only. True if this button is pressed (only if enableToggle = true)
6386      * @type Boolean
6387      */
6388     pressed : false,
6389
6390     /**
6391      * @cfg {Number} tabIndex 
6392      * The DOM tabIndex for this button (defaults to undefined)
6393      */
6394     tabIndex : undefined,
6395
6396     /**
6397      * @cfg {Boolean} enableToggle
6398      * True to enable pressed/not pressed toggling (defaults to false)
6399      */
6400     enableToggle: false,
6401     /**
6402      * @cfg {Roo.menu.Menu} menu
6403      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
6404      */
6405     menu : undefined,
6406     /**
6407      * @cfg {String} menuAlign
6408      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
6409      */
6410     menuAlign : "tl-bl?",
6411
6412     /**
6413      * @cfg {String} iconCls
6414      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
6415      */
6416     iconCls : undefined,
6417     /**
6418      * @cfg {String} type
6419      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
6420      */
6421     type : 'button',
6422
6423     // private
6424     menuClassTarget: 'tr',
6425
6426     /**
6427      * @cfg {String} clickEvent
6428      * The type of event to map to the button's event handler (defaults to 'click')
6429      */
6430     clickEvent : 'click',
6431
6432     /**
6433      * @cfg {Boolean} handleMouseEvents
6434      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
6435      */
6436     handleMouseEvents : true,
6437
6438     /**
6439      * @cfg {String} tooltipType
6440      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
6441      */
6442     tooltipType : 'qtip',
6443
6444     /**
6445      * @cfg {String} cls
6446      * A CSS class to apply to the button's main element.
6447      */
6448     
6449     /**
6450      * @cfg {Roo.Template} template (Optional)
6451      * An {@link Roo.Template} with which to create the Button's main element. This Template must
6452      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
6453      * require code modifications if required elements (e.g. a button) aren't present.
6454      */
6455
6456     // private
6457     render : function(renderTo){
6458         var btn;
6459         if(this.hideParent){
6460             this.parentEl = Roo.get(renderTo);
6461         }
6462         if(!this.dhconfig){
6463             if(!this.template){
6464                 if(!Roo.Button.buttonTemplate){
6465                     // hideous table template
6466                     Roo.Button.buttonTemplate = new Roo.Template(
6467                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
6468                         '<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>',
6469                         "</tr></tbody></table>");
6470                 }
6471                 this.template = Roo.Button.buttonTemplate;
6472             }
6473             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
6474             var btnEl = btn.child("button:first");
6475             btnEl.on('focus', this.onFocus, this);
6476             btnEl.on('blur', this.onBlur, this);
6477             if(this.cls){
6478                 btn.addClass(this.cls);
6479             }
6480             if(this.icon){
6481                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
6482             }
6483             if(this.iconCls){
6484                 btnEl.addClass(this.iconCls);
6485                 if(!this.cls){
6486                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6487                 }
6488             }
6489             if(this.tabIndex !== undefined){
6490                 btnEl.dom.tabIndex = this.tabIndex;
6491             }
6492             if(this.tooltip){
6493                 if(typeof this.tooltip == 'object'){
6494                     Roo.QuickTips.tips(Roo.apply({
6495                           target: btnEl.id
6496                     }, this.tooltip));
6497                 } else {
6498                     btnEl.dom[this.tooltipType] = this.tooltip;
6499                 }
6500             }
6501         }else{
6502             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
6503         }
6504         this.el = btn;
6505         if(this.id){
6506             this.el.dom.id = this.el.id = this.id;
6507         }
6508         if(this.menu){
6509             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
6510             this.menu.on("show", this.onMenuShow, this);
6511             this.menu.on("hide", this.onMenuHide, this);
6512         }
6513         btn.addClass("x-btn");
6514         if(Roo.isIE && !Roo.isIE7){
6515             this.autoWidth.defer(1, this);
6516         }else{
6517             this.autoWidth();
6518         }
6519         if(this.handleMouseEvents){
6520             btn.on("mouseover", this.onMouseOver, this);
6521             btn.on("mouseout", this.onMouseOut, this);
6522             btn.on("mousedown", this.onMouseDown, this);
6523         }
6524         btn.on(this.clickEvent, this.onClick, this);
6525         //btn.on("mouseup", this.onMouseUp, this);
6526         if(this.hidden){
6527             this.hide();
6528         }
6529         if(this.disabled){
6530             this.disable();
6531         }
6532         Roo.ButtonToggleMgr.register(this);
6533         if(this.pressed){
6534             this.el.addClass("x-btn-pressed");
6535         }
6536         if(this.repeat){
6537             var repeater = new Roo.util.ClickRepeater(btn,
6538                 typeof this.repeat == "object" ? this.repeat : {}
6539             );
6540             repeater.on("click", this.onClick,  this);
6541         }
6542         
6543         this.fireEvent('render', this);
6544         
6545     },
6546     /**
6547      * Returns the button's underlying element
6548      * @return {Roo.Element} The element
6549      */
6550     getEl : function(){
6551         return this.el;  
6552     },
6553     
6554     /**
6555      * Destroys this Button and removes any listeners.
6556      */
6557     destroy : function(){
6558         Roo.ButtonToggleMgr.unregister(this);
6559         this.el.removeAllListeners();
6560         this.purgeListeners();
6561         this.el.remove();
6562     },
6563
6564     // private
6565     autoWidth : function(){
6566         if(this.el){
6567             this.el.setWidth("auto");
6568             if(Roo.isIE7 && Roo.isStrict){
6569                 var ib = this.el.child('button');
6570                 if(ib && ib.getWidth() > 20){
6571                     ib.clip();
6572                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6573                 }
6574             }
6575             if(this.minWidth){
6576                 if(this.hidden){
6577                     this.el.beginMeasure();
6578                 }
6579                 if(this.el.getWidth() < this.minWidth){
6580                     this.el.setWidth(this.minWidth);
6581                 }
6582                 if(this.hidden){
6583                     this.el.endMeasure();
6584                 }
6585             }
6586         }
6587     },
6588
6589     /**
6590      * Assigns this button's click handler
6591      * @param {Function} handler The function to call when the button is clicked
6592      * @param {Object} scope (optional) Scope for the function passed in
6593      */
6594     setHandler : function(handler, scope){
6595         this.handler = handler;
6596         this.scope = scope;  
6597     },
6598     
6599     /**
6600      * Sets this button's text
6601      * @param {String} text The button text
6602      */
6603     setText : function(text){
6604         this.text = text;
6605         if(this.el){
6606             this.el.child("td.x-btn-center button.x-btn-text").update(text);
6607         }
6608         this.autoWidth();
6609     },
6610     
6611     /**
6612      * Gets the text for this button
6613      * @return {String} The button text
6614      */
6615     getText : function(){
6616         return this.text;  
6617     },
6618     
6619     /**
6620      * Show this button
6621      */
6622     show: function(){
6623         this.hidden = false;
6624         if(this.el){
6625             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
6626         }
6627     },
6628     
6629     /**
6630      * Hide this button
6631      */
6632     hide: function(){
6633         this.hidden = true;
6634         if(this.el){
6635             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
6636         }
6637     },
6638     
6639     /**
6640      * Convenience function for boolean show/hide
6641      * @param {Boolean} visible True to show, false to hide
6642      */
6643     setVisible: function(visible){
6644         if(visible) {
6645             this.show();
6646         }else{
6647             this.hide();
6648         }
6649     },
6650     /**
6651          * Similar to toggle, but does not trigger event.
6652          * @param {Boolean} state [required] Force a particular state
6653          */
6654         setPressed : function(state)
6655         {
6656             if(state != this.pressed){
6657             if(state){
6658                 this.el.addClass("x-btn-pressed");
6659                 this.pressed = true;
6660             }else{
6661                 this.el.removeClass("x-btn-pressed");
6662                 this.pressed = false;
6663             }
6664         }
6665         },
6666         
6667     /**
6668      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
6669      * @param {Boolean} state (optional) Force a particular state
6670      */
6671     toggle : function(state){
6672         state = state === undefined ? !this.pressed : state;
6673         if(state != this.pressed){
6674             if(state){
6675                 this.el.addClass("x-btn-pressed");
6676                 this.pressed = true;
6677                 this.fireEvent("toggle", this, true);
6678             }else{
6679                 this.el.removeClass("x-btn-pressed");
6680                 this.pressed = false;
6681                 this.fireEvent("toggle", this, false);
6682             }
6683             if(this.toggleHandler){
6684                 this.toggleHandler.call(this.scope || this, this, state);
6685             }
6686         }
6687     },
6688     
6689         
6690         
6691     /**
6692      * Focus the button
6693      */
6694     focus : function(){
6695         this.el.child('button:first').focus();
6696     },
6697     
6698     /**
6699      * Disable this button
6700      */
6701     disable : function(){
6702         if(this.el){
6703             this.el.addClass("x-btn-disabled");
6704         }
6705         this.disabled = true;
6706     },
6707     
6708     /**
6709      * Enable this button
6710      */
6711     enable : function(){
6712         if(this.el){
6713             this.el.removeClass("x-btn-disabled");
6714         }
6715         this.disabled = false;
6716     },
6717
6718     /**
6719      * Convenience function for boolean enable/disable
6720      * @param {Boolean} enabled True to enable, false to disable
6721      */
6722     setDisabled : function(v){
6723         this[v !== true ? "enable" : "disable"]();
6724     },
6725
6726     // private
6727     onClick : function(e)
6728     {
6729         if(e){
6730             e.preventDefault();
6731         }
6732         if(e.button != 0){
6733             return;
6734         }
6735         if(!this.disabled){
6736             if(this.enableToggle){
6737                 this.toggle();
6738             }
6739             if(this.menu && !this.menu.isVisible()){
6740                 this.menu.show(this.el, this.menuAlign);
6741             }
6742             this.fireEvent("click", this, e);
6743             if(this.handler){
6744                 this.el.removeClass("x-btn-over");
6745                 this.handler.call(this.scope || this, this, e);
6746             }
6747         }
6748     },
6749     // private
6750     onMouseOver : function(e){
6751         if(!this.disabled){
6752             this.el.addClass("x-btn-over");
6753             this.fireEvent('mouseover', this, e);
6754         }
6755     },
6756     // private
6757     onMouseOut : function(e){
6758         if(!e.within(this.el,  true)){
6759             this.el.removeClass("x-btn-over");
6760             this.fireEvent('mouseout', this, e);
6761         }
6762     },
6763     // private
6764     onFocus : function(e){
6765         if(!this.disabled){
6766             this.el.addClass("x-btn-focus");
6767         }
6768     },
6769     // private
6770     onBlur : function(e){
6771         this.el.removeClass("x-btn-focus");
6772     },
6773     // private
6774     onMouseDown : function(e){
6775         if(!this.disabled && e.button == 0){
6776             this.el.addClass("x-btn-click");
6777             Roo.get(document).on('mouseup', this.onMouseUp, this);
6778         }
6779     },
6780     // private
6781     onMouseUp : function(e){
6782         if(e.button == 0){
6783             this.el.removeClass("x-btn-click");
6784             Roo.get(document).un('mouseup', this.onMouseUp, this);
6785         }
6786     },
6787     // private
6788     onMenuShow : function(e){
6789         this.el.addClass("x-btn-menu-active");
6790     },
6791     // private
6792     onMenuHide : function(e){
6793         this.el.removeClass("x-btn-menu-active");
6794     }   
6795 });
6796
6797 // Private utility class used by Button
6798 Roo.ButtonToggleMgr = function(){
6799    var groups = {};
6800    
6801    function toggleGroup(btn, state){
6802        if(state){
6803            var g = groups[btn.toggleGroup];
6804            for(var i = 0, l = g.length; i < l; i++){
6805                if(g[i] != btn){
6806                    g[i].toggle(false);
6807                }
6808            }
6809        }
6810    }
6811    
6812    return {
6813        register : function(btn){
6814            if(!btn.toggleGroup){
6815                return;
6816            }
6817            var g = groups[btn.toggleGroup];
6818            if(!g){
6819                g = groups[btn.toggleGroup] = [];
6820            }
6821            g.push(btn);
6822            btn.on("toggle", toggleGroup);
6823        },
6824        
6825        unregister : function(btn){
6826            if(!btn.toggleGroup){
6827                return;
6828            }
6829            var g = groups[btn.toggleGroup];
6830            if(g){
6831                g.remove(btn);
6832                btn.un("toggle", toggleGroup);
6833            }
6834        }
6835    };
6836 }();/*
6837  * Based on:
6838  * Ext JS Library 1.1.1
6839  * Copyright(c) 2006-2007, Ext JS, LLC.
6840  *
6841  * Originally Released Under LGPL - original licence link has changed is not relivant.
6842  *
6843  * Fork - LGPL
6844  * <script type="text/javascript">
6845  */
6846  
6847 /**
6848  * @class Roo.SplitButton
6849  * @extends Roo.Button
6850  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
6851  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
6852  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
6853  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
6854  * @cfg {String} arrowTooltip The title attribute of the arrow
6855  * @constructor
6856  * Create a new menu button
6857  * @param {String/HTMLElement/Element} renderTo The element to append the button to
6858  * @param {Object} config The config object
6859  */
6860 Roo.SplitButton = function(renderTo, config){
6861     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
6862     /**
6863      * @event arrowclick
6864      * Fires when this button's arrow is clicked
6865      * @param {SplitButton} this
6866      * @param {EventObject} e The click event
6867      */
6868     this.addEvents({"arrowclick":true});
6869 };
6870
6871 Roo.extend(Roo.SplitButton, Roo.Button, {
6872     render : function(renderTo){
6873         // this is one sweet looking template!
6874         var tpl = new Roo.Template(
6875             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
6876             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
6877             '<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>',
6878             "</tbody></table></td><td>",
6879             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
6880             '<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>',
6881             "</tbody></table></td></tr></table>"
6882         );
6883         var btn = tpl.append(renderTo, [this.text, this.type], true);
6884         var btnEl = btn.child("button");
6885         if(this.cls){
6886             btn.addClass(this.cls);
6887         }
6888         if(this.icon){
6889             btnEl.setStyle('background-image', 'url(' +this.icon +')');
6890         }
6891         if(this.iconCls){
6892             btnEl.addClass(this.iconCls);
6893             if(!this.cls){
6894                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6895             }
6896         }
6897         this.el = btn;
6898         if(this.handleMouseEvents){
6899             btn.on("mouseover", this.onMouseOver, this);
6900             btn.on("mouseout", this.onMouseOut, this);
6901             btn.on("mousedown", this.onMouseDown, this);
6902             btn.on("mouseup", this.onMouseUp, this);
6903         }
6904         btn.on(this.clickEvent, this.onClick, this);
6905         if(this.tooltip){
6906             if(typeof this.tooltip == 'object'){
6907                 Roo.QuickTips.tips(Roo.apply({
6908                       target: btnEl.id
6909                 }, this.tooltip));
6910             } else {
6911                 btnEl.dom[this.tooltipType] = this.tooltip;
6912             }
6913         }
6914         if(this.arrowTooltip){
6915             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
6916         }
6917         if(this.hidden){
6918             this.hide();
6919         }
6920         if(this.disabled){
6921             this.disable();
6922         }
6923         if(this.pressed){
6924             this.el.addClass("x-btn-pressed");
6925         }
6926         if(Roo.isIE && !Roo.isIE7){
6927             this.autoWidth.defer(1, this);
6928         }else{
6929             this.autoWidth();
6930         }
6931         if(this.menu){
6932             this.menu.on("show", this.onMenuShow, this);
6933             this.menu.on("hide", this.onMenuHide, this);
6934         }
6935         this.fireEvent('render', this);
6936     },
6937
6938     // private
6939     autoWidth : function(){
6940         if(this.el){
6941             var tbl = this.el.child("table:first");
6942             var tbl2 = this.el.child("table:last");
6943             this.el.setWidth("auto");
6944             tbl.setWidth("auto");
6945             if(Roo.isIE7 && Roo.isStrict){
6946                 var ib = this.el.child('button:first');
6947                 if(ib && ib.getWidth() > 20){
6948                     ib.clip();
6949                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6950                 }
6951             }
6952             if(this.minWidth){
6953                 if(this.hidden){
6954                     this.el.beginMeasure();
6955                 }
6956                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
6957                     tbl.setWidth(this.minWidth-tbl2.getWidth());
6958                 }
6959                 if(this.hidden){
6960                     this.el.endMeasure();
6961                 }
6962             }
6963             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
6964         } 
6965     },
6966     /**
6967      * Sets this button's click handler
6968      * @param {Function} handler The function to call when the button is clicked
6969      * @param {Object} scope (optional) Scope for the function passed above
6970      */
6971     setHandler : function(handler, scope){
6972         this.handler = handler;
6973         this.scope = scope;  
6974     },
6975     
6976     /**
6977      * Sets this button's arrow click handler
6978      * @param {Function} handler The function to call when the arrow is clicked
6979      * @param {Object} scope (optional) Scope for the function passed above
6980      */
6981     setArrowHandler : function(handler, scope){
6982         this.arrowHandler = handler;
6983         this.scope = scope;  
6984     },
6985     
6986     /**
6987      * Focus the button
6988      */
6989     focus : function(){
6990         if(this.el){
6991             this.el.child("button:first").focus();
6992         }
6993     },
6994
6995     // private
6996     onClick : function(e){
6997         e.preventDefault();
6998         if(!this.disabled){
6999             if(e.getTarget(".x-btn-menu-arrow-wrap")){
7000                 if(this.menu && !this.menu.isVisible()){
7001                     this.menu.show(this.el, this.menuAlign);
7002                 }
7003                 this.fireEvent("arrowclick", this, e);
7004                 if(this.arrowHandler){
7005                     this.arrowHandler.call(this.scope || this, this, e);
7006                 }
7007             }else{
7008                 this.fireEvent("click", this, e);
7009                 if(this.handler){
7010                     this.handler.call(this.scope || this, this, e);
7011                 }
7012             }
7013         }
7014     },
7015     // private
7016     onMouseDown : function(e){
7017         if(!this.disabled){
7018             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
7019         }
7020     },
7021     // private
7022     onMouseUp : function(e){
7023         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
7024     }   
7025 });
7026
7027
7028 // backwards compat
7029 Roo.MenuButton = Roo.SplitButton;/*
7030  * Based on:
7031  * Ext JS Library 1.1.1
7032  * Copyright(c) 2006-2007, Ext JS, LLC.
7033  *
7034  * Originally Released Under LGPL - original licence link has changed is not relivant.
7035  *
7036  * Fork - LGPL
7037  * <script type="text/javascript">
7038  */
7039
7040 /**
7041  * @class Roo.Toolbar
7042  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field 
7043  * Basic Toolbar class.
7044  * @constructor
7045  * Creates a new Toolbar
7046  * @param {Object} container The config object
7047  */ 
7048 Roo.Toolbar = function(container, buttons, config)
7049 {
7050     /// old consturctor format still supported..
7051     if(container instanceof Array){ // omit the container for later rendering
7052         buttons = container;
7053         config = buttons;
7054         container = null;
7055     }
7056     if (typeof(container) == 'object' && container.xtype) {
7057         config = container;
7058         container = config.container;
7059         buttons = config.buttons || []; // not really - use items!!
7060     }
7061     var xitems = [];
7062     if (config && config.items) {
7063         xitems = config.items;
7064         delete config.items;
7065     }
7066     Roo.apply(this, config);
7067     this.buttons = buttons;
7068     
7069     if(container){
7070         this.render(container);
7071     }
7072     this.xitems = xitems;
7073     Roo.each(xitems, function(b) {
7074         this.add(b);
7075     }, this);
7076     
7077 };
7078
7079 Roo.Toolbar.prototype = {
7080     /**
7081      * @cfg {Array} items
7082      * array of button configs or elements to add (will be converted to a MixedCollection)
7083      */
7084     items: false,
7085     /**
7086      * @cfg {String/HTMLElement/Element} container
7087      * The id or element that will contain the toolbar
7088      */
7089     // private
7090     render : function(ct){
7091         this.el = Roo.get(ct);
7092         if(this.cls){
7093             this.el.addClass(this.cls);
7094         }
7095         // using a table allows for vertical alignment
7096         // 100% width is needed by Safari...
7097         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
7098         this.tr = this.el.child("tr", true);
7099         var autoId = 0;
7100         this.items = new Roo.util.MixedCollection(false, function(o){
7101             return o.id || ("item" + (++autoId));
7102         });
7103         if(this.buttons){
7104             this.add.apply(this, this.buttons);
7105             delete this.buttons;
7106         }
7107     },
7108
7109     /**
7110      * Adds element(s) to the toolbar -- this function takes a variable number of 
7111      * arguments of mixed type and adds them to the toolbar.
7112      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
7113      * <ul>
7114      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
7115      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
7116      * <li>Field: Any form field (equivalent to {@link #addField})</li>
7117      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
7118      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
7119      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
7120      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
7121      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
7122      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
7123      * </ul>
7124      * @param {Mixed} arg2
7125      * @param {Mixed} etc.
7126      */
7127     add : function(){
7128         var a = arguments, l = a.length;
7129         for(var i = 0; i < l; i++){
7130             this._add(a[i]);
7131         }
7132     },
7133     // private..
7134     _add : function(el) {
7135         
7136         if (el.xtype) {
7137             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
7138         }
7139         
7140         if (el.applyTo){ // some kind of form field
7141             return this.addField(el);
7142         } 
7143         if (el.render){ // some kind of Toolbar.Item
7144             return this.addItem(el);
7145         }
7146         if (typeof el == "string"){ // string
7147             if(el == "separator" || el == "-"){
7148                 return this.addSeparator();
7149             }
7150             if (el == " "){
7151                 return this.addSpacer();
7152             }
7153             if(el == "->"){
7154                 return this.addFill();
7155             }
7156             return this.addText(el);
7157             
7158         }
7159         if(el.tagName){ // element
7160             return this.addElement(el);
7161         }
7162         if(typeof el == "object"){ // must be button config?
7163             return this.addButton(el);
7164         }
7165         // and now what?!?!
7166         return false;
7167         
7168     },
7169     
7170     /**
7171      * Add an Xtype element
7172      * @param {Object} xtype Xtype Object
7173      * @return {Object} created Object
7174      */
7175     addxtype : function(e){
7176         return this.add(e);  
7177     },
7178     
7179     /**
7180      * Returns the Element for this toolbar.
7181      * @return {Roo.Element}
7182      */
7183     getEl : function(){
7184         return this.el;  
7185     },
7186     
7187     /**
7188      * Adds a separator
7189      * @return {Roo.Toolbar.Item} The separator item
7190      */
7191     addSeparator : function(){
7192         return this.addItem(new Roo.Toolbar.Separator());
7193     },
7194
7195     /**
7196      * Adds a spacer element
7197      * @return {Roo.Toolbar.Spacer} The spacer item
7198      */
7199     addSpacer : function(){
7200         return this.addItem(new Roo.Toolbar.Spacer());
7201     },
7202
7203     /**
7204      * Adds a fill element that forces subsequent additions to the right side of the toolbar
7205      * @return {Roo.Toolbar.Fill} The fill item
7206      */
7207     addFill : function(){
7208         return this.addItem(new Roo.Toolbar.Fill());
7209     },
7210
7211     /**
7212      * Adds any standard HTML element to the toolbar
7213      * @param {String/HTMLElement/Element} el The element or id of the element to add
7214      * @return {Roo.Toolbar.Item} The element's item
7215      */
7216     addElement : function(el){
7217         return this.addItem(new Roo.Toolbar.Item(el));
7218     },
7219     /**
7220      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
7221      * @type Roo.util.MixedCollection  
7222      */
7223     items : false,
7224      
7225     /**
7226      * Adds any Toolbar.Item or subclass
7227      * @param {Roo.Toolbar.Item} item
7228      * @return {Roo.Toolbar.Item} The item
7229      */
7230     addItem : function(item){
7231         var td = this.nextBlock();
7232         item.render(td);
7233         this.items.add(item);
7234         return item;
7235     },
7236     
7237     /**
7238      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
7239      * @param {Object/Array} config A button config or array of configs
7240      * @return {Roo.Toolbar.Button/Array}
7241      */
7242     addButton : function(config){
7243         if(config instanceof Array){
7244             var buttons = [];
7245             for(var i = 0, len = config.length; i < len; i++) {
7246                 buttons.push(this.addButton(config[i]));
7247             }
7248             return buttons;
7249         }
7250         var b = config;
7251         if(!(config instanceof Roo.Toolbar.Button)){
7252             b = config.split ?
7253                 new Roo.Toolbar.SplitButton(config) :
7254                 new Roo.Toolbar.Button(config);
7255         }
7256         var td = this.nextBlock();
7257         b.render(td);
7258         this.items.add(b);
7259         return b;
7260     },
7261     
7262     /**
7263      * Adds text to the toolbar
7264      * @param {String} text The text to add
7265      * @return {Roo.Toolbar.Item} The element's item
7266      */
7267     addText : function(text){
7268         return this.addItem(new Roo.Toolbar.TextItem(text));
7269     },
7270     
7271     /**
7272      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
7273      * @param {Number} index The index where the item is to be inserted
7274      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
7275      * @return {Roo.Toolbar.Button/Item}
7276      */
7277     insertButton : function(index, item){
7278         if(item instanceof Array){
7279             var buttons = [];
7280             for(var i = 0, len = item.length; i < len; i++) {
7281                buttons.push(this.insertButton(index + i, item[i]));
7282             }
7283             return buttons;
7284         }
7285         if (!(item instanceof Roo.Toolbar.Button)){
7286            item = new Roo.Toolbar.Button(item);
7287         }
7288         var td = document.createElement("td");
7289         this.tr.insertBefore(td, this.tr.childNodes[index]);
7290         item.render(td);
7291         this.items.insert(index, item);
7292         return item;
7293     },
7294     
7295     /**
7296      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
7297      * @param {Object} config
7298      * @return {Roo.Toolbar.Item} The element's item
7299      */
7300     addDom : function(config, returnEl){
7301         var td = this.nextBlock();
7302         Roo.DomHelper.overwrite(td, config);
7303         var ti = new Roo.Toolbar.Item(td.firstChild);
7304         ti.render(td);
7305         this.items.add(ti);
7306         return ti;
7307     },
7308
7309     /**
7310      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
7311      * @type Roo.util.MixedCollection  
7312      */
7313     fields : false,
7314     
7315     /**
7316      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
7317      * Note: the field should not have been rendered yet. For a field that has already been
7318      * rendered, use {@link #addElement}.
7319      * @param {Roo.form.Field} field
7320      * @return {Roo.ToolbarItem}
7321      */
7322      
7323       
7324     addField : function(field) {
7325         if (!this.fields) {
7326             var autoId = 0;
7327             this.fields = new Roo.util.MixedCollection(false, function(o){
7328                 return o.id || ("item" + (++autoId));
7329             });
7330
7331         }
7332         
7333         var td = this.nextBlock();
7334         field.render(td);
7335         var ti = new Roo.Toolbar.Item(td.firstChild);
7336         ti.render(td);
7337         this.items.add(ti);
7338         this.fields.add(field);
7339         return ti;
7340     },
7341     /**
7342      * Hide the toolbar
7343      * @method hide
7344      */
7345      
7346       
7347     hide : function()
7348     {
7349         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
7350         this.el.child('div').hide();
7351     },
7352     /**
7353      * Show the toolbar
7354      * @method show
7355      */
7356     show : function()
7357     {
7358         this.el.child('div').show();
7359     },
7360       
7361     // private
7362     nextBlock : function(){
7363         var td = document.createElement("td");
7364         this.tr.appendChild(td);
7365         return td;
7366     },
7367
7368     // private
7369     destroy : function(){
7370         if(this.items){ // rendered?
7371             Roo.destroy.apply(Roo, this.items.items);
7372         }
7373         if(this.fields){ // rendered?
7374             Roo.destroy.apply(Roo, this.fields.items);
7375         }
7376         Roo.Element.uncache(this.el, this.tr);
7377     }
7378 };
7379
7380 /**
7381  * @class Roo.Toolbar.Item
7382  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
7383  * @constructor
7384  * Creates a new Item
7385  * @param {HTMLElement} el 
7386  */
7387 Roo.Toolbar.Item = function(el){
7388     var cfg = {};
7389     if (typeof (el.xtype) != 'undefined') {
7390         cfg = el;
7391         el = cfg.el;
7392     }
7393     
7394     this.el = Roo.getDom(el);
7395     this.id = Roo.id(this.el);
7396     this.hidden = false;
7397     
7398     this.addEvents({
7399          /**
7400              * @event render
7401              * Fires when the button is rendered
7402              * @param {Button} this
7403              */
7404         'render': true
7405     });
7406     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
7407 };
7408 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
7409 //Roo.Toolbar.Item.prototype = {
7410     
7411     /**
7412      * Get this item's HTML Element
7413      * @return {HTMLElement}
7414      */
7415     getEl : function(){
7416        return this.el;  
7417     },
7418
7419     // private
7420     render : function(td){
7421         
7422          this.td = td;
7423         td.appendChild(this.el);
7424         
7425         this.fireEvent('render', this);
7426     },
7427     
7428     /**
7429      * Removes and destroys this item.
7430      */
7431     destroy : function(){
7432         this.td.parentNode.removeChild(this.td);
7433     },
7434     
7435     /**
7436      * Shows this item.
7437      */
7438     show: function(){
7439         this.hidden = false;
7440         this.td.style.display = "";
7441     },
7442     
7443     /**
7444      * Hides this item.
7445      */
7446     hide: function(){
7447         this.hidden = true;
7448         this.td.style.display = "none";
7449     },
7450     
7451     /**
7452      * Convenience function for boolean show/hide.
7453      * @param {Boolean} visible true to show/false to hide
7454      */
7455     setVisible: function(visible){
7456         if(visible) {
7457             this.show();
7458         }else{
7459             this.hide();
7460         }
7461     },
7462     
7463     /**
7464      * Try to focus this item.
7465      */
7466     focus : function(){
7467         Roo.fly(this.el).focus();
7468     },
7469     
7470     /**
7471      * Disables this item.
7472      */
7473     disable : function(){
7474         Roo.fly(this.td).addClass("x-item-disabled");
7475         this.disabled = true;
7476         this.el.disabled = true;
7477     },
7478     
7479     /**
7480      * Enables this item.
7481      */
7482     enable : function(){
7483         Roo.fly(this.td).removeClass("x-item-disabled");
7484         this.disabled = false;
7485         this.el.disabled = false;
7486     }
7487 });
7488
7489
7490 /**
7491  * @class Roo.Toolbar.Separator
7492  * @extends Roo.Toolbar.Item
7493  * A simple toolbar separator class
7494  * @constructor
7495  * Creates a new Separator
7496  */
7497 Roo.Toolbar.Separator = function(cfg){
7498     
7499     var s = document.createElement("span");
7500     s.className = "ytb-sep";
7501     if (cfg) {
7502         cfg.el = s;
7503     }
7504     
7505     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
7506 };
7507 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
7508     enable:Roo.emptyFn,
7509     disable:Roo.emptyFn,
7510     focus:Roo.emptyFn
7511 });
7512
7513 /**
7514  * @class Roo.Toolbar.Spacer
7515  * @extends Roo.Toolbar.Item
7516  * A simple element that adds extra horizontal space to a toolbar.
7517  * @constructor
7518  * Creates a new Spacer
7519  */
7520 Roo.Toolbar.Spacer = function(cfg){
7521     var s = document.createElement("div");
7522     s.className = "ytb-spacer";
7523     if (cfg) {
7524         cfg.el = s;
7525     }
7526     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
7527 };
7528 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
7529     enable:Roo.emptyFn,
7530     disable:Roo.emptyFn,
7531     focus:Roo.emptyFn
7532 });
7533
7534 /**
7535  * @class Roo.Toolbar.Fill
7536  * @extends Roo.Toolbar.Spacer
7537  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
7538  * @constructor
7539  * Creates a new Spacer
7540  */
7541 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
7542     // private
7543     render : function(td){
7544         td.style.width = '100%';
7545         Roo.Toolbar.Fill.superclass.render.call(this, td);
7546     }
7547 });
7548
7549 /**
7550  * @class Roo.Toolbar.TextItem
7551  * @extends Roo.Toolbar.Item
7552  * A simple class that renders text directly into a toolbar.
7553  * @constructor
7554  * Creates a new TextItem
7555  * @cfg {string} text 
7556  */
7557 Roo.Toolbar.TextItem = function(cfg){
7558     var  text = cfg || "";
7559     if (typeof(cfg) == 'object') {
7560         text = cfg.text || "";
7561     }  else {
7562         cfg = null;
7563     }
7564     var s = document.createElement("span");
7565     s.className = "ytb-text";
7566     s.innerHTML = text;
7567     if (cfg) {
7568         cfg.el  = s;
7569     }
7570     
7571     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
7572 };
7573 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
7574     
7575      
7576     enable:Roo.emptyFn,
7577     disable:Roo.emptyFn,
7578     focus:Roo.emptyFn,
7579      /**
7580      * Shows this button
7581      */
7582     show: function(){
7583         this.hidden = false;
7584         this.el.style.display = "";
7585     },
7586     
7587     /**
7588      * Hides this button
7589      */
7590     hide: function(){
7591         this.hidden = true;
7592         this.el.style.display = "none";
7593     }
7594     
7595 });
7596
7597 /**
7598  * @class Roo.Toolbar.Button
7599  * @extends Roo.Button
7600  * A button that renders into a toolbar.
7601  * @constructor
7602  * Creates a new Button
7603  * @param {Object} config A standard {@link Roo.Button} config object
7604  */
7605 Roo.Toolbar.Button = function(config){
7606     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
7607 };
7608 Roo.extend(Roo.Toolbar.Button, Roo.Button,
7609 {
7610     
7611     
7612     render : function(td){
7613         this.td = td;
7614         Roo.Toolbar.Button.superclass.render.call(this, td);
7615     },
7616     
7617     /**
7618      * Removes and destroys this button
7619      */
7620     destroy : function(){
7621         Roo.Toolbar.Button.superclass.destroy.call(this);
7622         this.td.parentNode.removeChild(this.td);
7623     },
7624     
7625     /**
7626      * Shows this button
7627      */
7628     show: function(){
7629         this.hidden = false;
7630         this.td.style.display = "";
7631     },
7632     
7633     /**
7634      * Hides this button
7635      */
7636     hide: function(){
7637         this.hidden = true;
7638         this.td.style.display = "none";
7639     },
7640
7641     /**
7642      * Disables this item
7643      */
7644     disable : function(){
7645         Roo.fly(this.td).addClass("x-item-disabled");
7646         this.disabled = true;
7647     },
7648
7649     /**
7650      * Enables this item
7651      */
7652     enable : function(){
7653         Roo.fly(this.td).removeClass("x-item-disabled");
7654         this.disabled = false;
7655     }
7656 });
7657 // backwards compat
7658 Roo.ToolbarButton = Roo.Toolbar.Button;
7659
7660 /**
7661  * @class Roo.Toolbar.SplitButton
7662  * @extends Roo.SplitButton
7663  * A menu button that renders into a toolbar.
7664  * @constructor
7665  * Creates a new SplitButton
7666  * @param {Object} config A standard {@link Roo.SplitButton} config object
7667  */
7668 Roo.Toolbar.SplitButton = function(config){
7669     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
7670 };
7671 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
7672     render : function(td){
7673         this.td = td;
7674         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
7675     },
7676     
7677     /**
7678      * Removes and destroys this button
7679      */
7680     destroy : function(){
7681         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
7682         this.td.parentNode.removeChild(this.td);
7683     },
7684     
7685     /**
7686      * Shows this button
7687      */
7688     show: function(){
7689         this.hidden = false;
7690         this.td.style.display = "";
7691     },
7692     
7693     /**
7694      * Hides this button
7695      */
7696     hide: function(){
7697         this.hidden = true;
7698         this.td.style.display = "none";
7699     }
7700 });
7701
7702 // backwards compat
7703 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
7704  * Based on:
7705  * Ext JS Library 1.1.1
7706  * Copyright(c) 2006-2007, Ext JS, LLC.
7707  *
7708  * Originally Released Under LGPL - original licence link has changed is not relivant.
7709  *
7710  * Fork - LGPL
7711  * <script type="text/javascript">
7712  */
7713  
7714 /**
7715  * @class Roo.PagingToolbar
7716  * @extends Roo.Toolbar
7717  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field
7718  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
7719  * @constructor
7720  * Create a new PagingToolbar
7721  * @param {Object} config The config object
7722  */
7723 Roo.PagingToolbar = function(el, ds, config)
7724 {
7725     // old args format still supported... - xtype is prefered..
7726     if (typeof(el) == 'object' && el.xtype) {
7727         // created from xtype...
7728         config = el;
7729         ds = el.dataSource;
7730         el = config.container;
7731     }
7732     var items = [];
7733     if (config.items) {
7734         items = config.items;
7735         config.items = [];
7736     }
7737     
7738     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
7739     this.ds = ds;
7740     this.cursor = 0;
7741     this.renderButtons(this.el);
7742     this.bind(ds);
7743     
7744     // supprot items array.
7745    
7746     Roo.each(items, function(e) {
7747         this.add(Roo.factory(e));
7748     },this);
7749     
7750 };
7751
7752 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
7753    
7754     /**
7755      * @cfg {String/HTMLElement/Element} container
7756      * container The id or element that will contain the toolbar
7757      */
7758     /**
7759      * @cfg {Boolean} displayInfo
7760      * True to display the displayMsg (defaults to false)
7761      */
7762     
7763     
7764     /**
7765      * @cfg {Number} pageSize
7766      * The number of records to display per page (defaults to 20)
7767      */
7768     pageSize: 20,
7769     /**
7770      * @cfg {String} displayMsg
7771      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
7772      */
7773     displayMsg : 'Displaying {0} - {1} of {2}',
7774     /**
7775      * @cfg {String} emptyMsg
7776      * The message to display when no records are found (defaults to "No data to display")
7777      */
7778     emptyMsg : 'No data to display',
7779     /**
7780      * Customizable piece of the default paging text (defaults to "Page")
7781      * @type String
7782      */
7783     beforePageText : "Page",
7784     /**
7785      * Customizable piece of the default paging text (defaults to "of %0")
7786      * @type String
7787      */
7788     afterPageText : "of {0}",
7789     /**
7790      * Customizable piece of the default paging text (defaults to "First Page")
7791      * @type String
7792      */
7793     firstText : "First Page",
7794     /**
7795      * Customizable piece of the default paging text (defaults to "Previous Page")
7796      * @type String
7797      */
7798     prevText : "Previous Page",
7799     /**
7800      * Customizable piece of the default paging text (defaults to "Next Page")
7801      * @type String
7802      */
7803     nextText : "Next Page",
7804     /**
7805      * Customizable piece of the default paging text (defaults to "Last Page")
7806      * @type String
7807      */
7808     lastText : "Last Page",
7809     /**
7810      * Customizable piece of the default paging text (defaults to "Refresh")
7811      * @type String
7812      */
7813     refreshText : "Refresh",
7814
7815     // private
7816     renderButtons : function(el){
7817         Roo.PagingToolbar.superclass.render.call(this, el);
7818         this.first = this.addButton({
7819             tooltip: this.firstText,
7820             cls: "x-btn-icon x-grid-page-first",
7821             disabled: true,
7822             handler: this.onClick.createDelegate(this, ["first"])
7823         });
7824         this.prev = this.addButton({
7825             tooltip: this.prevText,
7826             cls: "x-btn-icon x-grid-page-prev",
7827             disabled: true,
7828             handler: this.onClick.createDelegate(this, ["prev"])
7829         });
7830         //this.addSeparator();
7831         this.add(this.beforePageText);
7832         this.field = Roo.get(this.addDom({
7833            tag: "input",
7834            type: "text",
7835            size: "3",
7836            value: "1",
7837            cls: "x-grid-page-number"
7838         }).el);
7839         this.field.on("keydown", this.onPagingKeydown, this);
7840         this.field.on("focus", function(){this.dom.select();});
7841         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
7842         this.field.setHeight(18);
7843         //this.addSeparator();
7844         this.next = this.addButton({
7845             tooltip: this.nextText,
7846             cls: "x-btn-icon x-grid-page-next",
7847             disabled: true,
7848             handler: this.onClick.createDelegate(this, ["next"])
7849         });
7850         this.last = this.addButton({
7851             tooltip: this.lastText,
7852             cls: "x-btn-icon x-grid-page-last",
7853             disabled: true,
7854             handler: this.onClick.createDelegate(this, ["last"])
7855         });
7856         //this.addSeparator();
7857         this.loading = this.addButton({
7858             tooltip: this.refreshText,
7859             cls: "x-btn-icon x-grid-loading",
7860             handler: this.onClick.createDelegate(this, ["refresh"])
7861         });
7862
7863         if(this.displayInfo){
7864             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
7865         }
7866     },
7867
7868     // private
7869     updateInfo : function(){
7870         if(this.displayEl){
7871             var count = this.ds.getCount();
7872             var msg = count == 0 ?
7873                 this.emptyMsg :
7874                 String.format(
7875                     this.displayMsg,
7876                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
7877                 );
7878             this.displayEl.update(msg);
7879         }
7880     },
7881
7882     // private
7883     onLoad : function(ds, r, o){
7884        this.cursor = o.params ? o.params.start : 0;
7885        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
7886
7887        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
7888        this.field.dom.value = ap;
7889        this.first.setDisabled(ap == 1);
7890        this.prev.setDisabled(ap == 1);
7891        this.next.setDisabled(ap == ps);
7892        this.last.setDisabled(ap == ps);
7893        this.loading.enable();
7894        this.updateInfo();
7895     },
7896
7897     // private
7898     getPageData : function(){
7899         var total = this.ds.getTotalCount();
7900         return {
7901             total : total,
7902             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
7903             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
7904         };
7905     },
7906
7907     // private
7908     onLoadError : function(){
7909         this.loading.enable();
7910     },
7911
7912     // private
7913     onPagingKeydown : function(e){
7914         var k = e.getKey();
7915         var d = this.getPageData();
7916         if(k == e.RETURN){
7917             var v = this.field.dom.value, pageNum;
7918             if(!v || isNaN(pageNum = parseInt(v, 10))){
7919                 this.field.dom.value = d.activePage;
7920                 return;
7921             }
7922             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
7923             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
7924             e.stopEvent();
7925         }
7926         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))
7927         {
7928           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
7929           this.field.dom.value = pageNum;
7930           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
7931           e.stopEvent();
7932         }
7933         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
7934         {
7935           var v = this.field.dom.value, pageNum; 
7936           var increment = (e.shiftKey) ? 10 : 1;
7937           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
7938             increment *= -1;
7939           }
7940           if(!v || isNaN(pageNum = parseInt(v, 10))) {
7941             this.field.dom.value = d.activePage;
7942             return;
7943           }
7944           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
7945           {
7946             this.field.dom.value = parseInt(v, 10) + increment;
7947             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
7948             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
7949           }
7950           e.stopEvent();
7951         }
7952     },
7953
7954     // private
7955     beforeLoad : function(){
7956         if(this.loading){
7957             this.loading.disable();
7958         }
7959     },
7960     /**
7961      * event that occurs when you click on the navigation buttons - can be used to trigger load of a grid.
7962      * @param {String} which (first|prev|next|last|refresh)  which button to press.
7963      *
7964      */
7965     // private
7966     onClick : function(which){
7967         var ds = this.ds;
7968         switch(which){
7969             case "first":
7970                 ds.load({params:{start: 0, limit: this.pageSize}});
7971             break;
7972             case "prev":
7973                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
7974             break;
7975             case "next":
7976                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
7977             break;
7978             case "last":
7979                 var total = ds.getTotalCount();
7980                 var extra = total % this.pageSize;
7981                 var lastStart = extra ? (total - extra) : total-this.pageSize;
7982                 ds.load({params:{start: lastStart, limit: this.pageSize}});
7983             break;
7984             case "refresh":
7985                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
7986             break;
7987         }
7988     },
7989
7990     /**
7991      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
7992      * @param {Roo.data.Store} store The data store to unbind
7993      */
7994     unbind : function(ds){
7995         ds.un("beforeload", this.beforeLoad, this);
7996         ds.un("load", this.onLoad, this);
7997         ds.un("loadexception", this.onLoadError, this);
7998         ds.un("remove", this.updateInfo, this);
7999         ds.un("add", this.updateInfo, this);
8000         this.ds = undefined;
8001     },
8002
8003     /**
8004      * Binds the paging toolbar to the specified {@link Roo.data.Store}
8005      * @param {Roo.data.Store} store The data store to bind
8006      */
8007     bind : function(ds){
8008         ds.on("beforeload", this.beforeLoad, this);
8009         ds.on("load", this.onLoad, this);
8010         ds.on("loadexception", this.onLoadError, this);
8011         ds.on("remove", this.updateInfo, this);
8012         ds.on("add", this.updateInfo, this);
8013         this.ds = ds;
8014     }
8015 });/*
8016  * Based on:
8017  * Ext JS Library 1.1.1
8018  * Copyright(c) 2006-2007, Ext JS, LLC.
8019  *
8020  * Originally Released Under LGPL - original licence link has changed is not relivant.
8021  *
8022  * Fork - LGPL
8023  * <script type="text/javascript">
8024  */
8025
8026 /**
8027  * @class Roo.Resizable
8028  * @extends Roo.util.Observable
8029  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
8030  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
8031  * 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
8032  * the element will be wrapped for you automatically.</p>
8033  * <p>Here is the list of valid resize handles:</p>
8034  * <pre>
8035 Value   Description
8036 ------  -------------------
8037  'n'     north
8038  's'     south
8039  'e'     east
8040  'w'     west
8041  'nw'    northwest
8042  'sw'    southwest
8043  'se'    southeast
8044  'ne'    northeast
8045  'hd'    horizontal drag
8046  'all'   all
8047 </pre>
8048  * <p>Here's an example showing the creation of a typical Resizable:</p>
8049  * <pre><code>
8050 var resizer = new Roo.Resizable("element-id", {
8051     handles: 'all',
8052     minWidth: 200,
8053     minHeight: 100,
8054     maxWidth: 500,
8055     maxHeight: 400,
8056     pinned: true
8057 });
8058 resizer.on("resize", myHandler);
8059 </code></pre>
8060  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
8061  * resizer.east.setDisplayed(false);</p>
8062  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
8063  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
8064  * resize operation's new size (defaults to [0, 0])
8065  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
8066  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
8067  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
8068  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
8069  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
8070  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
8071  * @cfg {Number} width The width of the element in pixels (defaults to null)
8072  * @cfg {Number} height The height of the element in pixels (defaults to null)
8073  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
8074  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
8075  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
8076  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
8077  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
8078  * in favor of the handles config option (defaults to false)
8079  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
8080  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
8081  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
8082  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
8083  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
8084  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
8085  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
8086  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
8087  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
8088  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
8089  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
8090  * @constructor
8091  * Create a new resizable component
8092  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
8093  * @param {Object} config configuration options
8094   */
8095 Roo.Resizable = function(el, config)
8096 {
8097     this.el = Roo.get(el);
8098
8099     if(config && config.wrap){
8100         config.resizeChild = this.el;
8101         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
8102         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
8103         this.el.setStyle("overflow", "hidden");
8104         this.el.setPositioning(config.resizeChild.getPositioning());
8105         config.resizeChild.clearPositioning();
8106         if(!config.width || !config.height){
8107             var csize = config.resizeChild.getSize();
8108             this.el.setSize(csize.width, csize.height);
8109         }
8110         if(config.pinned && !config.adjustments){
8111             config.adjustments = "auto";
8112         }
8113     }
8114
8115     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
8116     this.proxy.unselectable();
8117     this.proxy.enableDisplayMode('block');
8118
8119     Roo.apply(this, config);
8120
8121     if(this.pinned){
8122         this.disableTrackOver = true;
8123         this.el.addClass("x-resizable-pinned");
8124     }
8125     // if the element isn't positioned, make it relative
8126     var position = this.el.getStyle("position");
8127     if(position != "absolute" && position != "fixed"){
8128         this.el.setStyle("position", "relative");
8129     }
8130     if(!this.handles){ // no handles passed, must be legacy style
8131         this.handles = 's,e,se';
8132         if(this.multiDirectional){
8133             this.handles += ',n,w';
8134         }
8135     }
8136     if(this.handles == "all"){
8137         this.handles = "n s e w ne nw se sw";
8138     }
8139     var hs = this.handles.split(/\s*?[,;]\s*?| /);
8140     var ps = Roo.Resizable.positions;
8141     for(var i = 0, len = hs.length; i < len; i++){
8142         if(hs[i] && ps[hs[i]]){
8143             var pos = ps[hs[i]];
8144             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
8145         }
8146     }
8147     // legacy
8148     this.corner = this.southeast;
8149     
8150     // updateBox = the box can move..
8151     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
8152         this.updateBox = true;
8153     }
8154
8155     this.activeHandle = null;
8156
8157     if(this.resizeChild){
8158         if(typeof this.resizeChild == "boolean"){
8159             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
8160         }else{
8161             this.resizeChild = Roo.get(this.resizeChild, true);
8162         }
8163     }
8164     
8165     if(this.adjustments == "auto"){
8166         var rc = this.resizeChild;
8167         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
8168         if(rc && (hw || hn)){
8169             rc.position("relative");
8170             rc.setLeft(hw ? hw.el.getWidth() : 0);
8171             rc.setTop(hn ? hn.el.getHeight() : 0);
8172         }
8173         this.adjustments = [
8174             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
8175             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
8176         ];
8177     }
8178
8179     if(this.draggable){
8180         this.dd = this.dynamic ?
8181             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
8182         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
8183     }
8184
8185     // public events
8186     this.addEvents({
8187         /**
8188          * @event beforeresize
8189          * Fired before resize is allowed. Set enabled to false to cancel resize.
8190          * @param {Roo.Resizable} this
8191          * @param {Roo.EventObject} e The mousedown event
8192          */
8193         "beforeresize" : true,
8194         /**
8195          * @event resizing
8196          * Fired a resizing.
8197          * @param {Roo.Resizable} this
8198          * @param {Number} x The new x position
8199          * @param {Number} y The new y position
8200          * @param {Number} w The new w width
8201          * @param {Number} h The new h hight
8202          * @param {Roo.EventObject} e The mouseup event
8203          */
8204         "resizing" : true,
8205         /**
8206          * @event resize
8207          * Fired after a resize.
8208          * @param {Roo.Resizable} this
8209          * @param {Number} width The new width
8210          * @param {Number} height The new height
8211          * @param {Roo.EventObject} e The mouseup event
8212          */
8213         "resize" : true
8214     });
8215
8216     if(this.width !== null && this.height !== null){
8217         this.resizeTo(this.width, this.height);
8218     }else{
8219         this.updateChildSize();
8220     }
8221     if(Roo.isIE){
8222         this.el.dom.style.zoom = 1;
8223     }
8224     Roo.Resizable.superclass.constructor.call(this);
8225 };
8226
8227 Roo.extend(Roo.Resizable, Roo.util.Observable, {
8228         resizeChild : false,
8229         adjustments : [0, 0],
8230         minWidth : 5,
8231         minHeight : 5,
8232         maxWidth : 10000,
8233         maxHeight : 10000,
8234         enabled : true,
8235         animate : false,
8236         duration : .35,
8237         dynamic : false,
8238         handles : false,
8239         multiDirectional : false,
8240         disableTrackOver : false,
8241         easing : 'easeOutStrong',
8242         widthIncrement : 0,
8243         heightIncrement : 0,
8244         pinned : false,
8245         width : null,
8246         height : null,
8247         preserveRatio : false,
8248         transparent: false,
8249         minX: 0,
8250         minY: 0,
8251         draggable: false,
8252
8253         /**
8254          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
8255          */
8256         constrainTo: undefined,
8257         /**
8258          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
8259          */
8260         resizeRegion: undefined,
8261
8262
8263     /**
8264      * Perform a manual resize
8265      * @param {Number} width
8266      * @param {Number} height
8267      */
8268     resizeTo : function(width, height){
8269         this.el.setSize(width, height);
8270         this.updateChildSize();
8271         this.fireEvent("resize", this, width, height, null);
8272     },
8273
8274     // private
8275     startSizing : function(e, handle){
8276         this.fireEvent("beforeresize", this, e);
8277         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
8278
8279             if(!this.overlay){
8280                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
8281                 this.overlay.unselectable();
8282                 this.overlay.enableDisplayMode("block");
8283                 this.overlay.on("mousemove", this.onMouseMove, this);
8284                 this.overlay.on("mouseup", this.onMouseUp, this);
8285             }
8286             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
8287
8288             this.resizing = true;
8289             this.startBox = this.el.getBox();
8290             this.startPoint = e.getXY();
8291             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
8292                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
8293
8294             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8295             this.overlay.show();
8296
8297             if(this.constrainTo) {
8298                 var ct = Roo.get(this.constrainTo);
8299                 this.resizeRegion = ct.getRegion().adjust(
8300                     ct.getFrameWidth('t'),
8301                     ct.getFrameWidth('l'),
8302                     -ct.getFrameWidth('b'),
8303                     -ct.getFrameWidth('r')
8304                 );
8305             }
8306
8307             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
8308             this.proxy.show();
8309             this.proxy.setBox(this.startBox);
8310             if(!this.dynamic){
8311                 this.proxy.setStyle('visibility', 'visible');
8312             }
8313         }
8314     },
8315
8316     // private
8317     onMouseDown : function(handle, e){
8318         if(this.enabled){
8319             e.stopEvent();
8320             this.activeHandle = handle;
8321             this.startSizing(e, handle);
8322         }
8323     },
8324
8325     // private
8326     onMouseUp : function(e){
8327         var size = this.resizeElement();
8328         this.resizing = false;
8329         this.handleOut();
8330         this.overlay.hide();
8331         this.proxy.hide();
8332         this.fireEvent("resize", this, size.width, size.height, e);
8333     },
8334
8335     // private
8336     updateChildSize : function(){
8337         
8338         if(this.resizeChild){
8339             var el = this.el;
8340             var child = this.resizeChild;
8341             var adj = this.adjustments;
8342             if(el.dom.offsetWidth){
8343                 var b = el.getSize(true);
8344                 child.setSize(b.width+adj[0], b.height+adj[1]);
8345             }
8346             // Second call here for IE
8347             // The first call enables instant resizing and
8348             // the second call corrects scroll bars if they
8349             // exist
8350             if(Roo.isIE){
8351                 setTimeout(function(){
8352                     if(el.dom.offsetWidth){
8353                         var b = el.getSize(true);
8354                         child.setSize(b.width+adj[0], b.height+adj[1]);
8355                     }
8356                 }, 10);
8357             }
8358         }
8359     },
8360
8361     // private
8362     snap : function(value, inc, min){
8363         if(!inc || !value) {
8364             return value;
8365         }
8366         var newValue = value;
8367         var m = value % inc;
8368         if(m > 0){
8369             if(m > (inc/2)){
8370                 newValue = value + (inc-m);
8371             }else{
8372                 newValue = value - m;
8373             }
8374         }
8375         return Math.max(min, newValue);
8376     },
8377
8378     // private
8379     resizeElement : function(){
8380         var box = this.proxy.getBox();
8381         if(this.updateBox){
8382             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
8383         }else{
8384             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
8385         }
8386         this.updateChildSize();
8387         if(!this.dynamic){
8388             this.proxy.hide();
8389         }
8390         return box;
8391     },
8392
8393     // private
8394     constrain : function(v, diff, m, mx){
8395         if(v - diff < m){
8396             diff = v - m;
8397         }else if(v - diff > mx){
8398             diff = mx - v;
8399         }
8400         return diff;
8401     },
8402
8403     // private
8404     onMouseMove : function(e){
8405         
8406         if(this.enabled){
8407             try{// try catch so if something goes wrong the user doesn't get hung
8408
8409             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
8410                 return;
8411             }
8412
8413             //var curXY = this.startPoint;
8414             var curSize = this.curSize || this.startBox;
8415             var x = this.startBox.x, y = this.startBox.y;
8416             var ox = x, oy = y;
8417             var w = curSize.width, h = curSize.height;
8418             var ow = w, oh = h;
8419             var mw = this.minWidth, mh = this.minHeight;
8420             var mxw = this.maxWidth, mxh = this.maxHeight;
8421             var wi = this.widthIncrement;
8422             var hi = this.heightIncrement;
8423
8424             var eventXY = e.getXY();
8425             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
8426             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
8427
8428             var pos = this.activeHandle.position;
8429
8430             switch(pos){
8431                 case "east":
8432                     w += diffX;
8433                     w = Math.min(Math.max(mw, w), mxw);
8434                     break;
8435              
8436                 case "south":
8437                     h += diffY;
8438                     h = Math.min(Math.max(mh, h), mxh);
8439                     break;
8440                 case "southeast":
8441                     w += diffX;
8442                     h += diffY;
8443                     w = Math.min(Math.max(mw, w), mxw);
8444                     h = Math.min(Math.max(mh, h), mxh);
8445                     break;
8446                 case "north":
8447                     diffY = this.constrain(h, diffY, mh, mxh);
8448                     y += diffY;
8449                     h -= diffY;
8450                     break;
8451                 case "hdrag":
8452                     
8453                     if (wi) {
8454                         var adiffX = Math.abs(diffX);
8455                         var sub = (adiffX % wi); // how much 
8456                         if (sub > (wi/2)) { // far enough to snap
8457                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
8458                         } else {
8459                             // remove difference.. 
8460                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
8461                         }
8462                     }
8463                     x += diffX;
8464                     x = Math.max(this.minX, x);
8465                     break;
8466                 case "west":
8467                     diffX = this.constrain(w, diffX, mw, mxw);
8468                     x += diffX;
8469                     w -= diffX;
8470                     break;
8471                 case "northeast":
8472                     w += diffX;
8473                     w = Math.min(Math.max(mw, w), mxw);
8474                     diffY = this.constrain(h, diffY, mh, mxh);
8475                     y += diffY;
8476                     h -= diffY;
8477                     break;
8478                 case "northwest":
8479                     diffX = this.constrain(w, diffX, mw, mxw);
8480                     diffY = this.constrain(h, diffY, mh, mxh);
8481                     y += diffY;
8482                     h -= diffY;
8483                     x += diffX;
8484                     w -= diffX;
8485                     break;
8486                case "southwest":
8487                     diffX = this.constrain(w, diffX, mw, mxw);
8488                     h += diffY;
8489                     h = Math.min(Math.max(mh, h), mxh);
8490                     x += diffX;
8491                     w -= diffX;
8492                     break;
8493             }
8494
8495             var sw = this.snap(w, wi, mw);
8496             var sh = this.snap(h, hi, mh);
8497             if(sw != w || sh != h){
8498                 switch(pos){
8499                     case "northeast":
8500                         y -= sh - h;
8501                     break;
8502                     case "north":
8503                         y -= sh - h;
8504                         break;
8505                     case "southwest":
8506                         x -= sw - w;
8507                     break;
8508                     case "west":
8509                         x -= sw - w;
8510                         break;
8511                     case "northwest":
8512                         x -= sw - w;
8513                         y -= sh - h;
8514                     break;
8515                 }
8516                 w = sw;
8517                 h = sh;
8518             }
8519
8520             if(this.preserveRatio){
8521                 switch(pos){
8522                     case "southeast":
8523                     case "east":
8524                         h = oh * (w/ow);
8525                         h = Math.min(Math.max(mh, h), mxh);
8526                         w = ow * (h/oh);
8527                        break;
8528                     case "south":
8529                         w = ow * (h/oh);
8530                         w = Math.min(Math.max(mw, w), mxw);
8531                         h = oh * (w/ow);
8532                         break;
8533                     case "northeast":
8534                         w = ow * (h/oh);
8535                         w = Math.min(Math.max(mw, w), mxw);
8536                         h = oh * (w/ow);
8537                     break;
8538                     case "north":
8539                         var tw = w;
8540                         w = ow * (h/oh);
8541                         w = Math.min(Math.max(mw, w), mxw);
8542                         h = oh * (w/ow);
8543                         x += (tw - w) / 2;
8544                         break;
8545                     case "southwest":
8546                         h = oh * (w/ow);
8547                         h = Math.min(Math.max(mh, h), mxh);
8548                         var tw = w;
8549                         w = ow * (h/oh);
8550                         x += tw - w;
8551                         break;
8552                     case "west":
8553                         var th = h;
8554                         h = oh * (w/ow);
8555                         h = Math.min(Math.max(mh, h), mxh);
8556                         y += (th - h) / 2;
8557                         var tw = w;
8558                         w = ow * (h/oh);
8559                         x += tw - w;
8560                        break;
8561                     case "northwest":
8562                         var tw = w;
8563                         var th = h;
8564                         h = oh * (w/ow);
8565                         h = Math.min(Math.max(mh, h), mxh);
8566                         w = ow * (h/oh);
8567                         y += th - h;
8568                         x += tw - w;
8569                        break;
8570
8571                 }
8572             }
8573             if (pos == 'hdrag') {
8574                 w = ow;
8575             }
8576             this.proxy.setBounds(x, y, w, h);
8577             if(this.dynamic){
8578                 this.resizeElement();
8579             }
8580             }catch(e){}
8581         }
8582         this.fireEvent("resizing", this, x, y, w, h, e);
8583     },
8584
8585     // private
8586     handleOver : function(){
8587         if(this.enabled){
8588             this.el.addClass("x-resizable-over");
8589         }
8590     },
8591
8592     // private
8593     handleOut : function(){
8594         if(!this.resizing){
8595             this.el.removeClass("x-resizable-over");
8596         }
8597     },
8598
8599     /**
8600      * Returns the element this component is bound to.
8601      * @return {Roo.Element}
8602      */
8603     getEl : function(){
8604         return this.el;
8605     },
8606
8607     /**
8608      * Returns the resizeChild element (or null).
8609      * @return {Roo.Element}
8610      */
8611     getResizeChild : function(){
8612         return this.resizeChild;
8613     },
8614     groupHandler : function()
8615     {
8616         
8617     },
8618     /**
8619      * Destroys this resizable. If the element was wrapped and
8620      * removeEl is not true then the element remains.
8621      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
8622      */
8623     destroy : function(removeEl){
8624         this.proxy.remove();
8625         if(this.overlay){
8626             this.overlay.removeAllListeners();
8627             this.overlay.remove();
8628         }
8629         var ps = Roo.Resizable.positions;
8630         for(var k in ps){
8631             if(typeof ps[k] != "function" && this[ps[k]]){
8632                 var h = this[ps[k]];
8633                 h.el.removeAllListeners();
8634                 h.el.remove();
8635             }
8636         }
8637         if(removeEl){
8638             this.el.update("");
8639             this.el.remove();
8640         }
8641     }
8642 });
8643
8644 // private
8645 // hash to map config positions to true positions
8646 Roo.Resizable.positions = {
8647     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
8648     hd: "hdrag"
8649 };
8650
8651 // private
8652 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
8653     if(!this.tpl){
8654         // only initialize the template if resizable is used
8655         var tpl = Roo.DomHelper.createTemplate(
8656             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
8657         );
8658         tpl.compile();
8659         Roo.Resizable.Handle.prototype.tpl = tpl;
8660     }
8661     this.position = pos;
8662     this.rz = rz;
8663     // show north drag fro topdra
8664     var handlepos = pos == 'hdrag' ? 'north' : pos;
8665     
8666     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
8667     if (pos == 'hdrag') {
8668         this.el.setStyle('cursor', 'pointer');
8669     }
8670     this.el.unselectable();
8671     if(transparent){
8672         this.el.setOpacity(0);
8673     }
8674     this.el.on("mousedown", this.onMouseDown, this);
8675     if(!disableTrackOver){
8676         this.el.on("mouseover", this.onMouseOver, this);
8677         this.el.on("mouseout", this.onMouseOut, this);
8678     }
8679 };
8680
8681 // private
8682 Roo.Resizable.Handle.prototype = {
8683     afterResize : function(rz){
8684         Roo.log('after?');
8685         // do nothing
8686     },
8687     // private
8688     onMouseDown : function(e){
8689         this.rz.onMouseDown(this, e);
8690     },
8691     // private
8692     onMouseOver : function(e){
8693         this.rz.handleOver(this, e);
8694     },
8695     // private
8696     onMouseOut : function(e){
8697         this.rz.handleOut(this, e);
8698     }
8699 };/*
8700  * Based on:
8701  * Ext JS Library 1.1.1
8702  * Copyright(c) 2006-2007, Ext JS, LLC.
8703  *
8704  * Originally Released Under LGPL - original licence link has changed is not relivant.
8705  *
8706  * Fork - LGPL
8707  * <script type="text/javascript">
8708  */
8709
8710 /**
8711  * @class Roo.Editor
8712  * @extends Roo.Component
8713  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
8714  * @constructor
8715  * Create a new Editor
8716  * @param {Roo.form.Field} field The Field object (or descendant)
8717  * @param {Object} config The config object
8718  */
8719 Roo.Editor = function(field, config){
8720     Roo.Editor.superclass.constructor.call(this, config);
8721     this.field = field;
8722     this.addEvents({
8723         /**
8724              * @event beforestartedit
8725              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
8726              * false from the handler of this event.
8727              * @param {Editor} this
8728              * @param {Roo.Element} boundEl The underlying element bound to this editor
8729              * @param {Mixed} value The field value being set
8730              */
8731         "beforestartedit" : true,
8732         /**
8733              * @event startedit
8734              * Fires when this editor is displayed
8735              * @param {Roo.Element} boundEl The underlying element bound to this editor
8736              * @param {Mixed} value The starting field value
8737              */
8738         "startedit" : true,
8739         /**
8740              * @event beforecomplete
8741              * Fires after a change has been made to the field, but before the change is reflected in the underlying
8742              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
8743              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
8744              * event will not fire since no edit actually occurred.
8745              * @param {Editor} this
8746              * @param {Mixed} value The current field value
8747              * @param {Mixed} startValue The original field value
8748              */
8749         "beforecomplete" : true,
8750         /**
8751              * @event complete
8752              * Fires after editing is complete and any changed value has been written to the underlying field.
8753              * @param {Editor} this
8754              * @param {Mixed} value The current field value
8755              * @param {Mixed} startValue The original field value
8756              */
8757         "complete" : true,
8758         /**
8759          * @event specialkey
8760          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
8761          * {@link Roo.EventObject#getKey} to determine which key was pressed.
8762          * @param {Roo.form.Field} this
8763          * @param {Roo.EventObject} e The event object
8764          */
8765         "specialkey" : true
8766     });
8767 };
8768
8769 Roo.extend(Roo.Editor, Roo.Component, {
8770     /**
8771      * @cfg {Boolean/String} autosize
8772      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
8773      * or "height" to adopt the height only (defaults to false)
8774      */
8775     /**
8776      * @cfg {Boolean} revertInvalid
8777      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
8778      * validation fails (defaults to true)
8779      */
8780     /**
8781      * @cfg {Boolean} ignoreNoChange
8782      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
8783      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
8784      * will never be ignored.
8785      */
8786     /**
8787      * @cfg {Boolean} hideEl
8788      * False to keep the bound element visible while the editor is displayed (defaults to true)
8789      */
8790     /**
8791      * @cfg {Mixed} value
8792      * The data value of the underlying field (defaults to "")
8793      */
8794     value : "",
8795     /**
8796      * @cfg {String} alignment
8797      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
8798      */
8799     alignment: "c-c?",
8800     /**
8801      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
8802      * for bottom-right shadow (defaults to "frame")
8803      */
8804     shadow : "frame",
8805     /**
8806      * @cfg {Boolean} constrain True to constrain the editor to the viewport
8807      */
8808     constrain : false,
8809     /**
8810      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
8811      */
8812     completeOnEnter : false,
8813     /**
8814      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
8815      */
8816     cancelOnEsc : false,
8817     /**
8818      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
8819      */
8820     updateEl : false,
8821
8822     // private
8823     onRender : function(ct, position){
8824         this.el = new Roo.Layer({
8825             shadow: this.shadow,
8826             cls: "x-editor",
8827             parentEl : ct,
8828             shim : this.shim,
8829             shadowOffset:4,
8830             id: this.id,
8831             constrain: this.constrain
8832         });
8833         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
8834         if(this.field.msgTarget != 'title'){
8835             this.field.msgTarget = 'qtip';
8836         }
8837         this.field.render(this.el);
8838         if(Roo.isGecko){
8839             this.field.el.dom.setAttribute('autocomplete', 'off');
8840         }
8841         this.field.on("specialkey", this.onSpecialKey, this);
8842         if(this.swallowKeys){
8843             this.field.el.swallowEvent(['keydown','keypress']);
8844         }
8845         this.field.show();
8846         this.field.on("blur", this.onBlur, this);
8847         if(this.field.grow){
8848             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
8849         }
8850     },
8851
8852     onSpecialKey : function(field, e)
8853     {
8854         //Roo.log('editor onSpecialKey');
8855         if(this.completeOnEnter && e.getKey() == e.ENTER){
8856             e.stopEvent();
8857             this.completeEdit();
8858             return;
8859         }
8860         // do not fire special key otherwise it might hide close the editor...
8861         if(e.getKey() == e.ENTER){    
8862             return;
8863         }
8864         if(this.cancelOnEsc && e.getKey() == e.ESC){
8865             this.cancelEdit();
8866             return;
8867         } 
8868         this.fireEvent('specialkey', field, e);
8869     
8870     },
8871
8872     /**
8873      * Starts the editing process and shows the editor.
8874      * @param {String/HTMLElement/Element} el The element to edit
8875      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
8876       * to the innerHTML of el.
8877      */
8878     startEdit : function(el, value){
8879         if(this.editing){
8880             this.completeEdit();
8881         }
8882         this.boundEl = Roo.get(el);
8883         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
8884         if(!this.rendered){
8885             this.render(this.parentEl || document.body);
8886         }
8887         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
8888             return;
8889         }
8890         this.startValue = v;
8891         this.field.setValue(v);
8892         if(this.autoSize){
8893             var sz = this.boundEl.getSize();
8894             switch(this.autoSize){
8895                 case "width":
8896                 this.setSize(sz.width,  "");
8897                 break;
8898                 case "height":
8899                 this.setSize("",  sz.height);
8900                 break;
8901                 default:
8902                 this.setSize(sz.width,  sz.height);
8903             }
8904         }
8905         this.el.alignTo(this.boundEl, this.alignment);
8906         this.editing = true;
8907         if(Roo.QuickTips){
8908             Roo.QuickTips.disable();
8909         }
8910         this.show();
8911     },
8912
8913     /**
8914      * Sets the height and width of this editor.
8915      * @param {Number} width The new width
8916      * @param {Number} height The new height
8917      */
8918     setSize : function(w, h){
8919         this.field.setSize(w, h);
8920         if(this.el){
8921             this.el.sync();
8922         }
8923     },
8924
8925     /**
8926      * Realigns the editor to the bound field based on the current alignment config value.
8927      */
8928     realign : function(){
8929         this.el.alignTo(this.boundEl, this.alignment);
8930     },
8931
8932     /**
8933      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
8934      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
8935      */
8936     completeEdit : function(remainVisible){
8937         if(!this.editing){
8938             return;
8939         }
8940         var v = this.getValue();
8941         if(this.revertInvalid !== false && !this.field.isValid()){
8942             v = this.startValue;
8943             this.cancelEdit(true);
8944         }
8945         if(String(v) === String(this.startValue) && this.ignoreNoChange){
8946             this.editing = false;
8947             this.hide();
8948             return;
8949         }
8950         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
8951             this.editing = false;
8952             if(this.updateEl && this.boundEl){
8953                 this.boundEl.update(v);
8954             }
8955             if(remainVisible !== true){
8956                 this.hide();
8957             }
8958             this.fireEvent("complete", this, v, this.startValue);
8959         }
8960     },
8961
8962     // private
8963     onShow : function(){
8964         this.el.show();
8965         if(this.hideEl !== false){
8966             this.boundEl.hide();
8967         }
8968         this.field.show();
8969         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
8970             this.fixIEFocus = true;
8971             this.deferredFocus.defer(50, this);
8972         }else{
8973             this.field.focus();
8974         }
8975         this.fireEvent("startedit", this.boundEl, this.startValue);
8976     },
8977
8978     deferredFocus : function(){
8979         if(this.editing){
8980             this.field.focus();
8981         }
8982     },
8983
8984     /**
8985      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
8986      * reverted to the original starting value.
8987      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
8988      * cancel (defaults to false)
8989      */
8990     cancelEdit : function(remainVisible){
8991         if(this.editing){
8992             this.setValue(this.startValue);
8993             if(remainVisible !== true){
8994                 this.hide();
8995             }
8996         }
8997     },
8998
8999     // private
9000     onBlur : function(){
9001         if(this.allowBlur !== true && this.editing){
9002             this.completeEdit();
9003         }
9004     },
9005
9006     // private
9007     onHide : function(){
9008         if(this.editing){
9009             this.completeEdit();
9010             return;
9011         }
9012         this.field.blur();
9013         if(this.field.collapse){
9014             this.field.collapse();
9015         }
9016         this.el.hide();
9017         if(this.hideEl !== false){
9018             this.boundEl.show();
9019         }
9020         if(Roo.QuickTips){
9021             Roo.QuickTips.enable();
9022         }
9023     },
9024
9025     /**
9026      * Sets the data value of the editor
9027      * @param {Mixed} value Any valid value supported by the underlying field
9028      */
9029     setValue : function(v){
9030         this.field.setValue(v);
9031     },
9032
9033     /**
9034      * Gets the data value of the editor
9035      * @return {Mixed} The data value
9036      */
9037     getValue : function(){
9038         return this.field.getValue();
9039     }
9040 });/*
9041  * Based on:
9042  * Ext JS Library 1.1.1
9043  * Copyright(c) 2006-2007, Ext JS, LLC.
9044  *
9045  * Originally Released Under LGPL - original licence link has changed is not relivant.
9046  *
9047  * Fork - LGPL
9048  * <script type="text/javascript">
9049  */
9050  
9051 /**
9052  * @class Roo.BasicDialog
9053  * @extends Roo.util.Observable
9054  * @parent none builder
9055  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
9056  * <pre><code>
9057 var dlg = new Roo.BasicDialog("my-dlg", {
9058     height: 200,
9059     width: 300,
9060     minHeight: 100,
9061     minWidth: 150,
9062     modal: true,
9063     proxyDrag: true,
9064     shadow: true
9065 });
9066 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
9067 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
9068 dlg.addButton('Cancel', dlg.hide, dlg);
9069 dlg.show();
9070 </code></pre>
9071   <b>A Dialog should always be a direct child of the body element.</b>
9072  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
9073  * @cfg {String} title Default text to display in the title bar (defaults to null)
9074  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9075  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9076  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
9077  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
9078  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
9079  * (defaults to null with no animation)
9080  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
9081  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
9082  * property for valid values (defaults to 'all')
9083  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
9084  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
9085  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
9086  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
9087  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
9088  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
9089  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
9090  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
9091  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
9092  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
9093  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
9094  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
9095  * draggable = true (defaults to false)
9096  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
9097  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
9098  * shadow (defaults to false)
9099  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
9100  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
9101  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
9102  * @cfg {Array} buttons Array of buttons
9103  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
9104  * @constructor
9105  * Create a new BasicDialog.
9106  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
9107  * @param {Object} config Configuration options
9108  */
9109 Roo.BasicDialog = function(el, config){
9110     this.el = Roo.get(el);
9111     var dh = Roo.DomHelper;
9112     if(!this.el && config && config.autoCreate){
9113         if(typeof config.autoCreate == "object"){
9114             if(!config.autoCreate.id){
9115                 config.autoCreate.id = el;
9116             }
9117             this.el = dh.append(document.body,
9118                         config.autoCreate, true);
9119         }else{
9120             this.el = dh.append(document.body,
9121                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
9122         }
9123     }
9124     el = this.el;
9125     el.setDisplayed(true);
9126     el.hide = this.hideAction;
9127     this.id = el.id;
9128     el.addClass("x-dlg");
9129
9130     Roo.apply(this, config);
9131
9132     this.proxy = el.createProxy("x-dlg-proxy");
9133     this.proxy.hide = this.hideAction;
9134     this.proxy.setOpacity(.5);
9135     this.proxy.hide();
9136
9137     if(config.width){
9138         el.setWidth(config.width);
9139     }
9140     if(config.height){
9141         el.setHeight(config.height);
9142     }
9143     this.size = el.getSize();
9144     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
9145         this.xy = [config.x,config.y];
9146     }else{
9147         this.xy = el.getCenterXY(true);
9148     }
9149     /** The header element @type Roo.Element */
9150     this.header = el.child("> .x-dlg-hd");
9151     /** The body element @type Roo.Element */
9152     this.body = el.child("> .x-dlg-bd");
9153     /** The footer element @type Roo.Element */
9154     this.footer = el.child("> .x-dlg-ft");
9155
9156     if(!this.header){
9157         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
9158     }
9159     if(!this.body){
9160         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
9161     }
9162
9163     this.header.unselectable();
9164     if(this.title){
9165         this.header.update(this.title);
9166     }
9167     // this element allows the dialog to be focused for keyboard event
9168     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
9169     this.focusEl.swallowEvent("click", true);
9170
9171     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
9172
9173     // wrap the body and footer for special rendering
9174     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
9175     if(this.footer){
9176         this.bwrap.dom.appendChild(this.footer.dom);
9177     }
9178
9179     this.bg = this.el.createChild({
9180         tag: "div", cls:"x-dlg-bg",
9181         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
9182     });
9183     this.centerBg = this.bg.child("div.x-dlg-bg-center");
9184
9185
9186     if(this.autoScroll !== false && !this.autoTabs){
9187         this.body.setStyle("overflow", "auto");
9188     }
9189
9190     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
9191
9192     if(this.closable !== false){
9193         this.el.addClass("x-dlg-closable");
9194         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
9195         this.close.on("click", this.closeClick, this);
9196         this.close.addClassOnOver("x-dlg-close-over");
9197     }
9198     if(this.collapsible !== false){
9199         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
9200         this.collapseBtn.on("click", this.collapseClick, this);
9201         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
9202         this.header.on("dblclick", this.collapseClick, this);
9203     }
9204     if(this.resizable !== false){
9205         this.el.addClass("x-dlg-resizable");
9206         this.resizer = new Roo.Resizable(el, {
9207             minWidth: this.minWidth || 80,
9208             minHeight:this.minHeight || 80,
9209             handles: this.resizeHandles || "all",
9210             pinned: true
9211         });
9212         this.resizer.on("beforeresize", this.beforeResize, this);
9213         this.resizer.on("resize", this.onResize, this);
9214     }
9215     if(this.draggable !== false){
9216         el.addClass("x-dlg-draggable");
9217         if (!this.proxyDrag) {
9218             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
9219         }
9220         else {
9221             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
9222         }
9223         dd.setHandleElId(this.header.id);
9224         dd.endDrag = this.endMove.createDelegate(this);
9225         dd.startDrag = this.startMove.createDelegate(this);
9226         dd.onDrag = this.onDrag.createDelegate(this);
9227         dd.scroll = false;
9228         this.dd = dd;
9229     }
9230     if(this.modal){
9231         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
9232         this.mask.enableDisplayMode("block");
9233         this.mask.hide();
9234         this.el.addClass("x-dlg-modal");
9235     }
9236     if(this.shadow){
9237         this.shadow = new Roo.Shadow({
9238             mode : typeof this.shadow == "string" ? this.shadow : "sides",
9239             offset : this.shadowOffset
9240         });
9241     }else{
9242         this.shadowOffset = 0;
9243     }
9244     if(Roo.useShims && this.shim !== false){
9245         this.shim = this.el.createShim();
9246         this.shim.hide = this.hideAction;
9247         this.shim.hide();
9248     }else{
9249         this.shim = false;
9250     }
9251     if(this.autoTabs){
9252         this.initTabs();
9253     }
9254     if (this.buttons) { 
9255         var bts= this.buttons;
9256         this.buttons = [];
9257         Roo.each(bts, function(b) {
9258             this.addButton(b);
9259         }, this);
9260     }
9261     
9262     
9263     this.addEvents({
9264         /**
9265          * @event keydown
9266          * Fires when a key is pressed
9267          * @param {Roo.BasicDialog} this
9268          * @param {Roo.EventObject} e
9269          */
9270         "keydown" : true,
9271         /**
9272          * @event move
9273          * Fires when this dialog is moved by the user.
9274          * @param {Roo.BasicDialog} this
9275          * @param {Number} x The new page X
9276          * @param {Number} y The new page Y
9277          */
9278         "move" : true,
9279         /**
9280          * @event resize
9281          * Fires when this dialog is resized by the user.
9282          * @param {Roo.BasicDialog} this
9283          * @param {Number} width The new width
9284          * @param {Number} height The new height
9285          */
9286         "resize" : true,
9287         /**
9288          * @event beforehide
9289          * Fires before this dialog is hidden.
9290          * @param {Roo.BasicDialog} this
9291          */
9292         "beforehide" : true,
9293         /**
9294          * @event hide
9295          * Fires when this dialog is hidden.
9296          * @param {Roo.BasicDialog} this
9297          */
9298         "hide" : true,
9299         /**
9300          * @event beforeshow
9301          * Fires before this dialog is shown.
9302          * @param {Roo.BasicDialog} this
9303          */
9304         "beforeshow" : true,
9305         /**
9306          * @event show
9307          * Fires when this dialog is shown.
9308          * @param {Roo.BasicDialog} this
9309          */
9310         "show" : true
9311     });
9312     el.on("keydown", this.onKeyDown, this);
9313     el.on("mousedown", this.toFront, this);
9314     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
9315     this.el.hide();
9316     Roo.DialogManager.register(this);
9317     Roo.BasicDialog.superclass.constructor.call(this);
9318 };
9319
9320 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
9321     shadowOffset: Roo.isIE ? 6 : 5,
9322     minHeight: 80,
9323     minWidth: 200,
9324     minButtonWidth: 75,
9325     defaultButton: null,
9326     buttonAlign: "right",
9327     tabTag: 'div',
9328     firstShow: true,
9329
9330     /**
9331      * Sets the dialog title text
9332      * @param {String} text The title text to display
9333      * @return {Roo.BasicDialog} this
9334      */
9335     setTitle : function(text){
9336         this.header.update(text);
9337         return this;
9338     },
9339
9340     // private
9341     closeClick : function(){
9342         this.hide();
9343     },
9344
9345     // private
9346     collapseClick : function(){
9347         this[this.collapsed ? "expand" : "collapse"]();
9348     },
9349
9350     /**
9351      * Collapses the dialog to its minimized state (only the title bar is visible).
9352      * Equivalent to the user clicking the collapse dialog button.
9353      */
9354     collapse : function(){
9355         if(!this.collapsed){
9356             this.collapsed = true;
9357             this.el.addClass("x-dlg-collapsed");
9358             this.restoreHeight = this.el.getHeight();
9359             this.resizeTo(this.el.getWidth(), this.header.getHeight());
9360         }
9361     },
9362
9363     /**
9364      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
9365      * clicking the expand dialog button.
9366      */
9367     expand : function(){
9368         if(this.collapsed){
9369             this.collapsed = false;
9370             this.el.removeClass("x-dlg-collapsed");
9371             this.resizeTo(this.el.getWidth(), this.restoreHeight);
9372         }
9373     },
9374
9375     /**
9376      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
9377      * @return {Roo.TabPanel} The tabs component
9378      */
9379     initTabs : function(){
9380         var tabs = this.getTabs();
9381         while(tabs.getTab(0)){
9382             tabs.removeTab(0);
9383         }
9384         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
9385             var dom = el.dom;
9386             tabs.addTab(Roo.id(dom), dom.title);
9387             dom.title = "";
9388         });
9389         tabs.activate(0);
9390         return tabs;
9391     },
9392
9393     // private
9394     beforeResize : function(){
9395         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
9396     },
9397
9398     // private
9399     onResize : function(){
9400         this.refreshSize();
9401         this.syncBodyHeight();
9402         this.adjustAssets();
9403         this.focus();
9404         this.fireEvent("resize", this, this.size.width, this.size.height);
9405     },
9406
9407     // private
9408     onKeyDown : function(e){
9409         if(this.isVisible()){
9410             this.fireEvent("keydown", this, e);
9411         }
9412     },
9413
9414     /**
9415      * Resizes the dialog.
9416      * @param {Number} width
9417      * @param {Number} height
9418      * @return {Roo.BasicDialog} this
9419      */
9420     resizeTo : function(width, height){
9421         this.el.setSize(width, height);
9422         this.size = {width: width, height: height};
9423         this.syncBodyHeight();
9424         if(this.fixedcenter){
9425             this.center();
9426         }
9427         if(this.isVisible()){
9428             this.constrainXY();
9429             this.adjustAssets();
9430         }
9431         this.fireEvent("resize", this, width, height);
9432         return this;
9433     },
9434
9435
9436     /**
9437      * Resizes the dialog to fit the specified content size.
9438      * @param {Number} width
9439      * @param {Number} height
9440      * @return {Roo.BasicDialog} this
9441      */
9442     setContentSize : function(w, h){
9443         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
9444         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
9445         //if(!this.el.isBorderBox()){
9446             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
9447             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
9448         //}
9449         if(this.tabs){
9450             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
9451             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
9452         }
9453         this.resizeTo(w, h);
9454         return this;
9455     },
9456
9457     /**
9458      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
9459      * executed in response to a particular key being pressed while the dialog is active.
9460      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
9461      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9462      * @param {Function} fn The function to call
9463      * @param {Object} scope (optional) The scope of the function
9464      * @return {Roo.BasicDialog} this
9465      */
9466     addKeyListener : function(key, fn, scope){
9467         var keyCode, shift, ctrl, alt;
9468         if(typeof key == "object" && !(key instanceof Array)){
9469             keyCode = key["key"];
9470             shift = key["shift"];
9471             ctrl = key["ctrl"];
9472             alt = key["alt"];
9473         }else{
9474             keyCode = key;
9475         }
9476         var handler = function(dlg, e){
9477             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
9478                 var k = e.getKey();
9479                 if(keyCode instanceof Array){
9480                     for(var i = 0, len = keyCode.length; i < len; i++){
9481                         if(keyCode[i] == k){
9482                           fn.call(scope || window, dlg, k, e);
9483                           return;
9484                         }
9485                     }
9486                 }else{
9487                     if(k == keyCode){
9488                         fn.call(scope || window, dlg, k, e);
9489                     }
9490                 }
9491             }
9492         };
9493         this.on("keydown", handler);
9494         return this;
9495     },
9496
9497     /**
9498      * Returns the TabPanel component (creates it if it doesn't exist).
9499      * Note: If you wish to simply check for the existence of tabs without creating them,
9500      * check for a null 'tabs' property.
9501      * @return {Roo.TabPanel} The tabs component
9502      */
9503     getTabs : function(){
9504         if(!this.tabs){
9505             this.el.addClass("x-dlg-auto-tabs");
9506             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
9507             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
9508         }
9509         return this.tabs;
9510     },
9511
9512     /**
9513      * Adds a button to the footer section of the dialog.
9514      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
9515      * object or a valid Roo.DomHelper element config
9516      * @param {Function} handler The function called when the button is clicked
9517      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
9518      * @return {Roo.Button} The new button
9519      */
9520     addButton : function(config, handler, scope){
9521         var dh = Roo.DomHelper;
9522         if(!this.footer){
9523             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
9524         }
9525         if(!this.btnContainer){
9526             var tb = this.footer.createChild({
9527
9528                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
9529                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
9530             }, null, true);
9531             this.btnContainer = tb.firstChild.firstChild.firstChild;
9532         }
9533         var bconfig = {
9534             handler: handler,
9535             scope: scope,
9536             minWidth: this.minButtonWidth,
9537             hideParent:true
9538         };
9539         if(typeof config == "string"){
9540             bconfig.text = config;
9541         }else{
9542             if(config.tag){
9543                 bconfig.dhconfig = config;
9544             }else{
9545                 Roo.apply(bconfig, config);
9546             }
9547         }
9548         var fc = false;
9549         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
9550             bconfig.position = Math.max(0, bconfig.position);
9551             fc = this.btnContainer.childNodes[bconfig.position];
9552         }
9553          
9554         var btn = new Roo.Button(
9555             fc ? 
9556                 this.btnContainer.insertBefore(document.createElement("td"),fc)
9557                 : this.btnContainer.appendChild(document.createElement("td")),
9558             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
9559             bconfig
9560         );
9561         this.syncBodyHeight();
9562         if(!this.buttons){
9563             /**
9564              * Array of all the buttons that have been added to this dialog via addButton
9565              * @type Array
9566              */
9567             this.buttons = [];
9568         }
9569         this.buttons.push(btn);
9570         return btn;
9571     },
9572
9573     /**
9574      * Sets the default button to be focused when the dialog is displayed.
9575      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
9576      * @return {Roo.BasicDialog} this
9577      */
9578     setDefaultButton : function(btn){
9579         this.defaultButton = btn;
9580         return this;
9581     },
9582
9583     // private
9584     getHeaderFooterHeight : function(safe){
9585         var height = 0;
9586         if(this.header){
9587            height += this.header.getHeight();
9588         }
9589         if(this.footer){
9590            var fm = this.footer.getMargins();
9591             height += (this.footer.getHeight()+fm.top+fm.bottom);
9592         }
9593         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
9594         height += this.centerBg.getPadding("tb");
9595         return height;
9596     },
9597
9598     // private
9599     syncBodyHeight : function()
9600     {
9601         var bd = this.body, // the text
9602             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
9603             bw = this.bwrap;
9604         var height = this.size.height - this.getHeaderFooterHeight(false);
9605         bd.setHeight(height-bd.getMargins("tb"));
9606         var hh = this.header.getHeight();
9607         var h = this.size.height-hh;
9608         cb.setHeight(h);
9609         
9610         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
9611         bw.setHeight(h-cb.getPadding("tb"));
9612         
9613         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
9614         bd.setWidth(bw.getWidth(true));
9615         if(this.tabs){
9616             this.tabs.syncHeight();
9617             if(Roo.isIE){
9618                 this.tabs.el.repaint();
9619             }
9620         }
9621     },
9622
9623     /**
9624      * Restores the previous state of the dialog if Roo.state is configured.
9625      * @return {Roo.BasicDialog} this
9626      */
9627     restoreState : function(){
9628         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
9629         if(box && box.width){
9630             this.xy = [box.x, box.y];
9631             this.resizeTo(box.width, box.height);
9632         }
9633         return this;
9634     },
9635
9636     // private
9637     beforeShow : function(){
9638         this.expand();
9639         if(this.fixedcenter){
9640             this.xy = this.el.getCenterXY(true);
9641         }
9642         if(this.modal){
9643             Roo.get(document.body).addClass("x-body-masked");
9644             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9645             this.mask.show();
9646         }
9647         this.constrainXY();
9648     },
9649
9650     // private
9651     animShow : function(){
9652         var b = Roo.get(this.animateTarget).getBox();
9653         this.proxy.setSize(b.width, b.height);
9654         this.proxy.setLocation(b.x, b.y);
9655         this.proxy.show();
9656         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
9657                     true, .35, this.showEl.createDelegate(this));
9658     },
9659
9660     /**
9661      * Shows the dialog.
9662      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
9663      * @return {Roo.BasicDialog} this
9664      */
9665     show : function(animateTarget){
9666         if (this.fireEvent("beforeshow", this) === false){
9667             return;
9668         }
9669         if(this.syncHeightBeforeShow){
9670             this.syncBodyHeight();
9671         }else if(this.firstShow){
9672             this.firstShow = false;
9673             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
9674         }
9675         this.animateTarget = animateTarget || this.animateTarget;
9676         if(!this.el.isVisible()){
9677             this.beforeShow();
9678             if(this.animateTarget && Roo.get(this.animateTarget)){
9679                 this.animShow();
9680             }else{
9681                 this.showEl();
9682             }
9683         }
9684         return this;
9685     },
9686
9687     // private
9688     showEl : function(){
9689         this.proxy.hide();
9690         this.el.setXY(this.xy);
9691         this.el.show();
9692         this.adjustAssets(true);
9693         this.toFront();
9694         this.focus();
9695         // IE peekaboo bug - fix found by Dave Fenwick
9696         if(Roo.isIE){
9697             this.el.repaint();
9698         }
9699         this.fireEvent("show", this);
9700     },
9701
9702     /**
9703      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
9704      * dialog itself will receive focus.
9705      */
9706     focus : function(){
9707         if(this.defaultButton){
9708             this.defaultButton.focus();
9709         }else{
9710             this.focusEl.focus();
9711         }
9712     },
9713
9714     // private
9715     constrainXY : function(){
9716         if(this.constraintoviewport !== false){
9717             if(!this.viewSize){
9718                 if(this.container){
9719                     var s = this.container.getSize();
9720                     this.viewSize = [s.width, s.height];
9721                 }else{
9722                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
9723                 }
9724             }
9725             var s = Roo.get(this.container||document).getScroll();
9726
9727             var x = this.xy[0], y = this.xy[1];
9728             var w = this.size.width, h = this.size.height;
9729             var vw = this.viewSize[0], vh = this.viewSize[1];
9730             // only move it if it needs it
9731             var moved = false;
9732             // first validate right/bottom
9733             if(x + w > vw+s.left){
9734                 x = vw - w;
9735                 moved = true;
9736             }
9737             if(y + h > vh+s.top){
9738                 y = vh - h;
9739                 moved = true;
9740             }
9741             // then make sure top/left isn't negative
9742             if(x < s.left){
9743                 x = s.left;
9744                 moved = true;
9745             }
9746             if(y < s.top){
9747                 y = s.top;
9748                 moved = true;
9749             }
9750             if(moved){
9751                 // cache xy
9752                 this.xy = [x, y];
9753                 if(this.isVisible()){
9754                     this.el.setLocation(x, y);
9755                     this.adjustAssets();
9756                 }
9757             }
9758         }
9759     },
9760
9761     // private
9762     onDrag : function(){
9763         if(!this.proxyDrag){
9764             this.xy = this.el.getXY();
9765             this.adjustAssets();
9766         }
9767     },
9768
9769     // private
9770     adjustAssets : function(doShow){
9771         var x = this.xy[0], y = this.xy[1];
9772         var w = this.size.width, h = this.size.height;
9773         if(doShow === true){
9774             if(this.shadow){
9775                 this.shadow.show(this.el);
9776             }
9777             if(this.shim){
9778                 this.shim.show();
9779             }
9780         }
9781         if(this.shadow && this.shadow.isVisible()){
9782             this.shadow.show(this.el);
9783         }
9784         if(this.shim && this.shim.isVisible()){
9785             this.shim.setBounds(x, y, w, h);
9786         }
9787     },
9788
9789     // private
9790     adjustViewport : function(w, h){
9791         if(!w || !h){
9792             w = Roo.lib.Dom.getViewWidth();
9793             h = Roo.lib.Dom.getViewHeight();
9794         }
9795         // cache the size
9796         this.viewSize = [w, h];
9797         if(this.modal && this.mask.isVisible()){
9798             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
9799             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9800         }
9801         if(this.isVisible()){
9802             this.constrainXY();
9803         }
9804     },
9805
9806     /**
9807      * Destroys this dialog and all its supporting elements (including any tabs, shim,
9808      * shadow, proxy, mask, etc.)  Also removes all event listeners.
9809      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
9810      */
9811     destroy : function(removeEl){
9812         if(this.isVisible()){
9813             this.animateTarget = null;
9814             this.hide();
9815         }
9816         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
9817         if(this.tabs){
9818             this.tabs.destroy(removeEl);
9819         }
9820         Roo.destroy(
9821              this.shim,
9822              this.proxy,
9823              this.resizer,
9824              this.close,
9825              this.mask
9826         );
9827         if(this.dd){
9828             this.dd.unreg();
9829         }
9830         if(this.buttons){
9831            for(var i = 0, len = this.buttons.length; i < len; i++){
9832                this.buttons[i].destroy();
9833            }
9834         }
9835         this.el.removeAllListeners();
9836         if(removeEl === true){
9837             this.el.update("");
9838             this.el.remove();
9839         }
9840         Roo.DialogManager.unregister(this);
9841     },
9842
9843     // private
9844     startMove : function(){
9845         if(this.proxyDrag){
9846             this.proxy.show();
9847         }
9848         if(this.constraintoviewport !== false){
9849             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
9850         }
9851     },
9852
9853     // private
9854     endMove : function(){
9855         if(!this.proxyDrag){
9856             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
9857         }else{
9858             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
9859             this.proxy.hide();
9860         }
9861         this.refreshSize();
9862         this.adjustAssets();
9863         this.focus();
9864         this.fireEvent("move", this, this.xy[0], this.xy[1]);
9865     },
9866
9867     /**
9868      * Brings this dialog to the front of any other visible dialogs
9869      * @return {Roo.BasicDialog} this
9870      */
9871     toFront : function(){
9872         Roo.DialogManager.bringToFront(this);
9873         return this;
9874     },
9875
9876     /**
9877      * Sends this dialog to the back (under) of any other visible dialogs
9878      * @return {Roo.BasicDialog} this
9879      */
9880     toBack : function(){
9881         Roo.DialogManager.sendToBack(this);
9882         return this;
9883     },
9884
9885     /**
9886      * Centers this dialog in the viewport
9887      * @return {Roo.BasicDialog} this
9888      */
9889     center : function(){
9890         var xy = this.el.getCenterXY(true);
9891         this.moveTo(xy[0], xy[1]);
9892         return this;
9893     },
9894
9895     /**
9896      * Moves the dialog's top-left corner to the specified point
9897      * @param {Number} x
9898      * @param {Number} y
9899      * @return {Roo.BasicDialog} this
9900      */
9901     moveTo : function(x, y){
9902         this.xy = [x,y];
9903         if(this.isVisible()){
9904             this.el.setXY(this.xy);
9905             this.adjustAssets();
9906         }
9907         return this;
9908     },
9909
9910     /**
9911      * Aligns the dialog to the specified element
9912      * @param {String/HTMLElement/Roo.Element} element The element to align to.
9913      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
9914      * @param {Array} offsets (optional) Offset the positioning by [x, y]
9915      * @return {Roo.BasicDialog} this
9916      */
9917     alignTo : function(element, position, offsets){
9918         this.xy = this.el.getAlignToXY(element, position, offsets);
9919         if(this.isVisible()){
9920             this.el.setXY(this.xy);
9921             this.adjustAssets();
9922         }
9923         return this;
9924     },
9925
9926     /**
9927      * Anchors an element to another element and realigns it when the window is resized.
9928      * @param {String/HTMLElement/Roo.Element} element The element to align to.
9929      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
9930      * @param {Array} offsets (optional) Offset the positioning by [x, y]
9931      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
9932      * is a number, it is used as the buffer delay (defaults to 50ms).
9933      * @return {Roo.BasicDialog} this
9934      */
9935     anchorTo : function(el, alignment, offsets, monitorScroll){
9936         var action = function(){
9937             this.alignTo(el, alignment, offsets);
9938         };
9939         Roo.EventManager.onWindowResize(action, this);
9940         var tm = typeof monitorScroll;
9941         if(tm != 'undefined'){
9942             Roo.EventManager.on(window, 'scroll', action, this,
9943                 {buffer: tm == 'number' ? monitorScroll : 50});
9944         }
9945         action.call(this);
9946         return this;
9947     },
9948
9949     /**
9950      * Returns true if the dialog is visible
9951      * @return {Boolean}
9952      */
9953     isVisible : function(){
9954         return this.el.isVisible();
9955     },
9956
9957     // private
9958     animHide : function(callback){
9959         var b = Roo.get(this.animateTarget).getBox();
9960         this.proxy.show();
9961         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
9962         this.el.hide();
9963         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
9964                     this.hideEl.createDelegate(this, [callback]));
9965     },
9966
9967     /**
9968      * Hides the dialog.
9969      * @param {Function} callback (optional) Function to call when the dialog is hidden
9970      * @return {Roo.BasicDialog} this
9971      */
9972     hide : function(callback){
9973         if (this.fireEvent("beforehide", this) === false){
9974             return;
9975         }
9976         if(this.shadow){
9977             this.shadow.hide();
9978         }
9979         if(this.shim) {
9980           this.shim.hide();
9981         }
9982         // sometimes animateTarget seems to get set.. causing problems...
9983         // this just double checks..
9984         if(this.animateTarget && Roo.get(this.animateTarget)) {
9985            this.animHide(callback);
9986         }else{
9987             this.el.hide();
9988             this.hideEl(callback);
9989         }
9990         return this;
9991     },
9992
9993     // private
9994     hideEl : function(callback){
9995         this.proxy.hide();
9996         if(this.modal){
9997             this.mask.hide();
9998             Roo.get(document.body).removeClass("x-body-masked");
9999         }
10000         this.fireEvent("hide", this);
10001         if(typeof callback == "function"){
10002             callback();
10003         }
10004     },
10005
10006     // private
10007     hideAction : function(){
10008         this.setLeft("-10000px");
10009         this.setTop("-10000px");
10010         this.setStyle("visibility", "hidden");
10011     },
10012
10013     // private
10014     refreshSize : function(){
10015         this.size = this.el.getSize();
10016         this.xy = this.el.getXY();
10017         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
10018     },
10019
10020     // private
10021     // z-index is managed by the DialogManager and may be overwritten at any time
10022     setZIndex : function(index){
10023         if(this.modal){
10024             this.mask.setStyle("z-index", index);
10025         }
10026         if(this.shim){
10027             this.shim.setStyle("z-index", ++index);
10028         }
10029         if(this.shadow){
10030             this.shadow.setZIndex(++index);
10031         }
10032         this.el.setStyle("z-index", ++index);
10033         if(this.proxy){
10034             this.proxy.setStyle("z-index", ++index);
10035         }
10036         if(this.resizer){
10037             this.resizer.proxy.setStyle("z-index", ++index);
10038         }
10039
10040         this.lastZIndex = index;
10041     },
10042
10043     /**
10044      * Returns the element for this dialog
10045      * @return {Roo.Element} The underlying dialog Element
10046      */
10047     getEl : function(){
10048         return this.el;
10049     }
10050 });
10051
10052 /**
10053  * @class Roo.DialogManager
10054  * Provides global access to BasicDialogs that have been created and
10055  * support for z-indexing (layering) multiple open dialogs.
10056  */
10057 Roo.DialogManager = function(){
10058     var list = {};
10059     var accessList = [];
10060     var front = null;
10061
10062     // private
10063     var sortDialogs = function(d1, d2){
10064         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
10065     };
10066
10067     // private
10068     var orderDialogs = function(){
10069         accessList.sort(sortDialogs);
10070         var seed = Roo.DialogManager.zseed;
10071         for(var i = 0, len = accessList.length; i < len; i++){
10072             var dlg = accessList[i];
10073             if(dlg){
10074                 dlg.setZIndex(seed + (i*10));
10075             }
10076         }
10077     };
10078
10079     return {
10080         /**
10081          * The starting z-index for BasicDialogs (defaults to 9000)
10082          * @type Number The z-index value
10083          */
10084         zseed : 9000,
10085
10086         // private
10087         register : function(dlg){
10088             list[dlg.id] = dlg;
10089             accessList.push(dlg);
10090         },
10091
10092         // private
10093         unregister : function(dlg){
10094             delete list[dlg.id];
10095             var i=0;
10096             var len=0;
10097             if(!accessList.indexOf){
10098                 for(  i = 0, len = accessList.length; i < len; i++){
10099                     if(accessList[i] == dlg){
10100                         accessList.splice(i, 1);
10101                         return;
10102                     }
10103                 }
10104             }else{
10105                  i = accessList.indexOf(dlg);
10106                 if(i != -1){
10107                     accessList.splice(i, 1);
10108                 }
10109             }
10110         },
10111
10112         /**
10113          * Gets a registered dialog by id
10114          * @param {String/Object} id The id of the dialog or a dialog
10115          * @return {Roo.BasicDialog} this
10116          */
10117         get : function(id){
10118             return typeof id == "object" ? id : list[id];
10119         },
10120
10121         /**
10122          * Brings the specified dialog to the front
10123          * @param {String/Object} dlg The id of the dialog or a dialog
10124          * @return {Roo.BasicDialog} this
10125          */
10126         bringToFront : function(dlg){
10127             dlg = this.get(dlg);
10128             if(dlg != front){
10129                 front = dlg;
10130                 dlg._lastAccess = new Date().getTime();
10131                 orderDialogs();
10132             }
10133             return dlg;
10134         },
10135
10136         /**
10137          * Sends the specified dialog to the back
10138          * @param {String/Object} dlg The id of the dialog or a dialog
10139          * @return {Roo.BasicDialog} this
10140          */
10141         sendToBack : function(dlg){
10142             dlg = this.get(dlg);
10143             dlg._lastAccess = -(new Date().getTime());
10144             orderDialogs();
10145             return dlg;
10146         },
10147
10148         /**
10149          * Hides all dialogs
10150          */
10151         hideAll : function(){
10152             for(var id in list){
10153                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
10154                     list[id].hide();
10155                 }
10156             }
10157         }
10158     };
10159 }();
10160
10161 /**
10162  * @class Roo.LayoutDialog
10163  * @extends Roo.BasicDialog
10164  * @children Roo.ContentPanel
10165  * @parent builder none
10166  * Dialog which provides adjustments for working with a layout in a Dialog.
10167  * Add your necessary layout config options to the dialog's config.<br>
10168  * Example usage (including a nested layout):
10169  * <pre><code>
10170 if(!dialog){
10171     dialog = new Roo.LayoutDialog("download-dlg", {
10172         modal: true,
10173         width:600,
10174         height:450,
10175         shadow:true,
10176         minWidth:500,
10177         minHeight:350,
10178         autoTabs:true,
10179         proxyDrag:true,
10180         // layout config merges with the dialog config
10181         center:{
10182             tabPosition: "top",
10183             alwaysShowTabs: true
10184         }
10185     });
10186     dialog.addKeyListener(27, dialog.hide, dialog);
10187     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
10188     dialog.addButton("Build It!", this.getDownload, this);
10189
10190     // we can even add nested layouts
10191     var innerLayout = new Roo.BorderLayout("dl-inner", {
10192         east: {
10193             initialSize: 200,
10194             autoScroll:true,
10195             split:true
10196         },
10197         center: {
10198             autoScroll:true
10199         }
10200     });
10201     innerLayout.beginUpdate();
10202     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
10203     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
10204     innerLayout.endUpdate(true);
10205
10206     var layout = dialog.getLayout();
10207     layout.beginUpdate();
10208     layout.add("center", new Roo.ContentPanel("standard-panel",
10209                         {title: "Download the Source", fitToFrame:true}));
10210     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
10211                {title: "Build your own roo.js"}));
10212     layout.getRegion("center").showPanel(sp);
10213     layout.endUpdate();
10214 }
10215 </code></pre>
10216     * @constructor
10217     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
10218     * @param {Object} config configuration options
10219   */
10220 Roo.LayoutDialog = function(el, cfg){
10221     
10222     var config=  cfg;
10223     if (typeof(cfg) == 'undefined') {
10224         config = Roo.apply({}, el);
10225         // not sure why we use documentElement here.. - it should always be body.
10226         // IE7 borks horribly if we use documentElement.
10227         // webkit also does not like documentElement - it creates a body element...
10228         el = Roo.get( document.body || document.documentElement ).createChild();
10229         //config.autoCreate = true;
10230     }
10231     
10232     
10233     config.autoTabs = false;
10234     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
10235     this.body.setStyle({overflow:"hidden", position:"relative"});
10236     this.layout = new Roo.BorderLayout(this.body.dom, config);
10237     this.layout.monitorWindowResize = false;
10238     this.el.addClass("x-dlg-auto-layout");
10239     // fix case when center region overwrites center function
10240     this.center = Roo.BasicDialog.prototype.center;
10241     this.on("show", this.layout.layout, this.layout, true);
10242     if (config.items) {
10243         var xitems = config.items;
10244         delete config.items;
10245         Roo.each(xitems, this.addxtype, this);
10246     }
10247     
10248     
10249 };
10250 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
10251     
10252     
10253     /**
10254      * @cfg {Roo.LayoutRegion} east  
10255      */
10256     /**
10257      * @cfg {Roo.LayoutRegion} west
10258      */
10259     /**
10260      * @cfg {Roo.LayoutRegion} south
10261      */
10262     /**
10263      * @cfg {Roo.LayoutRegion} north
10264      */
10265     /**
10266      * @cfg {Roo.LayoutRegion} center
10267      */
10268     /**
10269      * @cfg {Roo.Button} buttons[]  Bottom buttons..
10270      */
10271     
10272     
10273     /**
10274      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
10275      * @deprecated
10276      */
10277     endUpdate : function(){
10278         this.layout.endUpdate();
10279     },
10280
10281     /**
10282      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
10283      *  @deprecated
10284      */
10285     beginUpdate : function(){
10286         this.layout.beginUpdate();
10287     },
10288
10289     /**
10290      * Get the BorderLayout for this dialog
10291      * @return {Roo.BorderLayout}
10292      */
10293     getLayout : function(){
10294         return this.layout;
10295     },
10296
10297     showEl : function(){
10298         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
10299         if(Roo.isIE7){
10300             this.layout.layout();
10301         }
10302     },
10303
10304     // private
10305     // Use the syncHeightBeforeShow config option to control this automatically
10306     syncBodyHeight : function(){
10307         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
10308         if(this.layout){this.layout.layout();}
10309     },
10310     
10311       /**
10312      * Add an xtype element (actually adds to the layout.)
10313      * @return {Object} xdata xtype object data.
10314      */
10315     
10316     addxtype : function(c) {
10317         return this.layout.addxtype(c);
10318     }
10319 });/*
10320  * Based on:
10321  * Ext JS Library 1.1.1
10322  * Copyright(c) 2006-2007, Ext JS, LLC.
10323  *
10324  * Originally Released Under LGPL - original licence link has changed is not relivant.
10325  *
10326  * Fork - LGPL
10327  * <script type="text/javascript">
10328  */
10329  
10330 /**
10331  * @class Roo.MessageBox
10332  * @static
10333  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
10334  * Example usage:
10335  *<pre><code>
10336 // Basic alert:
10337 Roo.Msg.alert('Status', 'Changes saved successfully.');
10338
10339 // Prompt for user data:
10340 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
10341     if (btn == 'ok'){
10342         // process text value...
10343     }
10344 });
10345
10346 // Show a dialog using config options:
10347 Roo.Msg.show({
10348    title:'Save Changes?',
10349    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
10350    buttons: Roo.Msg.YESNOCANCEL,
10351    fn: processResult,
10352    animEl: 'elId'
10353 });
10354 </code></pre>
10355  * @static
10356  */
10357 Roo.MessageBox = function(){
10358     var dlg, opt, mask, waitTimer;
10359     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
10360     var buttons, activeTextEl, bwidth;
10361
10362     // private
10363     var handleButton = function(button){
10364         dlg.hide();
10365         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
10366     };
10367
10368     // private
10369     var handleHide = function(){
10370         if(opt && opt.cls){
10371             dlg.el.removeClass(opt.cls);
10372         }
10373         if(waitTimer){
10374             Roo.TaskMgr.stop(waitTimer);
10375             waitTimer = null;
10376         }
10377     };
10378
10379     // private
10380     var updateButtons = function(b){
10381         var width = 0;
10382         if(!b){
10383             buttons["ok"].hide();
10384             buttons["cancel"].hide();
10385             buttons["yes"].hide();
10386             buttons["no"].hide();
10387             dlg.footer.dom.style.display = 'none';
10388             return width;
10389         }
10390         dlg.footer.dom.style.display = '';
10391         for(var k in buttons){
10392             if(typeof buttons[k] != "function"){
10393                 if(b[k]){
10394                     buttons[k].show();
10395                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
10396                     width += buttons[k].el.getWidth()+15;
10397                 }else{
10398                     buttons[k].hide();
10399                 }
10400             }
10401         }
10402         return width;
10403     };
10404
10405     // private
10406     var handleEsc = function(d, k, e){
10407         if(opt && opt.closable !== false){
10408             dlg.hide();
10409         }
10410         if(e){
10411             e.stopEvent();
10412         }
10413     };
10414
10415     return {
10416         /**
10417          * Returns a reference to the underlying {@link Roo.BasicDialog} element
10418          * @return {Roo.BasicDialog} The BasicDialog element
10419          */
10420         getDialog : function(){
10421            if(!dlg){
10422                 dlg = new Roo.BasicDialog("x-msg-box", {
10423                     autoCreate : true,
10424                     shadow: true,
10425                     draggable: true,
10426                     resizable:false,
10427                     constraintoviewport:false,
10428                     fixedcenter:true,
10429                     collapsible : false,
10430                     shim:true,
10431                     modal: true,
10432                     width:400, height:100,
10433                     buttonAlign:"center",
10434                     closeClick : function(){
10435                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
10436                             handleButton("no");
10437                         }else{
10438                             handleButton("cancel");
10439                         }
10440                     }
10441                 });
10442               
10443                 dlg.on("hide", handleHide);
10444                 mask = dlg.mask;
10445                 dlg.addKeyListener(27, handleEsc);
10446                 buttons = {};
10447                 var bt = this.buttonText;
10448                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
10449                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
10450                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
10451                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
10452                 bodyEl = dlg.body.createChild({
10453
10454                     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>'
10455                 });
10456                 msgEl = bodyEl.dom.firstChild;
10457                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
10458                 textboxEl.enableDisplayMode();
10459                 textboxEl.addKeyListener([10,13], function(){
10460                     if(dlg.isVisible() && opt && opt.buttons){
10461                         if(opt.buttons.ok){
10462                             handleButton("ok");
10463                         }else if(opt.buttons.yes){
10464                             handleButton("yes");
10465                         }
10466                     }
10467                 });
10468                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
10469                 textareaEl.enableDisplayMode();
10470                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
10471                 progressEl.enableDisplayMode();
10472                 var pf = progressEl.dom.firstChild;
10473                 if (pf) {
10474                     pp = Roo.get(pf.firstChild);
10475                     pp.setHeight(pf.offsetHeight);
10476                 }
10477                 
10478             }
10479             return dlg;
10480         },
10481
10482         /**
10483          * Updates the message box body text
10484          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
10485          * the XHTML-compliant non-breaking space character '&amp;#160;')
10486          * @return {Roo.MessageBox} This message box
10487          */
10488         updateText : function(text){
10489             if(!dlg.isVisible() && !opt.width){
10490                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
10491             }
10492             msgEl.innerHTML = text || '&#160;';
10493       
10494             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
10495             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
10496             var w = Math.max(
10497                     Math.min(opt.width || cw , this.maxWidth), 
10498                     Math.max(opt.minWidth || this.minWidth, bwidth)
10499             );
10500             if(opt.prompt){
10501                 activeTextEl.setWidth(w);
10502             }
10503             if(dlg.isVisible()){
10504                 dlg.fixedcenter = false;
10505             }
10506             // to big, make it scroll. = But as usual stupid IE does not support
10507             // !important..
10508             
10509             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
10510                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
10511                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
10512             } else {
10513                 bodyEl.dom.style.height = '';
10514                 bodyEl.dom.style.overflowY = '';
10515             }
10516             if (cw > w) {
10517                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
10518             } else {
10519                 bodyEl.dom.style.overflowX = '';
10520             }
10521             
10522             dlg.setContentSize(w, bodyEl.getHeight());
10523             if(dlg.isVisible()){
10524                 dlg.fixedcenter = true;
10525             }
10526             return this;
10527         },
10528
10529         /**
10530          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
10531          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
10532          * @param {Number} value Any number between 0 and 1 (e.g., .5)
10533          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
10534          * @return {Roo.MessageBox} This message box
10535          */
10536         updateProgress : function(value, text){
10537             if(text){
10538                 this.updateText(text);
10539             }
10540             if (pp) { // weird bug on my firefox - for some reason this is not defined
10541                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
10542             }
10543             return this;
10544         },        
10545
10546         /**
10547          * Returns true if the message box is currently displayed
10548          * @return {Boolean} True if the message box is visible, else false
10549          */
10550         isVisible : function(){
10551             return dlg && dlg.isVisible();  
10552         },
10553
10554         /**
10555          * Hides the message box if it is displayed
10556          */
10557         hide : function(){
10558             if(this.isVisible()){
10559                 dlg.hide();
10560             }  
10561         },
10562
10563         /**
10564          * Displays a new message box, or reinitializes an existing message box, based on the config options
10565          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
10566          * The following config object properties are supported:
10567          * <pre>
10568 Property    Type             Description
10569 ----------  ---------------  ------------------------------------------------------------------------------------
10570 animEl            String/Element   An id or Element from which the message box should animate as it opens and
10571                                    closes (defaults to undefined)
10572 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
10573                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
10574 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
10575                                    progress and wait dialogs will ignore this property and always hide the
10576                                    close button as they can only be closed programmatically.
10577 cls               String           A custom CSS class to apply to the message box element
10578 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
10579                                    displayed (defaults to 75)
10580 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
10581                                    function will be btn (the name of the button that was clicked, if applicable,
10582                                    e.g. "ok"), and text (the value of the active text field, if applicable).
10583                                    Progress and wait dialogs will ignore this option since they do not respond to
10584                                    user actions and can only be closed programmatically, so any required function
10585                                    should be called by the same code after it closes the dialog.
10586 icon              String           A CSS class that provides a background image to be used as an icon for
10587                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
10588 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
10589 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
10590 modal             Boolean          False to allow user interaction with the page while the message box is
10591                                    displayed (defaults to true)
10592 msg               String           A string that will replace the existing message box body text (defaults
10593                                    to the XHTML-compliant non-breaking space character '&#160;')
10594 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
10595 progress          Boolean          True to display a progress bar (defaults to false)
10596 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
10597 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
10598 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
10599 title             String           The title text
10600 value             String           The string value to set into the active textbox element if displayed
10601 wait              Boolean          True to display a progress bar (defaults to false)
10602 width             Number           The width of the dialog in pixels
10603 </pre>
10604          *
10605          * Example usage:
10606          * <pre><code>
10607 Roo.Msg.show({
10608    title: 'Address',
10609    msg: 'Please enter your address:',
10610    width: 300,
10611    buttons: Roo.MessageBox.OKCANCEL,
10612    multiline: true,
10613    fn: saveAddress,
10614    animEl: 'addAddressBtn'
10615 });
10616 </code></pre>
10617          * @param {Object} config Configuration options
10618          * @return {Roo.MessageBox} This message box
10619          */
10620         show : function(options)
10621         {
10622             
10623             // this causes nightmares if you show one dialog after another
10624             // especially on callbacks..
10625              
10626             if(this.isVisible()){
10627                 
10628                 this.hide();
10629                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
10630                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
10631                 Roo.log("New Dialog Message:" +  options.msg )
10632                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
10633                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
10634                 
10635             }
10636             var d = this.getDialog();
10637             opt = options;
10638             d.setTitle(opt.title || "&#160;");
10639             d.close.setDisplayed(opt.closable !== false);
10640             activeTextEl = textboxEl;
10641             opt.prompt = opt.prompt || (opt.multiline ? true : false);
10642             if(opt.prompt){
10643                 if(opt.multiline){
10644                     textboxEl.hide();
10645                     textareaEl.show();
10646                     textareaEl.setHeight(typeof opt.multiline == "number" ?
10647                         opt.multiline : this.defaultTextHeight);
10648                     activeTextEl = textareaEl;
10649                 }else{
10650                     textboxEl.show();
10651                     textareaEl.hide();
10652                 }
10653             }else{
10654                 textboxEl.hide();
10655                 textareaEl.hide();
10656             }
10657             progressEl.setDisplayed(opt.progress === true);
10658             this.updateProgress(0);
10659             activeTextEl.dom.value = opt.value || "";
10660             if(opt.prompt){
10661                 dlg.setDefaultButton(activeTextEl);
10662             }else{
10663                 var bs = opt.buttons;
10664                 var db = null;
10665                 if(bs && bs.ok){
10666                     db = buttons["ok"];
10667                 }else if(bs && bs.yes){
10668                     db = buttons["yes"];
10669                 }
10670                 dlg.setDefaultButton(db);
10671             }
10672             bwidth = updateButtons(opt.buttons);
10673             this.updateText(opt.msg);
10674             if(opt.cls){
10675                 d.el.addClass(opt.cls);
10676             }
10677             d.proxyDrag = opt.proxyDrag === true;
10678             d.modal = opt.modal !== false;
10679             d.mask = opt.modal !== false ? mask : false;
10680             if(!d.isVisible()){
10681                 // force it to the end of the z-index stack so it gets a cursor in FF
10682                 document.body.appendChild(dlg.el.dom);
10683                 d.animateTarget = null;
10684                 d.show(options.animEl);
10685             }
10686             dlg.toFront();
10687             return this;
10688         },
10689
10690         /**
10691          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
10692          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
10693          * and closing the message box when the process is complete.
10694          * @param {String} title The title bar text
10695          * @param {String} msg The message box body text
10696          * @return {Roo.MessageBox} This message box
10697          */
10698         progress : function(title, msg){
10699             this.show({
10700                 title : title,
10701                 msg : msg,
10702                 buttons: false,
10703                 progress:true,
10704                 closable:false,
10705                 minWidth: this.minProgressWidth,
10706                 modal : true
10707             });
10708             return this;
10709         },
10710
10711         /**
10712          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
10713          * If a callback function is passed it will be called after the user clicks the button, and the
10714          * id of the button that was clicked will be passed as the only parameter to the callback
10715          * (could also be the top-right close button).
10716          * @param {String} title The title bar text
10717          * @param {String} msg The message box body text
10718          * @param {Function} fn (optional) The callback function invoked after the message box is closed
10719          * @param {Object} scope (optional) The scope of the callback function
10720          * @return {Roo.MessageBox} This message box
10721          */
10722         alert : function(title, msg, fn, scope){
10723             this.show({
10724                 title : title,
10725                 msg : msg,
10726                 buttons: this.OK,
10727                 fn: fn,
10728                 scope : scope,
10729                 modal : true
10730             });
10731             return this;
10732         },
10733
10734         /**
10735          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
10736          * interaction while waiting for a long-running process to complete that does not have defined intervals.
10737          * You are responsible for closing the message box when the process is complete.
10738          * @param {String} msg The message box body text
10739          * @param {String} title (optional) The title bar text
10740          * @return {Roo.MessageBox} This message box
10741          */
10742         wait : function(msg, title){
10743             this.show({
10744                 title : title,
10745                 msg : msg,
10746                 buttons: false,
10747                 closable:false,
10748                 progress:true,
10749                 modal:true,
10750                 width:300,
10751                 wait:true
10752             });
10753             waitTimer = Roo.TaskMgr.start({
10754                 run: function(i){
10755                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
10756                 },
10757                 interval: 1000
10758             });
10759             return this;
10760         },
10761
10762         /**
10763          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
10764          * If a callback function is passed it will be called after the user clicks either button, and the id of the
10765          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
10766          * @param {String} title The title bar text
10767          * @param {String} msg The message box body text
10768          * @param {Function} fn (optional) The callback function invoked after the message box is closed
10769          * @param {Object} scope (optional) The scope of the callback function
10770          * @return {Roo.MessageBox} This message box
10771          */
10772         confirm : function(title, msg, fn, scope){
10773             this.show({
10774                 title : title,
10775                 msg : msg,
10776                 buttons: this.YESNO,
10777                 fn: fn,
10778                 scope : scope,
10779                 modal : true
10780             });
10781             return this;
10782         },
10783
10784         /**
10785          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
10786          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
10787          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
10788          * (could also be the top-right close button) and the text that was entered will be passed as the two
10789          * parameters to the callback.
10790          * @param {String} title The title bar text
10791          * @param {String} msg The message box body text
10792          * @param {Function} fn (optional) The callback function invoked after the message box is closed
10793          * @param {Object} scope (optional) The scope of the callback function
10794          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
10795          * property, or the height in pixels to create the textbox (defaults to false / single-line)
10796          * @return {Roo.MessageBox} This message box
10797          */
10798         prompt : function(title, msg, fn, scope, multiline){
10799             this.show({
10800                 title : title,
10801                 msg : msg,
10802                 buttons: this.OKCANCEL,
10803                 fn: fn,
10804                 minWidth:250,
10805                 scope : scope,
10806                 prompt:true,
10807                 multiline: multiline,
10808                 modal : true
10809             });
10810             return this;
10811         },
10812
10813         /**
10814          * Button config that displays a single OK button
10815          * @type Object
10816          */
10817         OK : {ok:true},
10818         /**
10819          * Button config that displays Yes and No buttons
10820          * @type Object
10821          */
10822         YESNO : {yes:true, no:true},
10823         /**
10824          * Button config that displays OK and Cancel buttons
10825          * @type Object
10826          */
10827         OKCANCEL : {ok:true, cancel:true},
10828         /**
10829          * Button config that displays Yes, No and Cancel buttons
10830          * @type Object
10831          */
10832         YESNOCANCEL : {yes:true, no:true, cancel:true},
10833
10834         /**
10835          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
10836          * @type Number
10837          */
10838         defaultTextHeight : 75,
10839         /**
10840          * The maximum width in pixels of the message box (defaults to 600)
10841          * @type Number
10842          */
10843         maxWidth : 600,
10844         /**
10845          * The minimum width in pixels of the message box (defaults to 100)
10846          * @type Number
10847          */
10848         minWidth : 100,
10849         /**
10850          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
10851          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
10852          * @type Number
10853          */
10854         minProgressWidth : 250,
10855         /**
10856          * An object containing the default button text strings that can be overriden for localized language support.
10857          * Supported properties are: ok, cancel, yes and no.
10858          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
10859          * @type Object
10860          */
10861         buttonText : {
10862             ok : "OK",
10863             cancel : "Cancel",
10864             yes : "Yes",
10865             no : "No"
10866         }
10867     };
10868 }();
10869
10870 /**
10871  * Shorthand for {@link Roo.MessageBox}
10872  */
10873 Roo.Msg = Roo.MessageBox;/*
10874  * Based on:
10875  * Ext JS Library 1.1.1
10876  * Copyright(c) 2006-2007, Ext JS, LLC.
10877  *
10878  * Originally Released Under LGPL - original licence link has changed is not relivant.
10879  *
10880  * Fork - LGPL
10881  * <script type="text/javascript">
10882  */
10883 /**
10884  * @class Roo.QuickTips
10885  * Provides attractive and customizable tooltips for any element.
10886  * @static
10887  */
10888 Roo.QuickTips = function(){
10889     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
10890     var ce, bd, xy, dd;
10891     var visible = false, disabled = true, inited = false;
10892     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
10893     
10894     var onOver = function(e){
10895         if(disabled){
10896             return;
10897         }
10898         var t = e.getTarget();
10899         if(!t || t.nodeType !== 1 || t == document || t == document.body){
10900             return;
10901         }
10902         if(ce && t == ce.el){
10903             clearTimeout(hideProc);
10904             return;
10905         }
10906         if(t && tagEls[t.id]){
10907             tagEls[t.id].el = t;
10908             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
10909             return;
10910         }
10911         var ttp, et = Roo.fly(t);
10912         var ns = cfg.namespace;
10913         if(tm.interceptTitles && t.title){
10914             ttp = t.title;
10915             t.qtip = ttp;
10916             t.removeAttribute("title");
10917             e.preventDefault();
10918         }else{
10919             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
10920         }
10921         if(ttp){
10922             showProc = show.defer(tm.showDelay, tm, [{
10923                 el: t, 
10924                 text: ttp.replace(/\\n/g,'<br/>'),
10925                 width: et.getAttributeNS(ns, cfg.width),
10926                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
10927                 title: et.getAttributeNS(ns, cfg.title),
10928                     cls: et.getAttributeNS(ns, cfg.cls)
10929             }]);
10930         }
10931     };
10932     
10933     var onOut = function(e){
10934         clearTimeout(showProc);
10935         var t = e.getTarget();
10936         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
10937             hideProc = setTimeout(hide, tm.hideDelay);
10938         }
10939     };
10940     
10941     var onMove = function(e){
10942         if(disabled){
10943             return;
10944         }
10945         xy = e.getXY();
10946         xy[1] += 18;
10947         if(tm.trackMouse && ce){
10948             el.setXY(xy);
10949         }
10950     };
10951     
10952     var onDown = function(e){
10953         clearTimeout(showProc);
10954         clearTimeout(hideProc);
10955         if(!e.within(el)){
10956             if(tm.hideOnClick){
10957                 hide();
10958                 tm.disable();
10959                 tm.enable.defer(100, tm);
10960             }
10961         }
10962     };
10963     
10964     var getPad = function(){
10965         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
10966     };
10967
10968     var show = function(o){
10969         if(disabled){
10970             return;
10971         }
10972         clearTimeout(dismissProc);
10973         ce = o;
10974         if(removeCls){ // in case manually hidden
10975             el.removeClass(removeCls);
10976             removeCls = null;
10977         }
10978         if(ce.cls){
10979             el.addClass(ce.cls);
10980             removeCls = ce.cls;
10981         }
10982         if(ce.title){
10983             tipTitle.update(ce.title);
10984             tipTitle.show();
10985         }else{
10986             tipTitle.update('');
10987             tipTitle.hide();
10988         }
10989         el.dom.style.width  = tm.maxWidth+'px';
10990         //tipBody.dom.style.width = '';
10991         tipBodyText.update(o.text);
10992         var p = getPad(), w = ce.width;
10993         if(!w){
10994             var td = tipBodyText.dom;
10995             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
10996             if(aw > tm.maxWidth){
10997                 w = tm.maxWidth;
10998             }else if(aw < tm.minWidth){
10999                 w = tm.minWidth;
11000             }else{
11001                 w = aw;
11002             }
11003         }
11004         //tipBody.setWidth(w);
11005         el.setWidth(parseInt(w, 10) + p);
11006         if(ce.autoHide === false){
11007             close.setDisplayed(true);
11008             if(dd){
11009                 dd.unlock();
11010             }
11011         }else{
11012             close.setDisplayed(false);
11013             if(dd){
11014                 dd.lock();
11015             }
11016         }
11017         if(xy){
11018             el.avoidY = xy[1]-18;
11019             el.setXY(xy);
11020         }
11021         if(tm.animate){
11022             el.setOpacity(.1);
11023             el.setStyle("visibility", "visible");
11024             el.fadeIn({callback: afterShow});
11025         }else{
11026             afterShow();
11027         }
11028     };
11029     
11030     var afterShow = function(){
11031         if(ce){
11032             el.show();
11033             esc.enable();
11034             if(tm.autoDismiss && ce.autoHide !== false){
11035                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
11036             }
11037         }
11038     };
11039     
11040     var hide = function(noanim){
11041         clearTimeout(dismissProc);
11042         clearTimeout(hideProc);
11043         ce = null;
11044         if(el.isVisible()){
11045             esc.disable();
11046             if(noanim !== true && tm.animate){
11047                 el.fadeOut({callback: afterHide});
11048             }else{
11049                 afterHide();
11050             } 
11051         }
11052     };
11053     
11054     var afterHide = function(){
11055         el.hide();
11056         if(removeCls){
11057             el.removeClass(removeCls);
11058             removeCls = null;
11059         }
11060     };
11061     
11062     return {
11063         /**
11064         * @cfg {Number} minWidth
11065         * The minimum width of the quick tip (defaults to 40)
11066         */
11067        minWidth : 40,
11068         /**
11069         * @cfg {Number} maxWidth
11070         * The maximum width of the quick tip (defaults to 300)
11071         */
11072        maxWidth : 300,
11073         /**
11074         * @cfg {Boolean} interceptTitles
11075         * True to automatically use the element's DOM title value if available (defaults to false)
11076         */
11077        interceptTitles : false,
11078         /**
11079         * @cfg {Boolean} trackMouse
11080         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
11081         */
11082        trackMouse : false,
11083         /**
11084         * @cfg {Boolean} hideOnClick
11085         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
11086         */
11087        hideOnClick : true,
11088         /**
11089         * @cfg {Number} showDelay
11090         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
11091         */
11092        showDelay : 500,
11093         /**
11094         * @cfg {Number} hideDelay
11095         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
11096         */
11097        hideDelay : 200,
11098         /**
11099         * @cfg {Boolean} autoHide
11100         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
11101         * Used in conjunction with hideDelay.
11102         */
11103        autoHide : true,
11104         /**
11105         * @cfg {Boolean}
11106         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
11107         * (defaults to true).  Used in conjunction with autoDismissDelay.
11108         */
11109        autoDismiss : true,
11110         /**
11111         * @cfg {Number}
11112         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
11113         */
11114        autoDismissDelay : 5000,
11115        /**
11116         * @cfg {Boolean} animate
11117         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
11118         */
11119        animate : false,
11120
11121        /**
11122         * @cfg {String} title
11123         * Title text to display (defaults to '').  This can be any valid HTML markup.
11124         */
11125         title: '',
11126        /**
11127         * @cfg {String} text
11128         * Body text to display (defaults to '').  This can be any valid HTML markup.
11129         */
11130         text : '',
11131        /**
11132         * @cfg {String} cls
11133         * A CSS class to apply to the base quick tip element (defaults to '').
11134         */
11135         cls : '',
11136        /**
11137         * @cfg {Number} width
11138         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
11139         * minWidth or maxWidth.
11140         */
11141         width : null,
11142
11143     /**
11144      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
11145      * or display QuickTips in a page.
11146      */
11147        init : function(){
11148           tm = Roo.QuickTips;
11149           cfg = tm.tagConfig;
11150           if(!inited){
11151               if(!Roo.isReady){ // allow calling of init() before onReady
11152                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
11153                   return;
11154               }
11155               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
11156               el.fxDefaults = {stopFx: true};
11157               // maximum custom styling
11158               //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>');
11159               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>');              
11160               tipTitle = el.child('h3');
11161               tipTitle.enableDisplayMode("block");
11162               tipBody = el.child('div.x-tip-bd');
11163               tipBodyText = el.child('div.x-tip-bd-inner');
11164               //bdLeft = el.child('div.x-tip-bd-left');
11165               //bdRight = el.child('div.x-tip-bd-right');
11166               close = el.child('div.x-tip-close');
11167               close.enableDisplayMode("block");
11168               close.on("click", hide);
11169               var d = Roo.get(document);
11170               d.on("mousedown", onDown);
11171               d.on("mouseover", onOver);
11172               d.on("mouseout", onOut);
11173               d.on("mousemove", onMove);
11174               esc = d.addKeyListener(27, hide);
11175               esc.disable();
11176               if(Roo.dd.DD){
11177                   dd = el.initDD("default", null, {
11178                       onDrag : function(){
11179                           el.sync();  
11180                       }
11181                   });
11182                   dd.setHandleElId(tipTitle.id);
11183                   dd.lock();
11184               }
11185               inited = true;
11186           }
11187           this.enable(); 
11188        },
11189
11190     /**
11191      * Configures a new quick tip instance and assigns it to a target element.  The following config options
11192      * are supported:
11193      * <pre>
11194 Property    Type                   Description
11195 ----------  ---------------------  ------------------------------------------------------------------------
11196 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
11197      * </ul>
11198      * @param {Object} config The config object
11199      */
11200        register : function(config){
11201            var cs = config instanceof Array ? config : arguments;
11202            for(var i = 0, len = cs.length; i < len; i++) {
11203                var c = cs[i];
11204                var target = c.target;
11205                if(target){
11206                    if(target instanceof Array){
11207                        for(var j = 0, jlen = target.length; j < jlen; j++){
11208                            tagEls[target[j]] = c;
11209                        }
11210                    }else{
11211                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
11212                    }
11213                }
11214            }
11215        },
11216
11217     /**
11218      * Removes this quick tip from its element and destroys it.
11219      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
11220      */
11221        unregister : function(el){
11222            delete tagEls[Roo.id(el)];
11223        },
11224
11225     /**
11226      * Enable this quick tip.
11227      */
11228        enable : function(){
11229            if(inited && disabled){
11230                locks.pop();
11231                if(locks.length < 1){
11232                    disabled = false;
11233                }
11234            }
11235        },
11236
11237     /**
11238      * Disable this quick tip.
11239      */
11240        disable : function(){
11241           disabled = true;
11242           clearTimeout(showProc);
11243           clearTimeout(hideProc);
11244           clearTimeout(dismissProc);
11245           if(ce){
11246               hide(true);
11247           }
11248           locks.push(1);
11249        },
11250
11251     /**
11252      * Returns true if the quick tip is enabled, else false.
11253      */
11254        isEnabled : function(){
11255             return !disabled;
11256        },
11257
11258         // private
11259        tagConfig : {
11260            namespace : "roo", // was ext?? this may break..
11261            alt_namespace : "ext",
11262            attribute : "qtip",
11263            width : "width",
11264            target : "target",
11265            title : "qtitle",
11266            hide : "hide",
11267            cls : "qclass"
11268        }
11269    };
11270 }();
11271
11272 // backwards compat
11273 Roo.QuickTips.tips = Roo.QuickTips.register;/*
11274  * Based on:
11275  * Ext JS Library 1.1.1
11276  * Copyright(c) 2006-2007, Ext JS, LLC.
11277  *
11278  * Originally Released Under LGPL - original licence link has changed is not relivant.
11279  *
11280  * Fork - LGPL
11281  * <script type="text/javascript">
11282  */
11283  
11284
11285 /**
11286  * @class Roo.tree.TreePanel
11287  * @extends Roo.data.Tree
11288  * @cfg {Roo.tree.TreeNode} root The root node
11289  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
11290  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
11291  * @cfg {Boolean} enableDD true to enable drag and drop
11292  * @cfg {Boolean} enableDrag true to enable just drag
11293  * @cfg {Boolean} enableDrop true to enable just drop
11294  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
11295  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
11296  * @cfg {String} ddGroup The DD group this TreePanel belongs to
11297  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
11298  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
11299  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
11300  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
11301  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
11302  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
11303  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
11304  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
11305  * @cfg {Roo.tree.TreeLoader} loader A TreeLoader for use with this TreePanel
11306  * @cfg {Roo.tree.TreeEditor} editor The TreeEditor to display when clicked.
11307  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
11308  * @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>
11309  * @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>
11310  * 
11311  * @constructor
11312  * @param {String/HTMLElement/Element} el The container element
11313  * @param {Object} config
11314  */
11315 Roo.tree.TreePanel = function(el, config){
11316     var root = false;
11317     var loader = false;
11318     if (config.root) {
11319         root = config.root;
11320         delete config.root;
11321     }
11322     if (config.loader) {
11323         loader = config.loader;
11324         delete config.loader;
11325     }
11326     
11327     Roo.apply(this, config);
11328     Roo.tree.TreePanel.superclass.constructor.call(this);
11329     this.el = Roo.get(el);
11330     this.el.addClass('x-tree');
11331     //console.log(root);
11332     if (root) {
11333         this.setRootNode( Roo.factory(root, Roo.tree));
11334     }
11335     if (loader) {
11336         this.loader = Roo.factory(loader, Roo.tree);
11337     }
11338    /**
11339     * Read-only. The id of the container element becomes this TreePanel's id.
11340     */
11341     this.id = this.el.id;
11342     this.addEvents({
11343         /**
11344         * @event beforeload
11345         * Fires before a node is loaded, return false to cancel
11346         * @param {Node} node The node being loaded
11347         */
11348         "beforeload" : true,
11349         /**
11350         * @event load
11351         * Fires when a node is loaded
11352         * @param {Node} node The node that was loaded
11353         */
11354         "load" : true,
11355         /**
11356         * @event textchange
11357         * Fires when the text for a node is changed
11358         * @param {Node} node The node
11359         * @param {String} text The new text
11360         * @param {String} oldText The old text
11361         */
11362         "textchange" : true,
11363         /**
11364         * @event beforeexpand
11365         * Fires before a node is expanded, return false to cancel.
11366         * @param {Node} node The node
11367         * @param {Boolean} deep
11368         * @param {Boolean} anim
11369         */
11370         "beforeexpand" : true,
11371         /**
11372         * @event beforecollapse
11373         * Fires before a node is collapsed, return false to cancel.
11374         * @param {Node} node The node
11375         * @param {Boolean} deep
11376         * @param {Boolean} anim
11377         */
11378         "beforecollapse" : true,
11379         /**
11380         * @event expand
11381         * Fires when a node is expanded
11382         * @param {Node} node The node
11383         */
11384         "expand" : true,
11385         /**
11386         * @event disabledchange
11387         * Fires when the disabled status of a node changes
11388         * @param {Node} node The node
11389         * @param {Boolean} disabled
11390         */
11391         "disabledchange" : true,
11392         /**
11393         * @event collapse
11394         * Fires when a node is collapsed
11395         * @param {Node} node The node
11396         */
11397         "collapse" : true,
11398         /**
11399         * @event beforeclick
11400         * Fires before click processing on a node. Return false to cancel the default action.
11401         * @param {Node} node The node
11402         * @param {Roo.EventObject} e The event object
11403         */
11404         "beforeclick":true,
11405         /**
11406         * @event checkchange
11407         * Fires when a node with a checkbox's checked property changes
11408         * @param {Node} this This node
11409         * @param {Boolean} checked
11410         */
11411         "checkchange":true,
11412         /**
11413         * @event click
11414         * Fires when a node is clicked
11415         * @param {Node} node The node
11416         * @param {Roo.EventObject} e The event object
11417         */
11418         "click":true,
11419         /**
11420         * @event dblclick
11421         * Fires when a node is double clicked
11422         * @param {Node} node The node
11423         * @param {Roo.EventObject} e The event object
11424         */
11425         "dblclick":true,
11426         /**
11427         * @event contextmenu
11428         * Fires when a node is right clicked
11429         * @param {Node} node The node
11430         * @param {Roo.EventObject} e The event object
11431         */
11432         "contextmenu":true,
11433         /**
11434         * @event beforechildrenrendered
11435         * Fires right before the child nodes for a node are rendered
11436         * @param {Node} node The node
11437         */
11438         "beforechildrenrendered":true,
11439         /**
11440         * @event startdrag
11441         * Fires when a node starts being dragged
11442         * @param {Roo.tree.TreePanel} this
11443         * @param {Roo.tree.TreeNode} node
11444         * @param {event} e The raw browser event
11445         */ 
11446        "startdrag" : true,
11447        /**
11448         * @event enddrag
11449         * Fires when a drag operation is complete
11450         * @param {Roo.tree.TreePanel} this
11451         * @param {Roo.tree.TreeNode} node
11452         * @param {event} e The raw browser event
11453         */
11454        "enddrag" : true,
11455        /**
11456         * @event dragdrop
11457         * Fires when a dragged node is dropped on a valid DD target
11458         * @param {Roo.tree.TreePanel} this
11459         * @param {Roo.tree.TreeNode} node
11460         * @param {DD} dd The dd it was dropped on
11461         * @param {event} e The raw browser event
11462         */
11463        "dragdrop" : true,
11464        /**
11465         * @event beforenodedrop
11466         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
11467         * passed to handlers has the following properties:<br />
11468         * <ul style="padding:5px;padding-left:16px;">
11469         * <li>tree - The TreePanel</li>
11470         * <li>target - The node being targeted for the drop</li>
11471         * <li>data - The drag data from the drag source</li>
11472         * <li>point - The point of the drop - append, above or below</li>
11473         * <li>source - The drag source</li>
11474         * <li>rawEvent - Raw mouse event</li>
11475         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
11476         * to be inserted by setting them on this object.</li>
11477         * <li>cancel - Set this to true to cancel the drop.</li>
11478         * </ul>
11479         * @param {Object} dropEvent
11480         */
11481        "beforenodedrop" : true,
11482        /**
11483         * @event nodedrop
11484         * Fires after a DD object is dropped on a node in this tree. The dropEvent
11485         * passed to handlers has the following properties:<br />
11486         * <ul style="padding:5px;padding-left:16px;">
11487         * <li>tree - The TreePanel</li>
11488         * <li>target - The node being targeted for the drop</li>
11489         * <li>data - The drag data from the drag source</li>
11490         * <li>point - The point of the drop - append, above or below</li>
11491         * <li>source - The drag source</li>
11492         * <li>rawEvent - Raw mouse event</li>
11493         * <li>dropNode - Dropped node(s).</li>
11494         * </ul>
11495         * @param {Object} dropEvent
11496         */
11497        "nodedrop" : true,
11498         /**
11499         * @event nodedragover
11500         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
11501         * passed to handlers has the following properties:<br />
11502         * <ul style="padding:5px;padding-left:16px;">
11503         * <li>tree - The TreePanel</li>
11504         * <li>target - The node being targeted for the drop</li>
11505         * <li>data - The drag data from the drag source</li>
11506         * <li>point - The point of the drop - append, above or below</li>
11507         * <li>source - The drag source</li>
11508         * <li>rawEvent - Raw mouse event</li>
11509         * <li>dropNode - Drop node(s) provided by the source.</li>
11510         * <li>cancel - Set this to true to signal drop not allowed.</li>
11511         * </ul>
11512         * @param {Object} dragOverEvent
11513         */
11514        "nodedragover" : true,
11515        /**
11516         * @event appendnode
11517         * Fires when append node to the tree
11518         * @param {Roo.tree.TreePanel} this
11519         * @param {Roo.tree.TreeNode} node
11520         * @param {Number} index The index of the newly appended node
11521         */
11522        "appendnode" : true
11523         
11524     });
11525     if(this.singleExpand){
11526        this.on("beforeexpand", this.restrictExpand, this);
11527     }
11528     if (this.editor) {
11529         this.editor.tree = this;
11530         this.editor = Roo.factory(this.editor, Roo.tree);
11531     }
11532     
11533     if (this.selModel) {
11534         this.selModel = Roo.factory(this.selModel, Roo.tree);
11535     }
11536    
11537 };
11538 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
11539     rootVisible : true,
11540     animate: Roo.enableFx,
11541     lines : true,
11542     enableDD : false,
11543     hlDrop : Roo.enableFx,
11544   
11545     renderer: false,
11546     
11547     rendererTip: false,
11548     // private
11549     restrictExpand : function(node){
11550         var p = node.parentNode;
11551         if(p){
11552             if(p.expandedChild && p.expandedChild.parentNode == p){
11553                 p.expandedChild.collapse();
11554             }
11555             p.expandedChild = node;
11556         }
11557     },
11558
11559     // private override
11560     setRootNode : function(node){
11561         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
11562         if(!this.rootVisible){
11563             node.ui = new Roo.tree.RootTreeNodeUI(node);
11564         }
11565         return node;
11566     },
11567
11568     /**
11569      * Returns the container element for this TreePanel
11570      */
11571     getEl : function(){
11572         return this.el;
11573     },
11574
11575     /**
11576      * Returns the default TreeLoader for this TreePanel
11577      */
11578     getLoader : function(){
11579         return this.loader;
11580     },
11581
11582     /**
11583      * Expand all nodes
11584      */
11585     expandAll : function(){
11586         this.root.expand(true);
11587     },
11588
11589     /**
11590      * Collapse all nodes
11591      */
11592     collapseAll : function(){
11593         this.root.collapse(true);
11594     },
11595
11596     /**
11597      * Returns the selection model used by this TreePanel
11598      */
11599     getSelectionModel : function(){
11600         if(!this.selModel){
11601             this.selModel = new Roo.tree.DefaultSelectionModel();
11602         }
11603         return this.selModel;
11604     },
11605
11606     /**
11607      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
11608      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
11609      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
11610      * @return {Array}
11611      */
11612     getChecked : function(a, startNode){
11613         startNode = startNode || this.root;
11614         var r = [];
11615         var f = function(){
11616             if(this.attributes.checked){
11617                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
11618             }
11619         }
11620         startNode.cascade(f);
11621         return r;
11622     },
11623
11624     /**
11625      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11626      * @param {String} path
11627      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11628      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
11629      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
11630      */
11631     expandPath : function(path, attr, callback){
11632         attr = attr || "id";
11633         var keys = path.split(this.pathSeparator);
11634         var curNode = this.root;
11635         if(curNode.attributes[attr] != keys[1]){ // invalid root
11636             if(callback){
11637                 callback(false, null);
11638             }
11639             return;
11640         }
11641         var index = 1;
11642         var f = function(){
11643             if(++index == keys.length){
11644                 if(callback){
11645                     callback(true, curNode);
11646                 }
11647                 return;
11648             }
11649             var c = curNode.findChild(attr, keys[index]);
11650             if(!c){
11651                 if(callback){
11652                     callback(false, curNode);
11653                 }
11654                 return;
11655             }
11656             curNode = c;
11657             c.expand(false, false, f);
11658         };
11659         curNode.expand(false, false, f);
11660     },
11661
11662     /**
11663      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11664      * @param {String} path
11665      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11666      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
11667      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
11668      */
11669     selectPath : function(path, attr, callback){
11670         attr = attr || "id";
11671         var keys = path.split(this.pathSeparator);
11672         var v = keys.pop();
11673         if(keys.length > 0){
11674             var f = function(success, node){
11675                 if(success && node){
11676                     var n = node.findChild(attr, v);
11677                     if(n){
11678                         n.select();
11679                         if(callback){
11680                             callback(true, n);
11681                         }
11682                     }else if(callback){
11683                         callback(false, n);
11684                     }
11685                 }else{
11686                     if(callback){
11687                         callback(false, n);
11688                     }
11689                 }
11690             };
11691             this.expandPath(keys.join(this.pathSeparator), attr, f);
11692         }else{
11693             this.root.select();
11694             if(callback){
11695                 callback(true, this.root);
11696             }
11697         }
11698     },
11699
11700     getTreeEl : function(){
11701         return this.el;
11702     },
11703
11704     /**
11705      * Trigger rendering of this TreePanel
11706      */
11707     render : function(){
11708         if (this.innerCt) {
11709             return this; // stop it rendering more than once!!
11710         }
11711         
11712         this.innerCt = this.el.createChild({tag:"ul",
11713                cls:"x-tree-root-ct " +
11714                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
11715
11716         if(this.containerScroll){
11717             Roo.dd.ScrollManager.register(this.el);
11718         }
11719         if((this.enableDD || this.enableDrop) && !this.dropZone){
11720            /**
11721             * The dropZone used by this tree if drop is enabled
11722             * @type Roo.tree.TreeDropZone
11723             */
11724              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
11725                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
11726            });
11727         }
11728         if((this.enableDD || this.enableDrag) && !this.dragZone){
11729            /**
11730             * The dragZone used by this tree if drag is enabled
11731             * @type Roo.tree.TreeDragZone
11732             */
11733             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
11734                ddGroup: this.ddGroup || "TreeDD",
11735                scroll: this.ddScroll
11736            });
11737         }
11738         this.getSelectionModel().init(this);
11739         if (!this.root) {
11740             Roo.log("ROOT not set in tree");
11741             return this;
11742         }
11743         this.root.render();
11744         if(!this.rootVisible){
11745             this.root.renderChildren();
11746         }
11747         return this;
11748     }
11749 });/*
11750  * Based on:
11751  * Ext JS Library 1.1.1
11752  * Copyright(c) 2006-2007, Ext JS, LLC.
11753  *
11754  * Originally Released Under LGPL - original licence link has changed is not relivant.
11755  *
11756  * Fork - LGPL
11757  * <script type="text/javascript">
11758  */
11759  
11760
11761 /**
11762  * @class Roo.tree.DefaultSelectionModel
11763  * @extends Roo.util.Observable
11764  * The default single selection for a TreePanel.
11765  * @param {Object} cfg Configuration
11766  */
11767 Roo.tree.DefaultSelectionModel = function(cfg){
11768    this.selNode = null;
11769    
11770    
11771    
11772    this.addEvents({
11773        /**
11774         * @event selectionchange
11775         * Fires when the selected node changes
11776         * @param {DefaultSelectionModel} this
11777         * @param {TreeNode} node the new selection
11778         */
11779        "selectionchange" : true,
11780
11781        /**
11782         * @event beforeselect
11783         * Fires before the selected node changes, return false to cancel the change
11784         * @param {DefaultSelectionModel} this
11785         * @param {TreeNode} node the new selection
11786         * @param {TreeNode} node the old selection
11787         */
11788        "beforeselect" : true
11789    });
11790    
11791     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
11792 };
11793
11794 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
11795     init : function(tree){
11796         this.tree = tree;
11797         tree.getTreeEl().on("keydown", this.onKeyDown, this);
11798         tree.on("click", this.onNodeClick, this);
11799     },
11800     
11801     onNodeClick : function(node, e){
11802         if (e.ctrlKey && this.selNode == node)  {
11803             this.unselect(node);
11804             return;
11805         }
11806         this.select(node);
11807     },
11808     
11809     /**
11810      * Select a node.
11811      * @param {TreeNode} node The node to select
11812      * @return {TreeNode} The selected node
11813      */
11814     select : function(node){
11815         var last = this.selNode;
11816         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
11817             if(last){
11818                 last.ui.onSelectedChange(false);
11819             }
11820             this.selNode = node;
11821             node.ui.onSelectedChange(true);
11822             this.fireEvent("selectionchange", this, node, last);
11823         }
11824         return node;
11825     },
11826     
11827     /**
11828      * Deselect a node.
11829      * @param {TreeNode} node The node to unselect
11830      */
11831     unselect : function(node){
11832         if(this.selNode == node){
11833             this.clearSelections();
11834         }    
11835     },
11836     
11837     /**
11838      * Clear all selections
11839      */
11840     clearSelections : function(){
11841         var n = this.selNode;
11842         if(n){
11843             n.ui.onSelectedChange(false);
11844             this.selNode = null;
11845             this.fireEvent("selectionchange", this, null);
11846         }
11847         return n;
11848     },
11849     
11850     /**
11851      * Get the selected node
11852      * @return {TreeNode} The selected node
11853      */
11854     getSelectedNode : function(){
11855         return this.selNode;    
11856     },
11857     
11858     /**
11859      * Returns true if the node is selected
11860      * @param {TreeNode} node The node to check
11861      * @return {Boolean}
11862      */
11863     isSelected : function(node){
11864         return this.selNode == node;  
11865     },
11866
11867     /**
11868      * Selects the node above the selected node in the tree, intelligently walking the nodes
11869      * @return TreeNode The new selection
11870      */
11871     selectPrevious : function(){
11872         var s = this.selNode || this.lastSelNode;
11873         if(!s){
11874             return null;
11875         }
11876         var ps = s.previousSibling;
11877         if(ps){
11878             if(!ps.isExpanded() || ps.childNodes.length < 1){
11879                 return this.select(ps);
11880             } else{
11881                 var lc = ps.lastChild;
11882                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
11883                     lc = lc.lastChild;
11884                 }
11885                 return this.select(lc);
11886             }
11887         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
11888             return this.select(s.parentNode);
11889         }
11890         return null;
11891     },
11892
11893     /**
11894      * Selects the node above the selected node in the tree, intelligently walking the nodes
11895      * @return TreeNode The new selection
11896      */
11897     selectNext : function(){
11898         var s = this.selNode || this.lastSelNode;
11899         if(!s){
11900             return null;
11901         }
11902         if(s.firstChild && s.isExpanded()){
11903              return this.select(s.firstChild);
11904          }else if(s.nextSibling){
11905              return this.select(s.nextSibling);
11906          }else if(s.parentNode){
11907             var newS = null;
11908             s.parentNode.bubble(function(){
11909                 if(this.nextSibling){
11910                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
11911                     return false;
11912                 }
11913             });
11914             return newS;
11915          }
11916         return null;
11917     },
11918
11919     onKeyDown : function(e){
11920         var s = this.selNode || this.lastSelNode;
11921         // undesirable, but required
11922         var sm = this;
11923         if(!s){
11924             return;
11925         }
11926         var k = e.getKey();
11927         switch(k){
11928              case e.DOWN:
11929                  e.stopEvent();
11930                  this.selectNext();
11931              break;
11932              case e.UP:
11933                  e.stopEvent();
11934                  this.selectPrevious();
11935              break;
11936              case e.RIGHT:
11937                  e.preventDefault();
11938                  if(s.hasChildNodes()){
11939                      if(!s.isExpanded()){
11940                          s.expand();
11941                      }else if(s.firstChild){
11942                          this.select(s.firstChild, e);
11943                      }
11944                  }
11945              break;
11946              case e.LEFT:
11947                  e.preventDefault();
11948                  if(s.hasChildNodes() && s.isExpanded()){
11949                      s.collapse();
11950                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
11951                      this.select(s.parentNode, e);
11952                  }
11953              break;
11954         };
11955     }
11956 });
11957
11958 /**
11959  * @class Roo.tree.MultiSelectionModel
11960  * @extends Roo.util.Observable
11961  * Multi selection for a TreePanel.
11962  * @param {Object} cfg Configuration
11963  */
11964 Roo.tree.MultiSelectionModel = function(){
11965    this.selNodes = [];
11966    this.selMap = {};
11967    this.addEvents({
11968        /**
11969         * @event selectionchange
11970         * Fires when the selected nodes change
11971         * @param {MultiSelectionModel} this
11972         * @param {Array} nodes Array of the selected nodes
11973         */
11974        "selectionchange" : true
11975    });
11976    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
11977    
11978 };
11979
11980 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
11981     init : function(tree){
11982         this.tree = tree;
11983         tree.getTreeEl().on("keydown", this.onKeyDown, this);
11984         tree.on("click", this.onNodeClick, this);
11985     },
11986     
11987     onNodeClick : function(node, e){
11988         this.select(node, e, e.ctrlKey);
11989     },
11990     
11991     /**
11992      * Select a node.
11993      * @param {TreeNode} node The node to select
11994      * @param {EventObject} e (optional) An event associated with the selection
11995      * @param {Boolean} keepExisting True to retain existing selections
11996      * @return {TreeNode} The selected node
11997      */
11998     select : function(node, e, keepExisting){
11999         if(keepExisting !== true){
12000             this.clearSelections(true);
12001         }
12002         if(this.isSelected(node)){
12003             this.lastSelNode = node;
12004             return node;
12005         }
12006         this.selNodes.push(node);
12007         this.selMap[node.id] = node;
12008         this.lastSelNode = node;
12009         node.ui.onSelectedChange(true);
12010         this.fireEvent("selectionchange", this, this.selNodes);
12011         return node;
12012     },
12013     
12014     /**
12015      * Deselect a node.
12016      * @param {TreeNode} node The node to unselect
12017      */
12018     unselect : function(node){
12019         if(this.selMap[node.id]){
12020             node.ui.onSelectedChange(false);
12021             var sn = this.selNodes;
12022             var index = -1;
12023             if(sn.indexOf){
12024                 index = sn.indexOf(node);
12025             }else{
12026                 for(var i = 0, len = sn.length; i < len; i++){
12027                     if(sn[i] == node){
12028                         index = i;
12029                         break;
12030                     }
12031                 }
12032             }
12033             if(index != -1){
12034                 this.selNodes.splice(index, 1);
12035             }
12036             delete this.selMap[node.id];
12037             this.fireEvent("selectionchange", this, this.selNodes);
12038         }
12039     },
12040     
12041     /**
12042      * Clear all selections
12043      */
12044     clearSelections : function(suppressEvent){
12045         var sn = this.selNodes;
12046         if(sn.length > 0){
12047             for(var i = 0, len = sn.length; i < len; i++){
12048                 sn[i].ui.onSelectedChange(false);
12049             }
12050             this.selNodes = [];
12051             this.selMap = {};
12052             if(suppressEvent !== true){
12053                 this.fireEvent("selectionchange", this, this.selNodes);
12054             }
12055         }
12056     },
12057     
12058     /**
12059      * Returns true if the node is selected
12060      * @param {TreeNode} node The node to check
12061      * @return {Boolean}
12062      */
12063     isSelected : function(node){
12064         return this.selMap[node.id] ? true : false;  
12065     },
12066     
12067     /**
12068      * Returns an array of the selected nodes
12069      * @return {Array}
12070      */
12071     getSelectedNodes : function(){
12072         return this.selNodes;    
12073     },
12074
12075     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
12076
12077     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
12078
12079     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
12080 });/*
12081  * Based on:
12082  * Ext JS Library 1.1.1
12083  * Copyright(c) 2006-2007, Ext JS, LLC.
12084  *
12085  * Originally Released Under LGPL - original licence link has changed is not relivant.
12086  *
12087  * Fork - LGPL
12088  * <script type="text/javascript">
12089  */
12090  
12091 /**
12092  * @class Roo.tree.TreeNode
12093  * @extends Roo.data.Node
12094  * @cfg {String} text The text for this node
12095  * @cfg {Boolean} expanded true to start the node expanded
12096  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
12097  * @cfg {Boolean} allowDrop false if this node cannot be drop on
12098  * @cfg {Boolean} disabled true to start the node disabled
12099  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
12100  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
12101  * @cfg {String} cls A css class to be added to the node
12102  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
12103  * @cfg {String} href URL of the link used for the node (defaults to #)
12104  * @cfg {String} hrefTarget target frame for the link
12105  * @cfg {String} qtip An Ext QuickTip for the node
12106  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
12107  * @cfg {Boolean} singleClickExpand True for single click expand on this node
12108  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
12109  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
12110  * (defaults to undefined with no checkbox rendered)
12111  * @constructor
12112  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
12113  */
12114 Roo.tree.TreeNode = function(attributes){
12115     attributes = attributes || {};
12116     if(typeof attributes == "string"){
12117         attributes = {text: attributes};
12118     }
12119     this.childrenRendered = false;
12120     this.rendered = false;
12121     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
12122     this.expanded = attributes.expanded === true;
12123     this.isTarget = attributes.isTarget !== false;
12124     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
12125     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
12126
12127     /**
12128      * Read-only. The text for this node. To change it use setText().
12129      * @type String
12130      */
12131     this.text = attributes.text;
12132     /**
12133      * True if this node is disabled.
12134      * @type Boolean
12135      */
12136     this.disabled = attributes.disabled === true;
12137
12138     this.addEvents({
12139         /**
12140         * @event textchange
12141         * Fires when the text for this node is changed
12142         * @param {Node} this This node
12143         * @param {String} text The new text
12144         * @param {String} oldText The old text
12145         */
12146         "textchange" : true,
12147         /**
12148         * @event beforeexpand
12149         * Fires before this node is expanded, return false to cancel.
12150         * @param {Node} this This node
12151         * @param {Boolean} deep
12152         * @param {Boolean} anim
12153         */
12154         "beforeexpand" : true,
12155         /**
12156         * @event beforecollapse
12157         * Fires before this node is collapsed, return false to cancel.
12158         * @param {Node} this This node
12159         * @param {Boolean} deep
12160         * @param {Boolean} anim
12161         */
12162         "beforecollapse" : true,
12163         /**
12164         * @event expand
12165         * Fires when this node is expanded
12166         * @param {Node} this This node
12167         */
12168         "expand" : true,
12169         /**
12170         * @event disabledchange
12171         * Fires when the disabled status of this node changes
12172         * @param {Node} this This node
12173         * @param {Boolean} disabled
12174         */
12175         "disabledchange" : true,
12176         /**
12177         * @event collapse
12178         * Fires when this node is collapsed
12179         * @param {Node} this This node
12180         */
12181         "collapse" : true,
12182         /**
12183         * @event beforeclick
12184         * Fires before click processing. Return false to cancel the default action.
12185         * @param {Node} this This node
12186         * @param {Roo.EventObject} e The event object
12187         */
12188         "beforeclick":true,
12189         /**
12190         * @event checkchange
12191         * Fires when a node with a checkbox's checked property changes
12192         * @param {Node} this This node
12193         * @param {Boolean} checked
12194         */
12195         "checkchange":true,
12196         /**
12197         * @event click
12198         * Fires when this node is clicked
12199         * @param {Node} this This node
12200         * @param {Roo.EventObject} e The event object
12201         */
12202         "click":true,
12203         /**
12204         * @event dblclick
12205         * Fires when this node is double clicked
12206         * @param {Node} this This node
12207         * @param {Roo.EventObject} e The event object
12208         */
12209         "dblclick":true,
12210         /**
12211         * @event contextmenu
12212         * Fires when this node is right clicked
12213         * @param {Node} this This node
12214         * @param {Roo.EventObject} e The event object
12215         */
12216         "contextmenu":true,
12217         /**
12218         * @event beforechildrenrendered
12219         * Fires right before the child nodes for this node are rendered
12220         * @param {Node} this This node
12221         */
12222         "beforechildrenrendered":true
12223     });
12224
12225     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
12226
12227     /**
12228      * Read-only. The UI for this node
12229      * @type TreeNodeUI
12230      */
12231     this.ui = new uiClass(this);
12232     
12233     // finally support items[]
12234     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
12235         return;
12236     }
12237     
12238     
12239     Roo.each(this.attributes.items, function(c) {
12240         this.appendChild(Roo.factory(c,Roo.Tree));
12241     }, this);
12242     delete this.attributes.items;
12243     
12244     
12245     
12246 };
12247 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
12248     preventHScroll: true,
12249     /**
12250      * Returns true if this node is expanded
12251      * @return {Boolean}
12252      */
12253     isExpanded : function(){
12254         return this.expanded;
12255     },
12256
12257     /**
12258      * Returns the UI object for this node
12259      * @return {TreeNodeUI}
12260      */
12261     getUI : function(){
12262         return this.ui;
12263     },
12264
12265     // private override
12266     setFirstChild : function(node){
12267         var of = this.firstChild;
12268         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
12269         if(this.childrenRendered && of && node != of){
12270             of.renderIndent(true, true);
12271         }
12272         if(this.rendered){
12273             this.renderIndent(true, true);
12274         }
12275     },
12276
12277     // private override
12278     setLastChild : function(node){
12279         var ol = this.lastChild;
12280         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
12281         if(this.childrenRendered && ol && node != ol){
12282             ol.renderIndent(true, true);
12283         }
12284         if(this.rendered){
12285             this.renderIndent(true, true);
12286         }
12287     },
12288
12289     // these methods are overridden to provide lazy rendering support
12290     // private override
12291     appendChild : function()
12292     {
12293         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
12294         if(node && this.childrenRendered){
12295             node.render();
12296         }
12297         this.ui.updateExpandIcon();
12298         return node;
12299     },
12300
12301     // private override
12302     removeChild : function(node){
12303         this.ownerTree.getSelectionModel().unselect(node);
12304         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
12305         // if it's been rendered remove dom node
12306         if(this.childrenRendered){
12307             node.ui.remove();
12308         }
12309         if(this.childNodes.length < 1){
12310             this.collapse(false, false);
12311         }else{
12312             this.ui.updateExpandIcon();
12313         }
12314         if(!this.firstChild) {
12315             this.childrenRendered = false;
12316         }
12317         return node;
12318     },
12319
12320     // private override
12321     insertBefore : function(node, refNode){
12322         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
12323         if(newNode && refNode && this.childrenRendered){
12324             node.render();
12325         }
12326         this.ui.updateExpandIcon();
12327         return newNode;
12328     },
12329
12330     /**
12331      * Sets the text for this node
12332      * @param {String} text
12333      */
12334     setText : function(text){
12335         var oldText = this.text;
12336         this.text = text;
12337         this.attributes.text = text;
12338         if(this.rendered){ // event without subscribing
12339             this.ui.onTextChange(this, text, oldText);
12340         }
12341         this.fireEvent("textchange", this, text, oldText);
12342     },
12343
12344     /**
12345      * Triggers selection of this node
12346      */
12347     select : function(){
12348         this.getOwnerTree().getSelectionModel().select(this);
12349     },
12350
12351     /**
12352      * Triggers deselection of this node
12353      */
12354     unselect : function(){
12355         this.getOwnerTree().getSelectionModel().unselect(this);
12356     },
12357
12358     /**
12359      * Returns true if this node is selected
12360      * @return {Boolean}
12361      */
12362     isSelected : function(){
12363         return this.getOwnerTree().getSelectionModel().isSelected(this);
12364     },
12365
12366     /**
12367      * Expand this node.
12368      * @param {Boolean} deep (optional) True to expand all children as well
12369      * @param {Boolean} anim (optional) false to cancel the default animation
12370      * @param {Function} callback (optional) A callback to be called when
12371      * expanding this node completes (does not wait for deep expand to complete).
12372      * Called with 1 parameter, this node.
12373      */
12374     expand : function(deep, anim, callback){
12375         if(!this.expanded){
12376             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
12377                 return;
12378             }
12379             if(!this.childrenRendered){
12380                 this.renderChildren();
12381             }
12382             this.expanded = true;
12383             
12384             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
12385                 this.ui.animExpand(function(){
12386                     this.fireEvent("expand", this);
12387                     if(typeof callback == "function"){
12388                         callback(this);
12389                     }
12390                     if(deep === true){
12391                         this.expandChildNodes(true);
12392                     }
12393                 }.createDelegate(this));
12394                 return;
12395             }else{
12396                 this.ui.expand();
12397                 this.fireEvent("expand", this);
12398                 if(typeof callback == "function"){
12399                     callback(this);
12400                 }
12401             }
12402         }else{
12403            if(typeof callback == "function"){
12404                callback(this);
12405            }
12406         }
12407         if(deep === true){
12408             this.expandChildNodes(true);
12409         }
12410     },
12411
12412     isHiddenRoot : function(){
12413         return this.isRoot && !this.getOwnerTree().rootVisible;
12414     },
12415
12416     /**
12417      * Collapse this node.
12418      * @param {Boolean} deep (optional) True to collapse all children as well
12419      * @param {Boolean} anim (optional) false to cancel the default animation
12420      */
12421     collapse : function(deep, anim){
12422         if(this.expanded && !this.isHiddenRoot()){
12423             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
12424                 return;
12425             }
12426             this.expanded = false;
12427             if((this.getOwnerTree().animate && anim !== false) || anim){
12428                 this.ui.animCollapse(function(){
12429                     this.fireEvent("collapse", this);
12430                     if(deep === true){
12431                         this.collapseChildNodes(true);
12432                     }
12433                 }.createDelegate(this));
12434                 return;
12435             }else{
12436                 this.ui.collapse();
12437                 this.fireEvent("collapse", this);
12438             }
12439         }
12440         if(deep === true){
12441             var cs = this.childNodes;
12442             for(var i = 0, len = cs.length; i < len; i++) {
12443                 cs[i].collapse(true, false);
12444             }
12445         }
12446     },
12447
12448     // private
12449     delayedExpand : function(delay){
12450         if(!this.expandProcId){
12451             this.expandProcId = this.expand.defer(delay, this);
12452         }
12453     },
12454
12455     // private
12456     cancelExpand : function(){
12457         if(this.expandProcId){
12458             clearTimeout(this.expandProcId);
12459         }
12460         this.expandProcId = false;
12461     },
12462
12463     /**
12464      * Toggles expanded/collapsed state of the node
12465      */
12466     toggle : function(){
12467         if(this.expanded){
12468             this.collapse();
12469         }else{
12470             this.expand();
12471         }
12472     },
12473
12474     /**
12475      * Ensures all parent nodes are expanded
12476      */
12477     ensureVisible : function(callback){
12478         var tree = this.getOwnerTree();
12479         tree.expandPath(this.parentNode.getPath(), false, function(){
12480             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
12481             Roo.callback(callback);
12482         }.createDelegate(this));
12483     },
12484
12485     /**
12486      * Expand all child nodes
12487      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
12488      */
12489     expandChildNodes : function(deep){
12490         var cs = this.childNodes;
12491         for(var i = 0, len = cs.length; i < len; i++) {
12492                 cs[i].expand(deep);
12493         }
12494     },
12495
12496     /**
12497      * Collapse all child nodes
12498      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
12499      */
12500     collapseChildNodes : function(deep){
12501         var cs = this.childNodes;
12502         for(var i = 0, len = cs.length; i < len; i++) {
12503                 cs[i].collapse(deep);
12504         }
12505     },
12506
12507     /**
12508      * Disables this node
12509      */
12510     disable : function(){
12511         this.disabled = true;
12512         this.unselect();
12513         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12514             this.ui.onDisableChange(this, true);
12515         }
12516         this.fireEvent("disabledchange", this, true);
12517     },
12518
12519     /**
12520      * Enables this node
12521      */
12522     enable : function(){
12523         this.disabled = false;
12524         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12525             this.ui.onDisableChange(this, false);
12526         }
12527         this.fireEvent("disabledchange", this, false);
12528     },
12529
12530     // private
12531     renderChildren : function(suppressEvent){
12532         if(suppressEvent !== false){
12533             this.fireEvent("beforechildrenrendered", this);
12534         }
12535         var cs = this.childNodes;
12536         for(var i = 0, len = cs.length; i < len; i++){
12537             cs[i].render(true);
12538         }
12539         this.childrenRendered = true;
12540     },
12541
12542     // private
12543     sort : function(fn, scope){
12544         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
12545         if(this.childrenRendered){
12546             var cs = this.childNodes;
12547             for(var i = 0, len = cs.length; i < len; i++){
12548                 cs[i].render(true);
12549             }
12550         }
12551     },
12552
12553     // private
12554     render : function(bulkRender){
12555         this.ui.render(bulkRender);
12556         if(!this.rendered){
12557             this.rendered = true;
12558             if(this.expanded){
12559                 this.expanded = false;
12560                 this.expand(false, false);
12561             }
12562         }
12563     },
12564
12565     // private
12566     renderIndent : function(deep, refresh){
12567         if(refresh){
12568             this.ui.childIndent = null;
12569         }
12570         this.ui.renderIndent();
12571         if(deep === true && this.childrenRendered){
12572             var cs = this.childNodes;
12573             for(var i = 0, len = cs.length; i < len; i++){
12574                 cs[i].renderIndent(true, refresh);
12575             }
12576         }
12577     }
12578 });/*
12579  * Based on:
12580  * Ext JS Library 1.1.1
12581  * Copyright(c) 2006-2007, Ext JS, LLC.
12582  *
12583  * Originally Released Under LGPL - original licence link has changed is not relivant.
12584  *
12585  * Fork - LGPL
12586  * <script type="text/javascript">
12587  */
12588  
12589 /**
12590  * @class Roo.tree.AsyncTreeNode
12591  * @extends Roo.tree.TreeNode
12592  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
12593  * @constructor
12594  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
12595  */
12596  Roo.tree.AsyncTreeNode = function(config){
12597     this.loaded = false;
12598     this.loading = false;
12599     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
12600     /**
12601     * @event beforeload
12602     * Fires before this node is loaded, return false to cancel
12603     * @param {Node} this This node
12604     */
12605     this.addEvents({'beforeload':true, 'load': true});
12606     /**
12607     * @event load
12608     * Fires when this node is loaded
12609     * @param {Node} this This node
12610     */
12611     /**
12612      * The loader used by this node (defaults to using the tree's defined loader)
12613      * @type TreeLoader
12614      * @property loader
12615      */
12616 };
12617 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
12618     expand : function(deep, anim, callback){
12619         if(this.loading){ // if an async load is already running, waiting til it's done
12620             var timer;
12621             var f = function(){
12622                 if(!this.loading){ // done loading
12623                     clearInterval(timer);
12624                     this.expand(deep, anim, callback);
12625                 }
12626             }.createDelegate(this);
12627             timer = setInterval(f, 200);
12628             return;
12629         }
12630         if(!this.loaded){
12631             if(this.fireEvent("beforeload", this) === false){
12632                 return;
12633             }
12634             this.loading = true;
12635             this.ui.beforeLoad(this);
12636             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
12637             if(loader){
12638                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
12639                 return;
12640             }
12641         }
12642         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
12643     },
12644     
12645     /**
12646      * Returns true if this node is currently loading
12647      * @return {Boolean}
12648      */
12649     isLoading : function(){
12650         return this.loading;  
12651     },
12652     
12653     loadComplete : function(deep, anim, callback){
12654         this.loading = false;
12655         this.loaded = true;
12656         this.ui.afterLoad(this);
12657         this.fireEvent("load", this);
12658         this.expand(deep, anim, callback);
12659     },
12660     
12661     /**
12662      * Returns true if this node has been loaded
12663      * @return {Boolean}
12664      */
12665     isLoaded : function(){
12666         return this.loaded;
12667     },
12668     
12669     hasChildNodes : function(){
12670         if(!this.isLeaf() && !this.loaded){
12671             return true;
12672         }else{
12673             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
12674         }
12675     },
12676
12677     /**
12678      * Trigger a reload for this node
12679      * @param {Function} callback
12680      */
12681     reload : function(callback){
12682         this.collapse(false, false);
12683         while(this.firstChild){
12684             this.removeChild(this.firstChild);
12685         }
12686         this.childrenRendered = false;
12687         this.loaded = false;
12688         if(this.isHiddenRoot()){
12689             this.expanded = false;
12690         }
12691         this.expand(false, false, callback);
12692     }
12693 });/*
12694  * Based on:
12695  * Ext JS Library 1.1.1
12696  * Copyright(c) 2006-2007, Ext JS, LLC.
12697  *
12698  * Originally Released Under LGPL - original licence link has changed is not relivant.
12699  *
12700  * Fork - LGPL
12701  * <script type="text/javascript">
12702  */
12703  
12704 /**
12705  * @class Roo.tree.TreeNodeUI
12706  * @constructor
12707  * @param {Object} node The node to render
12708  * The TreeNode UI implementation is separate from the
12709  * tree implementation. Unless you are customizing the tree UI,
12710  * you should never have to use this directly.
12711  */
12712 Roo.tree.TreeNodeUI = function(node){
12713     this.node = node;
12714     this.rendered = false;
12715     this.animating = false;
12716     this.emptyIcon = Roo.BLANK_IMAGE_URL;
12717 };
12718
12719 Roo.tree.TreeNodeUI.prototype = {
12720     removeChild : function(node){
12721         if(this.rendered){
12722             this.ctNode.removeChild(node.ui.getEl());
12723         }
12724     },
12725
12726     beforeLoad : function(){
12727          this.addClass("x-tree-node-loading");
12728     },
12729
12730     afterLoad : function(){
12731          this.removeClass("x-tree-node-loading");
12732     },
12733
12734     onTextChange : function(node, text, oldText){
12735         if(this.rendered){
12736             this.textNode.innerHTML = text;
12737         }
12738     },
12739
12740     onDisableChange : function(node, state){
12741         this.disabled = state;
12742         if(state){
12743             this.addClass("x-tree-node-disabled");
12744         }else{
12745             this.removeClass("x-tree-node-disabled");
12746         }
12747     },
12748
12749     onSelectedChange : function(state){
12750         if(state){
12751             this.focus();
12752             this.addClass("x-tree-selected");
12753         }else{
12754             //this.blur();
12755             this.removeClass("x-tree-selected");
12756         }
12757     },
12758
12759     onMove : function(tree, node, oldParent, newParent, index, refNode){
12760         this.childIndent = null;
12761         if(this.rendered){
12762             var targetNode = newParent.ui.getContainer();
12763             if(!targetNode){//target not rendered
12764                 this.holder = document.createElement("div");
12765                 this.holder.appendChild(this.wrap);
12766                 return;
12767             }
12768             var insertBefore = refNode ? refNode.ui.getEl() : null;
12769             if(insertBefore){
12770                 targetNode.insertBefore(this.wrap, insertBefore);
12771             }else{
12772                 targetNode.appendChild(this.wrap);
12773             }
12774             this.node.renderIndent(true);
12775         }
12776     },
12777
12778     addClass : function(cls){
12779         if(this.elNode){
12780             Roo.fly(this.elNode).addClass(cls);
12781         }
12782     },
12783
12784     removeClass : function(cls){
12785         if(this.elNode){
12786             Roo.fly(this.elNode).removeClass(cls);
12787         }
12788     },
12789
12790     remove : function(){
12791         if(this.rendered){
12792             this.holder = document.createElement("div");
12793             this.holder.appendChild(this.wrap);
12794         }
12795     },
12796
12797     fireEvent : function(){
12798         return this.node.fireEvent.apply(this.node, arguments);
12799     },
12800
12801     initEvents : function(){
12802         this.node.on("move", this.onMove, this);
12803         var E = Roo.EventManager;
12804         var a = this.anchor;
12805
12806         var el = Roo.fly(a, '_treeui');
12807
12808         if(Roo.isOpera){ // opera render bug ignores the CSS
12809             el.setStyle("text-decoration", "none");
12810         }
12811
12812         el.on("click", this.onClick, this);
12813         el.on("dblclick", this.onDblClick, this);
12814
12815         if(this.checkbox){
12816             Roo.EventManager.on(this.checkbox,
12817                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
12818         }
12819
12820         el.on("contextmenu", this.onContextMenu, this);
12821
12822         var icon = Roo.fly(this.iconNode);
12823         icon.on("click", this.onClick, this);
12824         icon.on("dblclick", this.onDblClick, this);
12825         icon.on("contextmenu", this.onContextMenu, this);
12826         E.on(this.ecNode, "click", this.ecClick, this, true);
12827
12828         if(this.node.disabled){
12829             this.addClass("x-tree-node-disabled");
12830         }
12831         if(this.node.hidden){
12832             this.addClass("x-tree-node-disabled");
12833         }
12834         var ot = this.node.getOwnerTree();
12835         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
12836         if(dd && (!this.node.isRoot || ot.rootVisible)){
12837             Roo.dd.Registry.register(this.elNode, {
12838                 node: this.node,
12839                 handles: this.getDDHandles(),
12840                 isHandle: false
12841             });
12842         }
12843     },
12844
12845     getDDHandles : function(){
12846         return [this.iconNode, this.textNode];
12847     },
12848
12849     hide : function(){
12850         if(this.rendered){
12851             this.wrap.style.display = "none";
12852         }
12853     },
12854
12855     show : function(){
12856         if(this.rendered){
12857             this.wrap.style.display = "";
12858         }
12859     },
12860
12861     onContextMenu : function(e){
12862         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
12863             e.preventDefault();
12864             this.focus();
12865             this.fireEvent("contextmenu", this.node, e);
12866         }
12867     },
12868
12869     onClick : function(e){
12870         if(this.dropping){
12871             e.stopEvent();
12872             return;
12873         }
12874         if(this.fireEvent("beforeclick", this.node, e) !== false){
12875             if(!this.disabled && this.node.attributes.href){
12876                 this.fireEvent("click", this.node, e);
12877                 return;
12878             }
12879             e.preventDefault();
12880             if(this.disabled){
12881                 return;
12882             }
12883
12884             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
12885                 this.node.toggle();
12886             }
12887
12888             this.fireEvent("click", this.node, e);
12889         }else{
12890             e.stopEvent();
12891         }
12892     },
12893
12894     onDblClick : function(e){
12895         e.preventDefault();
12896         if(this.disabled){
12897             return;
12898         }
12899         if(this.checkbox){
12900             this.toggleCheck();
12901         }
12902         if(!this.animating && this.node.hasChildNodes()){
12903             this.node.toggle();
12904         }
12905         this.fireEvent("dblclick", this.node, e);
12906     },
12907
12908     onCheckChange : function(){
12909         var checked = this.checkbox.checked;
12910         this.node.attributes.checked = checked;
12911         this.fireEvent('checkchange', this.node, checked);
12912     },
12913
12914     ecClick : function(e){
12915         if(!this.animating && this.node.hasChildNodes()){
12916             this.node.toggle();
12917         }
12918     },
12919
12920     startDrop : function(){
12921         this.dropping = true;
12922     },
12923
12924     // delayed drop so the click event doesn't get fired on a drop
12925     endDrop : function(){
12926        setTimeout(function(){
12927            this.dropping = false;
12928        }.createDelegate(this), 50);
12929     },
12930
12931     expand : function(){
12932         this.updateExpandIcon();
12933         this.ctNode.style.display = "";
12934     },
12935
12936     focus : function(){
12937         if(!this.node.preventHScroll){
12938             try{this.anchor.focus();
12939             }catch(e){}
12940         }else if(!Roo.isIE){
12941             try{
12942                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
12943                 var l = noscroll.scrollLeft;
12944                 this.anchor.focus();
12945                 noscroll.scrollLeft = l;
12946             }catch(e){}
12947         }
12948     },
12949
12950     toggleCheck : function(value){
12951         var cb = this.checkbox;
12952         if(cb){
12953             cb.checked = (value === undefined ? !cb.checked : value);
12954         }
12955     },
12956
12957     blur : function(){
12958         try{
12959             this.anchor.blur();
12960         }catch(e){}
12961     },
12962
12963     animExpand : function(callback){
12964         var ct = Roo.get(this.ctNode);
12965         ct.stopFx();
12966         if(!this.node.hasChildNodes()){
12967             this.updateExpandIcon();
12968             this.ctNode.style.display = "";
12969             Roo.callback(callback);
12970             return;
12971         }
12972         this.animating = true;
12973         this.updateExpandIcon();
12974
12975         ct.slideIn('t', {
12976            callback : function(){
12977                this.animating = false;
12978                Roo.callback(callback);
12979             },
12980             scope: this,
12981             duration: this.node.ownerTree.duration || .25
12982         });
12983     },
12984
12985     highlight : function(){
12986         var tree = this.node.getOwnerTree();
12987         Roo.fly(this.wrap).highlight(
12988             tree.hlColor || "C3DAF9",
12989             {endColor: tree.hlBaseColor}
12990         );
12991     },
12992
12993     collapse : function(){
12994         this.updateExpandIcon();
12995         this.ctNode.style.display = "none";
12996     },
12997
12998     animCollapse : function(callback){
12999         var ct = Roo.get(this.ctNode);
13000         ct.enableDisplayMode('block');
13001         ct.stopFx();
13002
13003         this.animating = true;
13004         this.updateExpandIcon();
13005
13006         ct.slideOut('t', {
13007             callback : function(){
13008                this.animating = false;
13009                Roo.callback(callback);
13010             },
13011             scope: this,
13012             duration: this.node.ownerTree.duration || .25
13013         });
13014     },
13015
13016     getContainer : function(){
13017         return this.ctNode;
13018     },
13019
13020     getEl : function(){
13021         return this.wrap;
13022     },
13023
13024     appendDDGhost : function(ghostNode){
13025         ghostNode.appendChild(this.elNode.cloneNode(true));
13026     },
13027
13028     getDDRepairXY : function(){
13029         return Roo.lib.Dom.getXY(this.iconNode);
13030     },
13031
13032     onRender : function(){
13033         this.render();
13034     },
13035
13036     render : function(bulkRender){
13037         var n = this.node, a = n.attributes;
13038         var targetNode = n.parentNode ?
13039               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
13040
13041         if(!this.rendered){
13042             this.rendered = true;
13043
13044             this.renderElements(n, a, targetNode, bulkRender);
13045
13046             if(a.qtip){
13047                if(this.textNode.setAttributeNS){
13048                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
13049                    if(a.qtipTitle){
13050                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
13051                    }
13052                }else{
13053                    this.textNode.setAttribute("ext:qtip", a.qtip);
13054                    if(a.qtipTitle){
13055                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
13056                    }
13057                }
13058             }else if(a.qtipCfg){
13059                 a.qtipCfg.target = Roo.id(this.textNode);
13060                 Roo.QuickTips.register(a.qtipCfg);
13061             }
13062             this.initEvents();
13063             if(!this.node.expanded){
13064                 this.updateExpandIcon();
13065             }
13066         }else{
13067             if(bulkRender === true) {
13068                 targetNode.appendChild(this.wrap);
13069             }
13070         }
13071     },
13072
13073     renderElements : function(n, a, targetNode, bulkRender)
13074     {
13075         // add some indent caching, this helps performance when rendering a large tree
13076         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
13077         var t = n.getOwnerTree();
13078         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
13079         if (typeof(n.attributes.html) != 'undefined') {
13080             txt = n.attributes.html;
13081         }
13082         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
13083         var cb = typeof a.checked == 'boolean';
13084         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
13085         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
13086             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
13087             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
13088             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
13089             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
13090             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
13091              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
13092                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
13093             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
13094             "</li>"];
13095
13096         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
13097             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
13098                                 n.nextSibling.ui.getEl(), buf.join(""));
13099         }else{
13100             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
13101         }
13102
13103         this.elNode = this.wrap.childNodes[0];
13104         this.ctNode = this.wrap.childNodes[1];
13105         var cs = this.elNode.childNodes;
13106         this.indentNode = cs[0];
13107         this.ecNode = cs[1];
13108         this.iconNode = cs[2];
13109         var index = 3;
13110         if(cb){
13111             this.checkbox = cs[3];
13112             index++;
13113         }
13114         this.anchor = cs[index];
13115         this.textNode = cs[index].firstChild;
13116     },
13117
13118     getAnchor : function(){
13119         return this.anchor;
13120     },
13121
13122     getTextEl : function(){
13123         return this.textNode;
13124     },
13125
13126     getIconEl : function(){
13127         return this.iconNode;
13128     },
13129
13130     isChecked : function(){
13131         return this.checkbox ? this.checkbox.checked : false;
13132     },
13133
13134     updateExpandIcon : function(){
13135         if(this.rendered){
13136             var n = this.node, c1, c2;
13137             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
13138             var hasChild = n.hasChildNodes();
13139             if(hasChild){
13140                 if(n.expanded){
13141                     cls += "-minus";
13142                     c1 = "x-tree-node-collapsed";
13143                     c2 = "x-tree-node-expanded";
13144                 }else{
13145                     cls += "-plus";
13146                     c1 = "x-tree-node-expanded";
13147                     c2 = "x-tree-node-collapsed";
13148                 }
13149                 if(this.wasLeaf){
13150                     this.removeClass("x-tree-node-leaf");
13151                     this.wasLeaf = false;
13152                 }
13153                 if(this.c1 != c1 || this.c2 != c2){
13154                     Roo.fly(this.elNode).replaceClass(c1, c2);
13155                     this.c1 = c1; this.c2 = c2;
13156                 }
13157             }else{
13158                 // this changes non-leafs into leafs if they have no children.
13159                 // it's not very rational behaviour..
13160                 
13161                 if(!this.wasLeaf && this.node.leaf){
13162                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
13163                     delete this.c1;
13164                     delete this.c2;
13165                     this.wasLeaf = true;
13166                 }
13167             }
13168             var ecc = "x-tree-ec-icon "+cls;
13169             if(this.ecc != ecc){
13170                 this.ecNode.className = ecc;
13171                 this.ecc = ecc;
13172             }
13173         }
13174     },
13175
13176     getChildIndent : function(){
13177         if(!this.childIndent){
13178             var buf = [];
13179             var p = this.node;
13180             while(p){
13181                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
13182                     if(!p.isLast()) {
13183                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
13184                     } else {
13185                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
13186                     }
13187                 }
13188                 p = p.parentNode;
13189             }
13190             this.childIndent = buf.join("");
13191         }
13192         return this.childIndent;
13193     },
13194
13195     renderIndent : function(){
13196         if(this.rendered){
13197             var indent = "";
13198             var p = this.node.parentNode;
13199             if(p){
13200                 indent = p.ui.getChildIndent();
13201             }
13202             if(this.indentMarkup != indent){ // don't rerender if not required
13203                 this.indentNode.innerHTML = indent;
13204                 this.indentMarkup = indent;
13205             }
13206             this.updateExpandIcon();
13207         }
13208     }
13209 };
13210
13211 Roo.tree.RootTreeNodeUI = function(){
13212     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
13213 };
13214 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
13215     render : function(){
13216         if(!this.rendered){
13217             var targetNode = this.node.ownerTree.innerCt.dom;
13218             this.node.expanded = true;
13219             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
13220             this.wrap = this.ctNode = targetNode.firstChild;
13221         }
13222     },
13223     collapse : function(){
13224     },
13225     expand : function(){
13226     }
13227 });/*
13228  * Based on:
13229  * Ext JS Library 1.1.1
13230  * Copyright(c) 2006-2007, Ext JS, LLC.
13231  *
13232  * Originally Released Under LGPL - original licence link has changed is not relivant.
13233  *
13234  * Fork - LGPL
13235  * <script type="text/javascript">
13236  */
13237 /**
13238  * @class Roo.tree.TreeLoader
13239  * @extends Roo.util.Observable
13240  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
13241  * nodes from a specified URL. The response must be a javascript Array definition
13242  * who's elements are node definition objects. eg:
13243  * <pre><code>
13244 {  success : true,
13245    data :      [
13246    
13247     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
13248     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
13249     ]
13250 }
13251
13252
13253 </code></pre>
13254  * <br><br>
13255  * The old style respose with just an array is still supported, but not recommended.
13256  * <br><br>
13257  *
13258  * A server request is sent, and child nodes are loaded only when a node is expanded.
13259  * The loading node's id is passed to the server under the parameter name "node" to
13260  * enable the server to produce the correct child nodes.
13261  * <br><br>
13262  * To pass extra parameters, an event handler may be attached to the "beforeload"
13263  * event, and the parameters specified in the TreeLoader's baseParams property:
13264  * <pre><code>
13265     myTreeLoader.on("beforeload", function(treeLoader, node) {
13266         this.baseParams.category = node.attributes.category;
13267     }, this);
13268     
13269 </code></pre>
13270  *
13271  * This would pass an HTTP parameter called "category" to the server containing
13272  * the value of the Node's "category" attribute.
13273  * @constructor
13274  * Creates a new Treeloader.
13275  * @param {Object} config A config object containing config properties.
13276  */
13277 Roo.tree.TreeLoader = function(config){
13278     this.baseParams = {};
13279     this.requestMethod = "POST";
13280     Roo.apply(this, config);
13281
13282     this.addEvents({
13283     
13284         /**
13285          * @event beforeload
13286          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
13287          * @param {Object} This TreeLoader object.
13288          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13289          * @param {Object} callback The callback function specified in the {@link #load} call.
13290          */
13291         beforeload : true,
13292         /**
13293          * @event load
13294          * Fires when the node has been successfuly loaded.
13295          * @param {Object} This TreeLoader object.
13296          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13297          * @param {Object} response The response object containing the data from the server.
13298          */
13299         load : true,
13300         /**
13301          * @event loadexception
13302          * Fires if the network request failed.
13303          * @param {Object} This TreeLoader object.
13304          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13305          * @param {Object} response The response object containing the data from the server.
13306          */
13307         loadexception : true,
13308         /**
13309          * @event create
13310          * Fires before a node is created, enabling you to return custom Node types 
13311          * @param {Object} This TreeLoader object.
13312          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
13313          */
13314         create : true
13315     });
13316
13317     Roo.tree.TreeLoader.superclass.constructor.call(this);
13318 };
13319
13320 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
13321     /**
13322     * @cfg {String} dataUrl The URL from which to request a Json string which
13323     * specifies an array of node definition object representing the child nodes
13324     * to be loaded.
13325     */
13326     /**
13327     * @cfg {String} requestMethod either GET or POST
13328     * defaults to POST (due to BC)
13329     * to be loaded.
13330     */
13331     /**
13332     * @cfg {Object} baseParams (optional) An object containing properties which
13333     * specify HTTP parameters to be passed to each request for child nodes.
13334     */
13335     /**
13336     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
13337     * created by this loader. If the attributes sent by the server have an attribute in this object,
13338     * they take priority.
13339     */
13340     /**
13341     * @cfg {Object} uiProviders (optional) An object containing properties which
13342     * 
13343     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
13344     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
13345     * <i>uiProvider</i> attribute of a returned child node is a string rather
13346     * than a reference to a TreeNodeUI implementation, this that string value
13347     * is used as a property name in the uiProviders object. You can define the provider named
13348     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
13349     */
13350     uiProviders : {},
13351
13352     /**
13353     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
13354     * child nodes before loading.
13355     */
13356     clearOnLoad : true,
13357
13358     /**
13359     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
13360     * property on loading, rather than expecting an array. (eg. more compatible to a standard
13361     * Grid query { data : [ .....] }
13362     */
13363     
13364     root : false,
13365      /**
13366     * @cfg {String} queryParam (optional) 
13367     * Name of the query as it will be passed on the querystring (defaults to 'node')
13368     * eg. the request will be ?node=[id]
13369     */
13370     
13371     
13372     queryParam: false,
13373     
13374     /**
13375      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
13376      * This is called automatically when a node is expanded, but may be used to reload
13377      * a node (or append new children if the {@link #clearOnLoad} option is false.)
13378      * @param {Roo.tree.TreeNode} node
13379      * @param {Function} callback
13380      */
13381     load : function(node, callback){
13382         if(this.clearOnLoad){
13383             while(node.firstChild){
13384                 node.removeChild(node.firstChild);
13385             }
13386         }
13387         if(node.attributes.children){ // preloaded json children
13388             var cs = node.attributes.children;
13389             for(var i = 0, len = cs.length; i < len; i++){
13390                 node.appendChild(this.createNode(cs[i]));
13391             }
13392             if(typeof callback == "function"){
13393                 callback();
13394             }
13395         }else if(this.dataUrl){
13396             this.requestData(node, callback);
13397         }
13398     },
13399
13400     getParams: function(node){
13401         var buf = [], bp = this.baseParams;
13402         for(var key in bp){
13403             if(typeof bp[key] != "function"){
13404                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
13405             }
13406         }
13407         var n = this.queryParam === false ? 'node' : this.queryParam;
13408         buf.push(n + "=", encodeURIComponent(node.id));
13409         return buf.join("");
13410     },
13411
13412     requestData : function(node, callback){
13413         if(this.fireEvent("beforeload", this, node, callback) !== false){
13414             this.transId = Roo.Ajax.request({
13415                 method:this.requestMethod,
13416                 url: this.dataUrl||this.url,
13417                 success: this.handleResponse,
13418                 failure: this.handleFailure,
13419                 scope: this,
13420                 argument: {callback: callback, node: node},
13421                 params: this.getParams(node)
13422             });
13423         }else{
13424             // if the load is cancelled, make sure we notify
13425             // the node that we are done
13426             if(typeof callback == "function"){
13427                 callback();
13428             }
13429         }
13430     },
13431
13432     isLoading : function(){
13433         return this.transId ? true : false;
13434     },
13435
13436     abort : function(){
13437         if(this.isLoading()){
13438             Roo.Ajax.abort(this.transId);
13439         }
13440     },
13441
13442     // private
13443     createNode : function(attr)
13444     {
13445         // apply baseAttrs, nice idea Corey!
13446         if(this.baseAttrs){
13447             Roo.applyIf(attr, this.baseAttrs);
13448         }
13449         if(this.applyLoader !== false){
13450             attr.loader = this;
13451         }
13452         // uiProvider = depreciated..
13453         
13454         if(typeof(attr.uiProvider) == 'string'){
13455            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
13456                 /**  eval:var:attr */ eval(attr.uiProvider);
13457         }
13458         if(typeof(this.uiProviders['default']) != 'undefined') {
13459             attr.uiProvider = this.uiProviders['default'];
13460         }
13461         
13462         this.fireEvent('create', this, attr);
13463         
13464         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
13465         return(attr.leaf ?
13466                         new Roo.tree.TreeNode(attr) :
13467                         new Roo.tree.AsyncTreeNode(attr));
13468     },
13469
13470     processResponse : function(response, node, callback)
13471     {
13472         var json = response.responseText;
13473         try {
13474             
13475             var o = Roo.decode(json);
13476             
13477             if (this.root === false && typeof(o.success) != undefined) {
13478                 this.root = 'data'; // the default behaviour for list like data..
13479                 }
13480                 
13481             if (this.root !== false &&  !o.success) {
13482                 // it's a failure condition.
13483                 var a = response.argument;
13484                 this.fireEvent("loadexception", this, a.node, response);
13485                 Roo.log("Load failed - should have a handler really");
13486                 return;
13487             }
13488             
13489             
13490             
13491             if (this.root !== false) {
13492                  o = o[this.root];
13493             }
13494             
13495             for(var i = 0, len = o.length; i < len; i++){
13496                 var n = this.createNode(o[i]);
13497                 if(n){
13498                     node.appendChild(n);
13499                 }
13500             }
13501             if(typeof callback == "function"){
13502                 callback(this, node);
13503             }
13504         }catch(e){
13505             this.handleFailure(response);
13506         }
13507     },
13508
13509     handleResponse : function(response){
13510         this.transId = false;
13511         var a = response.argument;
13512         this.processResponse(response, a.node, a.callback);
13513         this.fireEvent("load", this, a.node, response);
13514     },
13515
13516     handleFailure : function(response)
13517     {
13518         // should handle failure better..
13519         this.transId = false;
13520         var a = response.argument;
13521         this.fireEvent("loadexception", this, a.node, response);
13522         if(typeof a.callback == "function"){
13523             a.callback(this, a.node);
13524         }
13525     }
13526 });/*
13527  * Based on:
13528  * Ext JS Library 1.1.1
13529  * Copyright(c) 2006-2007, Ext JS, LLC.
13530  *
13531  * Originally Released Under LGPL - original licence link has changed is not relivant.
13532  *
13533  * Fork - LGPL
13534  * <script type="text/javascript">
13535  */
13536
13537 /**
13538 * @class Roo.tree.TreeFilter
13539 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
13540 * @param {TreePanel} tree
13541 * @param {Object} config (optional)
13542  */
13543 Roo.tree.TreeFilter = function(tree, config){
13544     this.tree = tree;
13545     this.filtered = {};
13546     Roo.apply(this, config);
13547 };
13548
13549 Roo.tree.TreeFilter.prototype = {
13550     clearBlank:false,
13551     reverse:false,
13552     autoClear:false,
13553     remove:false,
13554
13555      /**
13556      * Filter the data by a specific attribute.
13557      * @param {String/RegExp} value Either string that the attribute value
13558      * should start with or a RegExp to test against the attribute
13559      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
13560      * @param {TreeNode} startNode (optional) The node to start the filter at.
13561      */
13562     filter : function(value, attr, startNode){
13563         attr = attr || "text";
13564         var f;
13565         if(typeof value == "string"){
13566             var vlen = value.length;
13567             // auto clear empty filter
13568             if(vlen == 0 && this.clearBlank){
13569                 this.clear();
13570                 return;
13571             }
13572             value = value.toLowerCase();
13573             f = function(n){
13574                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
13575             };
13576         }else if(value.exec){ // regex?
13577             f = function(n){
13578                 return value.test(n.attributes[attr]);
13579             };
13580         }else{
13581             throw 'Illegal filter type, must be string or regex';
13582         }
13583         this.filterBy(f, null, startNode);
13584         },
13585
13586     /**
13587      * Filter by a function. The passed function will be called with each
13588      * node in the tree (or from the startNode). If the function returns true, the node is kept
13589      * otherwise it is filtered. If a node is filtered, its children are also filtered.
13590      * @param {Function} fn The filter function
13591      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
13592      */
13593     filterBy : function(fn, scope, startNode){
13594         startNode = startNode || this.tree.root;
13595         if(this.autoClear){
13596             this.clear();
13597         }
13598         var af = this.filtered, rv = this.reverse;
13599         var f = function(n){
13600             if(n == startNode){
13601                 return true;
13602             }
13603             if(af[n.id]){
13604                 return false;
13605             }
13606             var m = fn.call(scope || n, n);
13607             if(!m || rv){
13608                 af[n.id] = n;
13609                 n.ui.hide();
13610                 return false;
13611             }
13612             return true;
13613         };
13614         startNode.cascade(f);
13615         if(this.remove){
13616            for(var id in af){
13617                if(typeof id != "function"){
13618                    var n = af[id];
13619                    if(n && n.parentNode){
13620                        n.parentNode.removeChild(n);
13621                    }
13622                }
13623            }
13624         }
13625     },
13626
13627     /**
13628      * Clears the current filter. Note: with the "remove" option
13629      * set a filter cannot be cleared.
13630      */
13631     clear : function(){
13632         var t = this.tree;
13633         var af = this.filtered;
13634         for(var id in af){
13635             if(typeof id != "function"){
13636                 var n = af[id];
13637                 if(n){
13638                     n.ui.show();
13639                 }
13640             }
13641         }
13642         this.filtered = {};
13643     }
13644 };
13645 /*
13646  * Based on:
13647  * Ext JS Library 1.1.1
13648  * Copyright(c) 2006-2007, Ext JS, LLC.
13649  *
13650  * Originally Released Under LGPL - original licence link has changed is not relivant.
13651  *
13652  * Fork - LGPL
13653  * <script type="text/javascript">
13654  */
13655  
13656
13657 /**
13658  * @class Roo.tree.TreeSorter
13659  * Provides sorting of nodes in a TreePanel
13660  * 
13661  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
13662  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
13663  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
13664  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
13665  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
13666  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
13667  * @constructor
13668  * @param {TreePanel} tree
13669  * @param {Object} config
13670  */
13671 Roo.tree.TreeSorter = function(tree, config){
13672     Roo.apply(this, config);
13673     tree.on("beforechildrenrendered", this.doSort, this);
13674     tree.on("append", this.updateSort, this);
13675     tree.on("insert", this.updateSort, this);
13676     
13677     var dsc = this.dir && this.dir.toLowerCase() == "desc";
13678     var p = this.property || "text";
13679     var sortType = this.sortType;
13680     var fs = this.folderSort;
13681     var cs = this.caseSensitive === true;
13682     var leafAttr = this.leafAttr || 'leaf';
13683
13684     this.sortFn = function(n1, n2){
13685         if(fs){
13686             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
13687                 return 1;
13688             }
13689             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
13690                 return -1;
13691             }
13692         }
13693         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
13694         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
13695         if(v1 < v2){
13696                         return dsc ? +1 : -1;
13697                 }else if(v1 > v2){
13698                         return dsc ? -1 : +1;
13699         }else{
13700                 return 0;
13701         }
13702     };
13703 };
13704
13705 Roo.tree.TreeSorter.prototype = {
13706     doSort : function(node){
13707         node.sort(this.sortFn);
13708     },
13709     
13710     compareNodes : function(n1, n2){
13711         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
13712     },
13713     
13714     updateSort : function(tree, node){
13715         if(node.childrenRendered){
13716             this.doSort.defer(1, this, [node]);
13717         }
13718     }
13719 };/*
13720  * Based on:
13721  * Ext JS Library 1.1.1
13722  * Copyright(c) 2006-2007, Ext JS, LLC.
13723  *
13724  * Originally Released Under LGPL - original licence link has changed is not relivant.
13725  *
13726  * Fork - LGPL
13727  * <script type="text/javascript">
13728  */
13729
13730 if(Roo.dd.DropZone){
13731     
13732 Roo.tree.TreeDropZone = function(tree, config){
13733     this.allowParentInsert = false;
13734     this.allowContainerDrop = false;
13735     this.appendOnly = false;
13736     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
13737     this.tree = tree;
13738     this.lastInsertClass = "x-tree-no-status";
13739     this.dragOverData = {};
13740 };
13741
13742 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
13743     ddGroup : "TreeDD",
13744     scroll:  true,
13745     
13746     expandDelay : 1000,
13747     
13748     expandNode : function(node){
13749         if(node.hasChildNodes() && !node.isExpanded()){
13750             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
13751         }
13752     },
13753     
13754     queueExpand : function(node){
13755         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
13756     },
13757     
13758     cancelExpand : function(){
13759         if(this.expandProcId){
13760             clearTimeout(this.expandProcId);
13761             this.expandProcId = false;
13762         }
13763     },
13764     
13765     isValidDropPoint : function(n, pt, dd, e, data){
13766         if(!n || !data){ return false; }
13767         var targetNode = n.node;
13768         var dropNode = data.node;
13769         // default drop rules
13770         if(!(targetNode && targetNode.isTarget && pt)){
13771             return false;
13772         }
13773         if(pt == "append" && targetNode.allowChildren === false){
13774             return false;
13775         }
13776         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
13777             return false;
13778         }
13779         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
13780             return false;
13781         }
13782         // reuse the object
13783         var overEvent = this.dragOverData;
13784         overEvent.tree = this.tree;
13785         overEvent.target = targetNode;
13786         overEvent.data = data;
13787         overEvent.point = pt;
13788         overEvent.source = dd;
13789         overEvent.rawEvent = e;
13790         overEvent.dropNode = dropNode;
13791         overEvent.cancel = false;  
13792         var result = this.tree.fireEvent("nodedragover", overEvent);
13793         return overEvent.cancel === false && result !== false;
13794     },
13795     
13796     getDropPoint : function(e, n, dd)
13797     {
13798         var tn = n.node;
13799         if(tn.isRoot){
13800             return tn.allowChildren !== false ? "append" : false; // always append for root
13801         }
13802         var dragEl = n.ddel;
13803         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
13804         var y = Roo.lib.Event.getPageY(e);
13805         //var noAppend = tn.allowChildren === false || tn.isLeaf();
13806         
13807         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
13808         var noAppend = tn.allowChildren === false;
13809         if(this.appendOnly || tn.parentNode.allowChildren === false){
13810             return noAppend ? false : "append";
13811         }
13812         var noBelow = false;
13813         if(!this.allowParentInsert){
13814             noBelow = tn.hasChildNodes() && tn.isExpanded();
13815         }
13816         var q = (b - t) / (noAppend ? 2 : 3);
13817         if(y >= t && y < (t + q)){
13818             return "above";
13819         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
13820             return "below";
13821         }else{
13822             return "append";
13823         }
13824     },
13825     
13826     onNodeEnter : function(n, dd, e, data)
13827     {
13828         this.cancelExpand();
13829     },
13830     
13831     onNodeOver : function(n, dd, e, data)
13832     {
13833        
13834         var pt = this.getDropPoint(e, n, dd);
13835         var node = n.node;
13836         
13837         // auto node expand check
13838         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
13839             this.queueExpand(node);
13840         }else if(pt != "append"){
13841             this.cancelExpand();
13842         }
13843         
13844         // set the insert point style on the target node
13845         var returnCls = this.dropNotAllowed;
13846         if(this.isValidDropPoint(n, pt, dd, e, data)){
13847            if(pt){
13848                var el = n.ddel;
13849                var cls;
13850                if(pt == "above"){
13851                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
13852                    cls = "x-tree-drag-insert-above";
13853                }else if(pt == "below"){
13854                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
13855                    cls = "x-tree-drag-insert-below";
13856                }else{
13857                    returnCls = "x-tree-drop-ok-append";
13858                    cls = "x-tree-drag-append";
13859                }
13860                if(this.lastInsertClass != cls){
13861                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
13862                    this.lastInsertClass = cls;
13863                }
13864            }
13865        }
13866        return returnCls;
13867     },
13868     
13869     onNodeOut : function(n, dd, e, data){
13870         
13871         this.cancelExpand();
13872         this.removeDropIndicators(n);
13873     },
13874     
13875     onNodeDrop : function(n, dd, e, data){
13876         var point = this.getDropPoint(e, n, dd);
13877         var targetNode = n.node;
13878         targetNode.ui.startDrop();
13879         if(!this.isValidDropPoint(n, point, dd, e, data)){
13880             targetNode.ui.endDrop();
13881             return false;
13882         }
13883         // first try to find the drop node
13884         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
13885         var dropEvent = {
13886             tree : this.tree,
13887             target: targetNode,
13888             data: data,
13889             point: point,
13890             source: dd,
13891             rawEvent: e,
13892             dropNode: dropNode,
13893             cancel: !dropNode   
13894         };
13895         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
13896         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
13897             targetNode.ui.endDrop();
13898             return false;
13899         }
13900         // allow target changing
13901         targetNode = dropEvent.target;
13902         if(point == "append" && !targetNode.isExpanded()){
13903             targetNode.expand(false, null, function(){
13904                 this.completeDrop(dropEvent);
13905             }.createDelegate(this));
13906         }else{
13907             this.completeDrop(dropEvent);
13908         }
13909         return true;
13910     },
13911     
13912     completeDrop : function(de){
13913         var ns = de.dropNode, p = de.point, t = de.target;
13914         if(!(ns instanceof Array)){
13915             ns = [ns];
13916         }
13917         var n;
13918         for(var i = 0, len = ns.length; i < len; i++){
13919             n = ns[i];
13920             if(p == "above"){
13921                 t.parentNode.insertBefore(n, t);
13922             }else if(p == "below"){
13923                 t.parentNode.insertBefore(n, t.nextSibling);
13924             }else{
13925                 t.appendChild(n);
13926             }
13927         }
13928         n.ui.focus();
13929         if(this.tree.hlDrop){
13930             n.ui.highlight();
13931         }
13932         t.ui.endDrop();
13933         this.tree.fireEvent("nodedrop", de);
13934     },
13935     
13936     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
13937         if(this.tree.hlDrop){
13938             dropNode.ui.focus();
13939             dropNode.ui.highlight();
13940         }
13941         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
13942     },
13943     
13944     getTree : function(){
13945         return this.tree;
13946     },
13947     
13948     removeDropIndicators : function(n){
13949         if(n && n.ddel){
13950             var el = n.ddel;
13951             Roo.fly(el).removeClass([
13952                     "x-tree-drag-insert-above",
13953                     "x-tree-drag-insert-below",
13954                     "x-tree-drag-append"]);
13955             this.lastInsertClass = "_noclass";
13956         }
13957     },
13958     
13959     beforeDragDrop : function(target, e, id){
13960         this.cancelExpand();
13961         return true;
13962     },
13963     
13964     afterRepair : function(data){
13965         if(data && Roo.enableFx){
13966             data.node.ui.highlight();
13967         }
13968         this.hideProxy();
13969     } 
13970     
13971 });
13972
13973 }
13974 /*
13975  * Based on:
13976  * Ext JS Library 1.1.1
13977  * Copyright(c) 2006-2007, Ext JS, LLC.
13978  *
13979  * Originally Released Under LGPL - original licence link has changed is not relivant.
13980  *
13981  * Fork - LGPL
13982  * <script type="text/javascript">
13983  */
13984  
13985
13986 if(Roo.dd.DragZone){
13987 Roo.tree.TreeDragZone = function(tree, config){
13988     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
13989     this.tree = tree;
13990 };
13991
13992 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
13993     ddGroup : "TreeDD",
13994    
13995     onBeforeDrag : function(data, e){
13996         var n = data.node;
13997         return n && n.draggable && !n.disabled;
13998     },
13999      
14000     
14001     onInitDrag : function(e){
14002         var data = this.dragData;
14003         this.tree.getSelectionModel().select(data.node);
14004         this.proxy.update("");
14005         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
14006         this.tree.fireEvent("startdrag", this.tree, data.node, e);
14007     },
14008     
14009     getRepairXY : function(e, data){
14010         return data.node.ui.getDDRepairXY();
14011     },
14012     
14013     onEndDrag : function(data, e){
14014         this.tree.fireEvent("enddrag", this.tree, data.node, e);
14015         
14016         
14017     },
14018     
14019     onValidDrop : function(dd, e, id){
14020         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
14021         this.hideProxy();
14022     },
14023     
14024     beforeInvalidDrop : function(e, id){
14025         // this scrolls the original position back into view
14026         var sm = this.tree.getSelectionModel();
14027         sm.clearSelections();
14028         sm.select(this.dragData.node);
14029     }
14030 });
14031 }/*
14032  * Based on:
14033  * Ext JS Library 1.1.1
14034  * Copyright(c) 2006-2007, Ext JS, LLC.
14035  *
14036  * Originally Released Under LGPL - original licence link has changed is not relivant.
14037  *
14038  * Fork - LGPL
14039  * <script type="text/javascript">
14040  */
14041 /**
14042  * @class Roo.tree.TreeEditor
14043  * @extends Roo.Editor
14044  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
14045  * as the editor field.
14046  * @constructor
14047  * @param {Object} config (used to be the tree panel.)
14048  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
14049  * 
14050  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
14051  * @cfg {Roo.form.TextField} field [required] The field configuration
14052  *
14053  * 
14054  */
14055 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
14056     var tree = config;
14057     var field;
14058     if (oldconfig) { // old style..
14059         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
14060     } else {
14061         // new style..
14062         tree = config.tree;
14063         config.field = config.field  || {};
14064         config.field.xtype = 'TextField';
14065         field = Roo.factory(config.field, Roo.form);
14066     }
14067     config = config || {};
14068     
14069     
14070     this.addEvents({
14071         /**
14072          * @event beforenodeedit
14073          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
14074          * false from the handler of this event.
14075          * @param {Editor} this
14076          * @param {Roo.tree.Node} node 
14077          */
14078         "beforenodeedit" : true
14079     });
14080     
14081     //Roo.log(config);
14082     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
14083
14084     this.tree = tree;
14085
14086     tree.on('beforeclick', this.beforeNodeClick, this);
14087     tree.getTreeEl().on('mousedown', this.hide, this);
14088     this.on('complete', this.updateNode, this);
14089     this.on('beforestartedit', this.fitToTree, this);
14090     this.on('startedit', this.bindScroll, this, {delay:10});
14091     this.on('specialkey', this.onSpecialKey, this);
14092 };
14093
14094 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
14095     /**
14096      * @cfg {String} alignment
14097      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
14098      */
14099     alignment: "l-l",
14100     // inherit
14101     autoSize: false,
14102     /**
14103      * @cfg {Boolean} hideEl
14104      * True to hide the bound element while the editor is displayed (defaults to false)
14105      */
14106     hideEl : false,
14107     /**
14108      * @cfg {String} cls
14109      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
14110      */
14111     cls: "x-small-editor x-tree-editor",
14112     /**
14113      * @cfg {Boolean} shim
14114      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
14115      */
14116     shim:false,
14117     // inherit
14118     shadow:"frame",
14119     /**
14120      * @cfg {Number} maxWidth
14121      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
14122      * the containing tree element's size, it will be automatically limited for you to the container width, taking
14123      * scroll and client offsets into account prior to each edit.
14124      */
14125     maxWidth: 250,
14126
14127     editDelay : 350,
14128
14129     // private
14130     fitToTree : function(ed, el){
14131         var td = this.tree.getTreeEl().dom, nd = el.dom;
14132         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
14133             td.scrollLeft = nd.offsetLeft;
14134         }
14135         var w = Math.min(
14136                 this.maxWidth,
14137                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
14138         this.setSize(w, '');
14139         
14140         return this.fireEvent('beforenodeedit', this, this.editNode);
14141         
14142     },
14143
14144     // private
14145     triggerEdit : function(node){
14146         this.completeEdit();
14147         this.editNode = node;
14148         this.startEdit(node.ui.textNode, node.text);
14149     },
14150
14151     // private
14152     bindScroll : function(){
14153         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
14154     },
14155
14156     // private
14157     beforeNodeClick : function(node, e){
14158         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
14159         this.lastClick = new Date();
14160         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
14161             e.stopEvent();
14162             this.triggerEdit(node);
14163             return false;
14164         }
14165         return true;
14166     },
14167
14168     // private
14169     updateNode : function(ed, value){
14170         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
14171         this.editNode.setText(value);
14172     },
14173
14174     // private
14175     onHide : function(){
14176         Roo.tree.TreeEditor.superclass.onHide.call(this);
14177         if(this.editNode){
14178             this.editNode.ui.focus();
14179         }
14180     },
14181
14182     // private
14183     onSpecialKey : function(field, e){
14184         var k = e.getKey();
14185         if(k == e.ESC){
14186             e.stopEvent();
14187             this.cancelEdit();
14188         }else if(k == e.ENTER && !e.hasModifier()){
14189             e.stopEvent();
14190             this.completeEdit();
14191         }
14192     }
14193 });//<Script type="text/javascript">
14194 /*
14195  * Based on:
14196  * Ext JS Library 1.1.1
14197  * Copyright(c) 2006-2007, Ext JS, LLC.
14198  *
14199  * Originally Released Under LGPL - original licence link has changed is not relivant.
14200  *
14201  * Fork - LGPL
14202  * <script type="text/javascript">
14203  */
14204  
14205 /**
14206  * Not documented??? - probably should be...
14207  */
14208
14209 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
14210     //focus: Roo.emptyFn, // prevent odd scrolling behavior
14211     
14212     renderElements : function(n, a, targetNode, bulkRender){
14213         //consel.log("renderElements?");
14214         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
14215
14216         var t = n.getOwnerTree();
14217         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
14218         
14219         var cols = t.columns;
14220         var bw = t.borderWidth;
14221         var c = cols[0];
14222         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
14223          var cb = typeof a.checked == "boolean";
14224         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14225         var colcls = 'x-t-' + tid + '-c0';
14226         var buf = [
14227             '<li class="x-tree-node">',
14228             
14229                 
14230                 '<div class="x-tree-node-el ', a.cls,'">',
14231                     // extran...
14232                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
14233                 
14234                 
14235                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
14236                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
14237                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
14238                            (a.icon ? ' x-tree-node-inline-icon' : ''),
14239                            (a.iconCls ? ' '+a.iconCls : ''),
14240                            '" unselectable="on" />',
14241                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
14242                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
14243                              
14244                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14245                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
14246                             '<span unselectable="on" qtip="' + tx + '">',
14247                              tx,
14248                              '</span></a>' ,
14249                     '</div>',
14250                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14251                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
14252                  ];
14253         for(var i = 1, len = cols.length; i < len; i++){
14254             c = cols[i];
14255             colcls = 'x-t-' + tid + '-c' +i;
14256             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14257             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
14258                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
14259                       "</div>");
14260          }
14261          
14262          buf.push(
14263             '</a>',
14264             '<div class="x-clear"></div></div>',
14265             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
14266             "</li>");
14267         
14268         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
14269             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
14270                                 n.nextSibling.ui.getEl(), buf.join(""));
14271         }else{
14272             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
14273         }
14274         var el = this.wrap.firstChild;
14275         this.elRow = el;
14276         this.elNode = el.firstChild;
14277         this.ranchor = el.childNodes[1];
14278         this.ctNode = this.wrap.childNodes[1];
14279         var cs = el.firstChild.childNodes;
14280         this.indentNode = cs[0];
14281         this.ecNode = cs[1];
14282         this.iconNode = cs[2];
14283         var index = 3;
14284         if(cb){
14285             this.checkbox = cs[3];
14286             index++;
14287         }
14288         this.anchor = cs[index];
14289         
14290         this.textNode = cs[index].firstChild;
14291         
14292         //el.on("click", this.onClick, this);
14293         //el.on("dblclick", this.onDblClick, this);
14294         
14295         
14296        // console.log(this);
14297     },
14298     initEvents : function(){
14299         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
14300         
14301             
14302         var a = this.ranchor;
14303
14304         var el = Roo.get(a);
14305
14306         if(Roo.isOpera){ // opera render bug ignores the CSS
14307             el.setStyle("text-decoration", "none");
14308         }
14309
14310         el.on("click", this.onClick, this);
14311         el.on("dblclick", this.onDblClick, this);
14312         el.on("contextmenu", this.onContextMenu, this);
14313         
14314     },
14315     
14316     /*onSelectedChange : function(state){
14317         if(state){
14318             this.focus();
14319             this.addClass("x-tree-selected");
14320         }else{
14321             //this.blur();
14322             this.removeClass("x-tree-selected");
14323         }
14324     },*/
14325     addClass : function(cls){
14326         if(this.elRow){
14327             Roo.fly(this.elRow).addClass(cls);
14328         }
14329         
14330     },
14331     
14332     
14333     removeClass : function(cls){
14334         if(this.elRow){
14335             Roo.fly(this.elRow).removeClass(cls);
14336         }
14337     }
14338
14339     
14340     
14341 });//<Script type="text/javascript">
14342
14343 /*
14344  * Based on:
14345  * Ext JS Library 1.1.1
14346  * Copyright(c) 2006-2007, Ext JS, LLC.
14347  *
14348  * Originally Released Under LGPL - original licence link has changed is not relivant.
14349  *
14350  * Fork - LGPL
14351  * <script type="text/javascript">
14352  */
14353  
14354
14355 /**
14356  * @class Roo.tree.ColumnTree
14357  * @extends Roo.tree.TreePanel
14358  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
14359  * @cfg {int} borderWidth  compined right/left border allowance
14360  * @constructor
14361  * @param {String/HTMLElement/Element} el The container element
14362  * @param {Object} config
14363  */
14364 Roo.tree.ColumnTree =  function(el, config)
14365 {
14366    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
14367    this.addEvents({
14368         /**
14369         * @event resize
14370         * Fire this event on a container when it resizes
14371         * @param {int} w Width
14372         * @param {int} h Height
14373         */
14374        "resize" : true
14375     });
14376     this.on('resize', this.onResize, this);
14377 };
14378
14379 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
14380     //lines:false,
14381     
14382     
14383     borderWidth: Roo.isBorderBox ? 0 : 2, 
14384     headEls : false,
14385     
14386     render : function(){
14387         // add the header.....
14388        
14389         Roo.tree.ColumnTree.superclass.render.apply(this);
14390         
14391         this.el.addClass('x-column-tree');
14392         
14393         this.headers = this.el.createChild(
14394             {cls:'x-tree-headers'},this.innerCt.dom);
14395    
14396         var cols = this.columns, c;
14397         var totalWidth = 0;
14398         this.headEls = [];
14399         var  len = cols.length;
14400         for(var i = 0; i < len; i++){
14401              c = cols[i];
14402              totalWidth += c.width;
14403             this.headEls.push(this.headers.createChild({
14404                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
14405                  cn: {
14406                      cls:'x-tree-hd-text',
14407                      html: c.header
14408                  },
14409                  style:'width:'+(c.width-this.borderWidth)+'px;'
14410              }));
14411         }
14412         this.headers.createChild({cls:'x-clear'});
14413         // prevent floats from wrapping when clipped
14414         this.headers.setWidth(totalWidth);
14415         //this.innerCt.setWidth(totalWidth);
14416         this.innerCt.setStyle({ overflow: 'auto' });
14417         this.onResize(this.width, this.height);
14418              
14419         
14420     },
14421     onResize : function(w,h)
14422     {
14423         this.height = h;
14424         this.width = w;
14425         // resize cols..
14426         this.innerCt.setWidth(this.width);
14427         this.innerCt.setHeight(this.height-20);
14428         
14429         // headers...
14430         var cols = this.columns, c;
14431         var totalWidth = 0;
14432         var expEl = false;
14433         var len = cols.length;
14434         for(var i = 0; i < len; i++){
14435             c = cols[i];
14436             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
14437                 // it's the expander..
14438                 expEl  = this.headEls[i];
14439                 continue;
14440             }
14441             totalWidth += c.width;
14442             
14443         }
14444         if (expEl) {
14445             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
14446         }
14447         this.headers.setWidth(w-20);
14448
14449         
14450         
14451         
14452     }
14453 });
14454 /*
14455  * Based on:
14456  * Ext JS Library 1.1.1
14457  * Copyright(c) 2006-2007, Ext JS, LLC.
14458  *
14459  * Originally Released Under LGPL - original licence link has changed is not relivant.
14460  *
14461  * Fork - LGPL
14462  * <script type="text/javascript">
14463  */
14464  
14465 /**
14466  * @class Roo.menu.Menu
14467  * @extends Roo.util.Observable
14468  * @children Roo.menu.Item Roo.menu.Separator Roo.menu.TextItem
14469  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
14470  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
14471  * @constructor
14472  * Creates a new Menu
14473  * @param {Object} config Configuration options
14474  */
14475 Roo.menu.Menu = function(config){
14476     
14477     Roo.menu.Menu.superclass.constructor.call(this, config);
14478     
14479     this.id = this.id || Roo.id();
14480     this.addEvents({
14481         /**
14482          * @event beforeshow
14483          * Fires before this menu is displayed
14484          * @param {Roo.menu.Menu} this
14485          */
14486         beforeshow : true,
14487         /**
14488          * @event beforehide
14489          * Fires before this menu is hidden
14490          * @param {Roo.menu.Menu} this
14491          */
14492         beforehide : true,
14493         /**
14494          * @event show
14495          * Fires after this menu is displayed
14496          * @param {Roo.menu.Menu} this
14497          */
14498         show : true,
14499         /**
14500          * @event hide
14501          * Fires after this menu is hidden
14502          * @param {Roo.menu.Menu} this
14503          */
14504         hide : true,
14505         /**
14506          * @event click
14507          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
14508          * @param {Roo.menu.Menu} this
14509          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14510          * @param {Roo.EventObject} e
14511          */
14512         click : true,
14513         /**
14514          * @event mouseover
14515          * Fires when the mouse is hovering over this menu
14516          * @param {Roo.menu.Menu} this
14517          * @param {Roo.EventObject} e
14518          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14519          */
14520         mouseover : true,
14521         /**
14522          * @event mouseout
14523          * Fires when the mouse exits this menu
14524          * @param {Roo.menu.Menu} this
14525          * @param {Roo.EventObject} e
14526          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14527          */
14528         mouseout : true,
14529         /**
14530          * @event itemclick
14531          * Fires when a menu item contained in this menu is clicked
14532          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
14533          * @param {Roo.EventObject} e
14534          */
14535         itemclick: true
14536     });
14537     if (this.registerMenu) {
14538         Roo.menu.MenuMgr.register(this);
14539     }
14540     
14541     var mis = this.items;
14542     this.items = new Roo.util.MixedCollection();
14543     if(mis){
14544         this.add.apply(this, mis);
14545     }
14546 };
14547
14548 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
14549     /**
14550      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
14551      */
14552     minWidth : 120,
14553     /**
14554      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
14555      * for bottom-right shadow (defaults to "sides")
14556      */
14557     shadow : "sides",
14558     /**
14559      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
14560      * this menu (defaults to "tl-tr?")
14561      */
14562     subMenuAlign : "tl-tr?",
14563     /**
14564      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
14565      * relative to its element of origin (defaults to "tl-bl?")
14566      */
14567     defaultAlign : "tl-bl?",
14568     /**
14569      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
14570      */
14571     allowOtherMenus : false,
14572     /**
14573      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
14574      */
14575     registerMenu : true,
14576
14577     hidden:true,
14578
14579     // private
14580     render : function(){
14581         if(this.el){
14582             return;
14583         }
14584         var el = this.el = new Roo.Layer({
14585             cls: "x-menu",
14586             shadow:this.shadow,
14587             constrain: false,
14588             parentEl: this.parentEl || document.body,
14589             zindex:15000
14590         });
14591
14592         this.keyNav = new Roo.menu.MenuNav(this);
14593
14594         if(this.plain){
14595             el.addClass("x-menu-plain");
14596         }
14597         if(this.cls){
14598             el.addClass(this.cls);
14599         }
14600         // generic focus element
14601         this.focusEl = el.createChild({
14602             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
14603         });
14604         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
14605         //disabling touch- as it's causing issues ..
14606         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
14607         ul.on('click'   , this.onClick, this);
14608         
14609         
14610         ul.on("mouseover", this.onMouseOver, this);
14611         ul.on("mouseout", this.onMouseOut, this);
14612         this.items.each(function(item){
14613             if (item.hidden) {
14614                 return;
14615             }
14616             
14617             var li = document.createElement("li");
14618             li.className = "x-menu-list-item";
14619             ul.dom.appendChild(li);
14620             item.render(li, this);
14621         }, this);
14622         this.ul = ul;
14623         this.autoWidth();
14624     },
14625
14626     // private
14627     autoWidth : function(){
14628         var el = this.el, ul = this.ul;
14629         if(!el){
14630             return;
14631         }
14632         var w = this.width;
14633         if(w){
14634             el.setWidth(w);
14635         }else if(Roo.isIE){
14636             el.setWidth(this.minWidth);
14637             var t = el.dom.offsetWidth; // force recalc
14638             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
14639         }
14640     },
14641
14642     // private
14643     delayAutoWidth : function(){
14644         if(this.rendered){
14645             if(!this.awTask){
14646                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
14647             }
14648             this.awTask.delay(20);
14649         }
14650     },
14651
14652     // private
14653     findTargetItem : function(e){
14654         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
14655         if(t && t.menuItemId){
14656             return this.items.get(t.menuItemId);
14657         }
14658     },
14659
14660     // private
14661     onClick : function(e){
14662         Roo.log("menu.onClick");
14663         var t = this.findTargetItem(e);
14664         if(!t){
14665             return;
14666         }
14667         Roo.log(e);
14668         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
14669             if(t == this.activeItem && t.shouldDeactivate(e)){
14670                 this.activeItem.deactivate();
14671                 delete this.activeItem;
14672                 return;
14673             }
14674             if(t.canActivate){
14675                 this.setActiveItem(t, true);
14676             }
14677             return;
14678             
14679             
14680         }
14681         
14682         t.onClick(e);
14683         this.fireEvent("click", this, t, e);
14684     },
14685
14686     // private
14687     setActiveItem : function(item, autoExpand){
14688         if(item != this.activeItem){
14689             if(this.activeItem){
14690                 this.activeItem.deactivate();
14691             }
14692             this.activeItem = item;
14693             item.activate(autoExpand);
14694         }else if(autoExpand){
14695             item.expandMenu();
14696         }
14697     },
14698
14699     // private
14700     tryActivate : function(start, step){
14701         var items = this.items;
14702         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
14703             var item = items.get(i);
14704             if(!item.disabled && item.canActivate){
14705                 this.setActiveItem(item, false);
14706                 return item;
14707             }
14708         }
14709         return false;
14710     },
14711
14712     // private
14713     onMouseOver : function(e){
14714         var t;
14715         if(t = this.findTargetItem(e)){
14716             if(t.canActivate && !t.disabled){
14717                 this.setActiveItem(t, true);
14718             }
14719         }
14720         this.fireEvent("mouseover", this, e, t);
14721     },
14722
14723     // private
14724     onMouseOut : function(e){
14725         var t;
14726         if(t = this.findTargetItem(e)){
14727             if(t == this.activeItem && t.shouldDeactivate(e)){
14728                 this.activeItem.deactivate();
14729                 delete this.activeItem;
14730             }
14731         }
14732         this.fireEvent("mouseout", this, e, t);
14733     },
14734
14735     /**
14736      * Read-only.  Returns true if the menu is currently displayed, else false.
14737      * @type Boolean
14738      */
14739     isVisible : function(){
14740         return this.el && !this.hidden;
14741     },
14742
14743     /**
14744      * Displays this menu relative to another element
14745      * @param {String/HTMLElement/Roo.Element} element The element to align to
14746      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
14747      * the element (defaults to this.defaultAlign)
14748      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
14749      */
14750     show : function(el, pos, parentMenu){
14751         this.parentMenu = parentMenu;
14752         if(!this.el){
14753             this.render();
14754         }
14755         this.fireEvent("beforeshow", this);
14756         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
14757     },
14758
14759     /**
14760      * Displays this menu at a specific xy position
14761      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
14762      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
14763      */
14764     showAt : function(xy, parentMenu, /* private: */_e){
14765         this.parentMenu = parentMenu;
14766         if(!this.el){
14767             this.render();
14768         }
14769         if(_e !== false){
14770             this.fireEvent("beforeshow", this);
14771             xy = this.el.adjustForConstraints(xy);
14772         }
14773         this.el.setXY(xy);
14774         this.el.show();
14775         this.hidden = false;
14776         this.focus();
14777         this.fireEvent("show", this);
14778     },
14779
14780     focus : function(){
14781         if(!this.hidden){
14782             this.doFocus.defer(50, this);
14783         }
14784     },
14785
14786     doFocus : function(){
14787         if(!this.hidden){
14788             this.focusEl.focus();
14789         }
14790     },
14791
14792     /**
14793      * Hides this menu and optionally all parent menus
14794      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
14795      */
14796     hide : function(deep){
14797         if(this.el && this.isVisible()){
14798             this.fireEvent("beforehide", this);
14799             if(this.activeItem){
14800                 this.activeItem.deactivate();
14801                 this.activeItem = null;
14802             }
14803             this.el.hide();
14804             this.hidden = true;
14805             this.fireEvent("hide", this);
14806         }
14807         if(deep === true && this.parentMenu){
14808             this.parentMenu.hide(true);
14809         }
14810     },
14811
14812     /**
14813      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
14814      * Any of the following are valid:
14815      * <ul>
14816      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
14817      * <li>An HTMLElement object which will be converted to a menu item</li>
14818      * <li>A menu item config object that will be created as a new menu item</li>
14819      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
14820      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
14821      * </ul>
14822      * Usage:
14823      * <pre><code>
14824 // Create the menu
14825 var menu = new Roo.menu.Menu();
14826
14827 // Create a menu item to add by reference
14828 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
14829
14830 // Add a bunch of items at once using different methods.
14831 // Only the last item added will be returned.
14832 var item = menu.add(
14833     menuItem,                // add existing item by ref
14834     'Dynamic Item',          // new TextItem
14835     '-',                     // new separator
14836     { text: 'Config Item' }  // new item by config
14837 );
14838 </code></pre>
14839      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
14840      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
14841      */
14842     add : function(){
14843         var a = arguments, l = a.length, item;
14844         for(var i = 0; i < l; i++){
14845             var el = a[i];
14846             if ((typeof(el) == "object") && el.xtype && el.xns) {
14847                 el = Roo.factory(el, Roo.menu);
14848             }
14849             
14850             if(el.render){ // some kind of Item
14851                 item = this.addItem(el);
14852             }else if(typeof el == "string"){ // string
14853                 if(el == "separator" || el == "-"){
14854                     item = this.addSeparator();
14855                 }else{
14856                     item = this.addText(el);
14857                 }
14858             }else if(el.tagName || el.el){ // element
14859                 item = this.addElement(el);
14860             }else if(typeof el == "object"){ // must be menu item config?
14861                 item = this.addMenuItem(el);
14862             }
14863         }
14864         return item;
14865     },
14866
14867     /**
14868      * Returns this menu's underlying {@link Roo.Element} object
14869      * @return {Roo.Element} The element
14870      */
14871     getEl : function(){
14872         if(!this.el){
14873             this.render();
14874         }
14875         return this.el;
14876     },
14877
14878     /**
14879      * Adds a separator bar to the menu
14880      * @return {Roo.menu.Item} The menu item that was added
14881      */
14882     addSeparator : function(){
14883         return this.addItem(new Roo.menu.Separator());
14884     },
14885
14886     /**
14887      * Adds an {@link Roo.Element} object to the menu
14888      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
14889      * @return {Roo.menu.Item} The menu item that was added
14890      */
14891     addElement : function(el){
14892         return this.addItem(new Roo.menu.BaseItem(el));
14893     },
14894
14895     /**
14896      * Adds an existing object based on {@link Roo.menu.Item} to the menu
14897      * @param {Roo.menu.Item} item The menu item to add
14898      * @return {Roo.menu.Item} The menu item that was added
14899      */
14900     addItem : function(item){
14901         this.items.add(item);
14902         if(this.ul){
14903             var li = document.createElement("li");
14904             li.className = "x-menu-list-item";
14905             this.ul.dom.appendChild(li);
14906             item.render(li, this);
14907             this.delayAutoWidth();
14908         }
14909         return item;
14910     },
14911
14912     /**
14913      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
14914      * @param {Object} config A MenuItem config object
14915      * @return {Roo.menu.Item} The menu item that was added
14916      */
14917     addMenuItem : function(config){
14918         if(!(config instanceof Roo.menu.Item)){
14919             if(typeof config.checked == "boolean"){ // must be check menu item config?
14920                 config = new Roo.menu.CheckItem(config);
14921             }else{
14922                 config = new Roo.menu.Item(config);
14923             }
14924         }
14925         return this.addItem(config);
14926     },
14927
14928     /**
14929      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
14930      * @param {String} text The text to display in the menu item
14931      * @return {Roo.menu.Item} The menu item that was added
14932      */
14933     addText : function(text){
14934         return this.addItem(new Roo.menu.TextItem({ text : text }));
14935     },
14936
14937     /**
14938      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
14939      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
14940      * @param {Roo.menu.Item} item The menu item to add
14941      * @return {Roo.menu.Item} The menu item that was added
14942      */
14943     insert : function(index, item){
14944         this.items.insert(index, item);
14945         if(this.ul){
14946             var li = document.createElement("li");
14947             li.className = "x-menu-list-item";
14948             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
14949             item.render(li, this);
14950             this.delayAutoWidth();
14951         }
14952         return item;
14953     },
14954
14955     /**
14956      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
14957      * @param {Roo.menu.Item} item The menu item to remove
14958      */
14959     remove : function(item){
14960         this.items.removeKey(item.id);
14961         item.destroy();
14962     },
14963
14964     /**
14965      * Removes and destroys all items in the menu
14966      */
14967     removeAll : function(){
14968         var f;
14969         while(f = this.items.first()){
14970             this.remove(f);
14971         }
14972     }
14973 });
14974
14975 // MenuNav is a private utility class used internally by the Menu
14976 Roo.menu.MenuNav = function(menu){
14977     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
14978     this.scope = this.menu = menu;
14979 };
14980
14981 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
14982     doRelay : function(e, h){
14983         var k = e.getKey();
14984         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
14985             this.menu.tryActivate(0, 1);
14986             return false;
14987         }
14988         return h.call(this.scope || this, e, this.menu);
14989     },
14990
14991     up : function(e, m){
14992         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
14993             m.tryActivate(m.items.length-1, -1);
14994         }
14995     },
14996
14997     down : function(e, m){
14998         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
14999             m.tryActivate(0, 1);
15000         }
15001     },
15002
15003     right : function(e, m){
15004         if(m.activeItem){
15005             m.activeItem.expandMenu(true);
15006         }
15007     },
15008
15009     left : function(e, m){
15010         m.hide();
15011         if(m.parentMenu && m.parentMenu.activeItem){
15012             m.parentMenu.activeItem.activate();
15013         }
15014     },
15015
15016     enter : function(e, m){
15017         if(m.activeItem){
15018             e.stopPropagation();
15019             m.activeItem.onClick(e);
15020             m.fireEvent("click", this, m.activeItem);
15021             return true;
15022         }
15023     }
15024 });/*
15025  * Based on:
15026  * Ext JS Library 1.1.1
15027  * Copyright(c) 2006-2007, Ext JS, LLC.
15028  *
15029  * Originally Released Under LGPL - original licence link has changed is not relivant.
15030  *
15031  * Fork - LGPL
15032  * <script type="text/javascript">
15033  */
15034  
15035 /**
15036  * @class Roo.menu.MenuMgr
15037  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
15038  * @static
15039  */
15040 Roo.menu.MenuMgr = function(){
15041    var menus, active, groups = {}, attached = false, lastShow = new Date();
15042
15043    // private - called when first menu is created
15044    function init(){
15045        menus = {};
15046        active = new Roo.util.MixedCollection();
15047        Roo.get(document).addKeyListener(27, function(){
15048            if(active.length > 0){
15049                hideAll();
15050            }
15051        });
15052    }
15053
15054    // private
15055    function hideAll(){
15056        if(active && active.length > 0){
15057            var c = active.clone();
15058            c.each(function(m){
15059                m.hide();
15060            });
15061        }
15062    }
15063
15064    // private
15065    function onHide(m){
15066        active.remove(m);
15067        if(active.length < 1){
15068            Roo.get(document).un("mousedown", onMouseDown);
15069            attached = false;
15070        }
15071    }
15072
15073    // private
15074    function onShow(m){
15075        var last = active.last();
15076        lastShow = new Date();
15077        active.add(m);
15078        if(!attached){
15079            Roo.get(document).on("mousedown", onMouseDown);
15080            attached = true;
15081        }
15082        if(m.parentMenu){
15083           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
15084           m.parentMenu.activeChild = m;
15085        }else if(last && last.isVisible()){
15086           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
15087        }
15088    }
15089
15090    // private
15091    function onBeforeHide(m){
15092        if(m.activeChild){
15093            m.activeChild.hide();
15094        }
15095        if(m.autoHideTimer){
15096            clearTimeout(m.autoHideTimer);
15097            delete m.autoHideTimer;
15098        }
15099    }
15100
15101    // private
15102    function onBeforeShow(m){
15103        var pm = m.parentMenu;
15104        if(!pm && !m.allowOtherMenus){
15105            hideAll();
15106        }else if(pm && pm.activeChild && active != m){
15107            pm.activeChild.hide();
15108        }
15109    }
15110
15111    // private
15112    function onMouseDown(e){
15113        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
15114            hideAll();
15115        }
15116    }
15117
15118    // private
15119    function onBeforeCheck(mi, state){
15120        if(state){
15121            var g = groups[mi.group];
15122            for(var i = 0, l = g.length; i < l; i++){
15123                if(g[i] != mi){
15124                    g[i].setChecked(false);
15125                }
15126            }
15127        }
15128    }
15129
15130    return {
15131
15132        /**
15133         * Hides all menus that are currently visible
15134         */
15135        hideAll : function(){
15136             hideAll();  
15137        },
15138
15139        // private
15140        register : function(menu){
15141            if(!menus){
15142                init();
15143            }
15144            menus[menu.id] = menu;
15145            menu.on("beforehide", onBeforeHide);
15146            menu.on("hide", onHide);
15147            menu.on("beforeshow", onBeforeShow);
15148            menu.on("show", onShow);
15149            var g = menu.group;
15150            if(g && menu.events["checkchange"]){
15151                if(!groups[g]){
15152                    groups[g] = [];
15153                }
15154                groups[g].push(menu);
15155                menu.on("checkchange", onCheck);
15156            }
15157        },
15158
15159         /**
15160          * Returns a {@link Roo.menu.Menu} object
15161          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
15162          * be used to generate and return a new Menu instance.
15163          */
15164        get : function(menu){
15165            if(typeof menu == "string"){ // menu id
15166                return menus[menu];
15167            }else if(menu.events){  // menu instance
15168                return menu;
15169            }else if(typeof menu.length == 'number'){ // array of menu items?
15170                return new Roo.menu.Menu({items:menu});
15171            }else{ // otherwise, must be a config
15172                return new Roo.menu.Menu(menu);
15173            }
15174        },
15175
15176        // private
15177        unregister : function(menu){
15178            delete menus[menu.id];
15179            menu.un("beforehide", onBeforeHide);
15180            menu.un("hide", onHide);
15181            menu.un("beforeshow", onBeforeShow);
15182            menu.un("show", onShow);
15183            var g = menu.group;
15184            if(g && menu.events["checkchange"]){
15185                groups[g].remove(menu);
15186                menu.un("checkchange", onCheck);
15187            }
15188        },
15189
15190        // private
15191        registerCheckable : function(menuItem){
15192            var g = menuItem.group;
15193            if(g){
15194                if(!groups[g]){
15195                    groups[g] = [];
15196                }
15197                groups[g].push(menuItem);
15198                menuItem.on("beforecheckchange", onBeforeCheck);
15199            }
15200        },
15201
15202        // private
15203        unregisterCheckable : function(menuItem){
15204            var g = menuItem.group;
15205            if(g){
15206                groups[g].remove(menuItem);
15207                menuItem.un("beforecheckchange", onBeforeCheck);
15208            }
15209        }
15210    };
15211 }();/*
15212  * Based on:
15213  * Ext JS Library 1.1.1
15214  * Copyright(c) 2006-2007, Ext JS, LLC.
15215  *
15216  * Originally Released Under LGPL - original licence link has changed is not relivant.
15217  *
15218  * Fork - LGPL
15219  * <script type="text/javascript">
15220  */
15221  
15222
15223 /**
15224  * @class Roo.menu.BaseItem
15225  * @extends Roo.Component
15226  * @abstract
15227  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
15228  * management and base configuration options shared by all menu components.
15229  * @constructor
15230  * Creates a new BaseItem
15231  * @param {Object} config Configuration options
15232  */
15233 Roo.menu.BaseItem = function(config){
15234     Roo.menu.BaseItem.superclass.constructor.call(this, config);
15235
15236     this.addEvents({
15237         /**
15238          * @event click
15239          * Fires when this item is clicked
15240          * @param {Roo.menu.BaseItem} this
15241          * @param {Roo.EventObject} e
15242          */
15243         click: true,
15244         /**
15245          * @event activate
15246          * Fires when this item is activated
15247          * @param {Roo.menu.BaseItem} this
15248          */
15249         activate : true,
15250         /**
15251          * @event deactivate
15252          * Fires when this item is deactivated
15253          * @param {Roo.menu.BaseItem} this
15254          */
15255         deactivate : true
15256     });
15257
15258     if(this.handler){
15259         this.on("click", this.handler, this.scope, true);
15260     }
15261 };
15262
15263 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
15264     /**
15265      * @cfg {Function} handler
15266      * A function that will handle the click event of this menu item (defaults to undefined)
15267      */
15268     /**
15269      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
15270      */
15271     canActivate : false,
15272     
15273      /**
15274      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
15275      */
15276     hidden: false,
15277     
15278     /**
15279      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
15280      */
15281     activeClass : "x-menu-item-active",
15282     /**
15283      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
15284      */
15285     hideOnClick : true,
15286     /**
15287      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
15288      */
15289     hideDelay : 100,
15290
15291     // private
15292     ctype: "Roo.menu.BaseItem",
15293
15294     // private
15295     actionMode : "container",
15296
15297     // private
15298     render : function(container, parentMenu){
15299         this.parentMenu = parentMenu;
15300         Roo.menu.BaseItem.superclass.render.call(this, container);
15301         this.container.menuItemId = this.id;
15302     },
15303
15304     // private
15305     onRender : function(container, position){
15306         this.el = Roo.get(this.el);
15307         container.dom.appendChild(this.el.dom);
15308     },
15309
15310     // private
15311     onClick : function(e){
15312         if(!this.disabled && this.fireEvent("click", this, e) !== false
15313                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
15314             this.handleClick(e);
15315         }else{
15316             e.stopEvent();
15317         }
15318     },
15319
15320     // private
15321     activate : function(){
15322         if(this.disabled){
15323             return false;
15324         }
15325         var li = this.container;
15326         li.addClass(this.activeClass);
15327         this.region = li.getRegion().adjust(2, 2, -2, -2);
15328         this.fireEvent("activate", this);
15329         return true;
15330     },
15331
15332     // private
15333     deactivate : function(){
15334         this.container.removeClass(this.activeClass);
15335         this.fireEvent("deactivate", this);
15336     },
15337
15338     // private
15339     shouldDeactivate : function(e){
15340         return !this.region || !this.region.contains(e.getPoint());
15341     },
15342
15343     // private
15344     handleClick : function(e){
15345         if(this.hideOnClick){
15346             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
15347         }
15348     },
15349
15350     // private
15351     expandMenu : function(autoActivate){
15352         // do nothing
15353     },
15354
15355     // private
15356     hideMenu : function(){
15357         // do nothing
15358     }
15359 });/*
15360  * Based on:
15361  * Ext JS Library 1.1.1
15362  * Copyright(c) 2006-2007, Ext JS, LLC.
15363  *
15364  * Originally Released Under LGPL - original licence link has changed is not relivant.
15365  *
15366  * Fork - LGPL
15367  * <script type="text/javascript">
15368  */
15369  
15370 /**
15371  * @class Roo.menu.Adapter
15372  * @extends Roo.menu.BaseItem
15373  * @abstract
15374  * 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.
15375  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
15376  * @constructor
15377  * Creates a new Adapter
15378  * @param {Object} config Configuration options
15379  */
15380 Roo.menu.Adapter = function(component, config){
15381     Roo.menu.Adapter.superclass.constructor.call(this, config);
15382     this.component = component;
15383 };
15384 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
15385     // private
15386     canActivate : true,
15387
15388     // private
15389     onRender : function(container, position){
15390         this.component.render(container);
15391         this.el = this.component.getEl();
15392     },
15393
15394     // private
15395     activate : function(){
15396         if(this.disabled){
15397             return false;
15398         }
15399         this.component.focus();
15400         this.fireEvent("activate", this);
15401         return true;
15402     },
15403
15404     // private
15405     deactivate : function(){
15406         this.fireEvent("deactivate", this);
15407     },
15408
15409     // private
15410     disable : function(){
15411         this.component.disable();
15412         Roo.menu.Adapter.superclass.disable.call(this);
15413     },
15414
15415     // private
15416     enable : function(){
15417         this.component.enable();
15418         Roo.menu.Adapter.superclass.enable.call(this);
15419     }
15420 });/*
15421  * Based on:
15422  * Ext JS Library 1.1.1
15423  * Copyright(c) 2006-2007, Ext JS, LLC.
15424  *
15425  * Originally Released Under LGPL - original licence link has changed is not relivant.
15426  *
15427  * Fork - LGPL
15428  * <script type="text/javascript">
15429  */
15430
15431 /**
15432  * @class Roo.menu.TextItem
15433  * @extends Roo.menu.BaseItem
15434  * Adds a static text string to a menu, usually used as either a heading or group separator.
15435  * Note: old style constructor with text is still supported.
15436  * 
15437  * @constructor
15438  * Creates a new TextItem
15439  * @param {Object} cfg Configuration
15440  */
15441 Roo.menu.TextItem = function(cfg){
15442     if (typeof(cfg) == 'string') {
15443         this.text = cfg;
15444     } else {
15445         Roo.apply(this,cfg);
15446     }
15447     
15448     Roo.menu.TextItem.superclass.constructor.call(this);
15449 };
15450
15451 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
15452     /**
15453      * @cfg {String} text Text to show on item.
15454      */
15455     text : '',
15456     
15457     /**
15458      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15459      */
15460     hideOnClick : false,
15461     /**
15462      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
15463      */
15464     itemCls : "x-menu-text",
15465
15466     // private
15467     onRender : function(){
15468         var s = document.createElement("span");
15469         s.className = this.itemCls;
15470         s.innerHTML = this.text;
15471         this.el = s;
15472         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
15473     }
15474 });/*
15475  * Based on:
15476  * Ext JS Library 1.1.1
15477  * Copyright(c) 2006-2007, Ext JS, LLC.
15478  *
15479  * Originally Released Under LGPL - original licence link has changed is not relivant.
15480  *
15481  * Fork - LGPL
15482  * <script type="text/javascript">
15483  */
15484
15485 /**
15486  * @class Roo.menu.Separator
15487  * @extends Roo.menu.BaseItem
15488  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
15489  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
15490  * @constructor
15491  * @param {Object} config Configuration options
15492  */
15493 Roo.menu.Separator = function(config){
15494     Roo.menu.Separator.superclass.constructor.call(this, config);
15495 };
15496
15497 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
15498     /**
15499      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
15500      */
15501     itemCls : "x-menu-sep",
15502     /**
15503      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15504      */
15505     hideOnClick : false,
15506
15507     // private
15508     onRender : function(li){
15509         var s = document.createElement("span");
15510         s.className = this.itemCls;
15511         s.innerHTML = "&#160;";
15512         this.el = s;
15513         li.addClass("x-menu-sep-li");
15514         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
15515     }
15516 });/*
15517  * Based on:
15518  * Ext JS Library 1.1.1
15519  * Copyright(c) 2006-2007, Ext JS, LLC.
15520  *
15521  * Originally Released Under LGPL - original licence link has changed is not relivant.
15522  *
15523  * Fork - LGPL
15524  * <script type="text/javascript">
15525  */
15526 /**
15527  * @class Roo.menu.Item
15528  * @extends Roo.menu.BaseItem
15529  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
15530  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
15531  * activation and click handling.
15532  * @constructor
15533  * Creates a new Item
15534  * @param {Object} config Configuration options
15535  */
15536 Roo.menu.Item = function(config){
15537     Roo.menu.Item.superclass.constructor.call(this, config);
15538     if(this.menu){
15539         this.menu = Roo.menu.MenuMgr.get(this.menu);
15540     }
15541 };
15542 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
15543     /**
15544      * @cfg {Roo.menu.Menu} menu
15545      * A Sub menu
15546      */
15547     /**
15548      * @cfg {String} text
15549      * The text to show on the menu item.
15550      */
15551     text: '',
15552      /**
15553      * @cfg {String} html to render in menu
15554      * The text to show on the menu item (HTML version).
15555      */
15556     html: '',
15557     /**
15558      * @cfg {String} icon
15559      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
15560      */
15561     icon: undefined,
15562     /**
15563      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
15564      */
15565     itemCls : "x-menu-item",
15566     /**
15567      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
15568      */
15569     canActivate : true,
15570     /**
15571      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
15572      */
15573     showDelay: 200,
15574     // doc'd in BaseItem
15575     hideDelay: 200,
15576
15577     // private
15578     ctype: "Roo.menu.Item",
15579     
15580     // private
15581     onRender : function(container, position){
15582         var el = document.createElement("a");
15583         el.hideFocus = true;
15584         el.unselectable = "on";
15585         el.href = this.href || "#";
15586         if(this.hrefTarget){
15587             el.target = this.hrefTarget;
15588         }
15589         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
15590         
15591         var html = this.html.length ? this.html  : String.format('{0}',this.text);
15592         
15593         el.innerHTML = String.format(
15594                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
15595                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
15596         this.el = el;
15597         Roo.menu.Item.superclass.onRender.call(this, container, position);
15598     },
15599
15600     /**
15601      * Sets the text to display in this menu item
15602      * @param {String} text The text to display
15603      * @param {Boolean} isHTML true to indicate text is pure html.
15604      */
15605     setText : function(text, isHTML){
15606         if (isHTML) {
15607             this.html = text;
15608         } else {
15609             this.text = text;
15610             this.html = '';
15611         }
15612         if(this.rendered){
15613             var html = this.html.length ? this.html  : String.format('{0}',this.text);
15614      
15615             this.el.update(String.format(
15616                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
15617                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
15618             this.parentMenu.autoWidth();
15619         }
15620     },
15621
15622     // private
15623     handleClick : function(e){
15624         if(!this.href){ // if no link defined, stop the event automatically
15625             e.stopEvent();
15626         }
15627         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
15628     },
15629
15630     // private
15631     activate : function(autoExpand){
15632         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
15633             this.focus();
15634             if(autoExpand){
15635                 this.expandMenu();
15636             }
15637         }
15638         return true;
15639     },
15640
15641     // private
15642     shouldDeactivate : function(e){
15643         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
15644             if(this.menu && this.menu.isVisible()){
15645                 return !this.menu.getEl().getRegion().contains(e.getPoint());
15646             }
15647             return true;
15648         }
15649         return false;
15650     },
15651
15652     // private
15653     deactivate : function(){
15654         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
15655         this.hideMenu();
15656     },
15657
15658     // private
15659     expandMenu : function(autoActivate){
15660         if(!this.disabled && this.menu){
15661             clearTimeout(this.hideTimer);
15662             delete this.hideTimer;
15663             if(!this.menu.isVisible() && !this.showTimer){
15664                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
15665             }else if (this.menu.isVisible() && autoActivate){
15666                 this.menu.tryActivate(0, 1);
15667             }
15668         }
15669     },
15670
15671     // private
15672     deferExpand : function(autoActivate){
15673         delete this.showTimer;
15674         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
15675         if(autoActivate){
15676             this.menu.tryActivate(0, 1);
15677         }
15678     },
15679
15680     // private
15681     hideMenu : function(){
15682         clearTimeout(this.showTimer);
15683         delete this.showTimer;
15684         if(!this.hideTimer && this.menu && this.menu.isVisible()){
15685             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
15686         }
15687     },
15688
15689     // private
15690     deferHide : function(){
15691         delete this.hideTimer;
15692         this.menu.hide();
15693     }
15694 });/*
15695  * Based on:
15696  * Ext JS Library 1.1.1
15697  * Copyright(c) 2006-2007, Ext JS, LLC.
15698  *
15699  * Originally Released Under LGPL - original licence link has changed is not relivant.
15700  *
15701  * Fork - LGPL
15702  * <script type="text/javascript">
15703  */
15704  
15705 /**
15706  * @class Roo.menu.CheckItem
15707  * @extends Roo.menu.Item
15708  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
15709  * @constructor
15710  * Creates a new CheckItem
15711  * @param {Object} config Configuration options
15712  */
15713 Roo.menu.CheckItem = function(config){
15714     Roo.menu.CheckItem.superclass.constructor.call(this, config);
15715     this.addEvents({
15716         /**
15717          * @event beforecheckchange
15718          * Fires before the checked value is set, providing an opportunity to cancel if needed
15719          * @param {Roo.menu.CheckItem} this
15720          * @param {Boolean} checked The new checked value that will be set
15721          */
15722         "beforecheckchange" : true,
15723         /**
15724          * @event checkchange
15725          * Fires after the checked value has been set
15726          * @param {Roo.menu.CheckItem} this
15727          * @param {Boolean} checked The checked value that was set
15728          */
15729         "checkchange" : true
15730     });
15731     if(this.checkHandler){
15732         this.on('checkchange', this.checkHandler, this.scope);
15733     }
15734 };
15735 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
15736     /**
15737      * @cfg {String} group
15738      * All check items with the same group name will automatically be grouped into a single-select
15739      * radio button group (defaults to '')
15740      */
15741     /**
15742      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
15743      */
15744     itemCls : "x-menu-item x-menu-check-item",
15745     /**
15746      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
15747      */
15748     groupClass : "x-menu-group-item",
15749
15750     /**
15751      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
15752      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
15753      * initialized with checked = true will be rendered as checked.
15754      */
15755     checked: false,
15756
15757     // private
15758     ctype: "Roo.menu.CheckItem",
15759
15760     // private
15761     onRender : function(c){
15762         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
15763         if(this.group){
15764             this.el.addClass(this.groupClass);
15765         }
15766         Roo.menu.MenuMgr.registerCheckable(this);
15767         if(this.checked){
15768             this.checked = false;
15769             this.setChecked(true, true);
15770         }
15771     },
15772
15773     // private
15774     destroy : function(){
15775         if(this.rendered){
15776             Roo.menu.MenuMgr.unregisterCheckable(this);
15777         }
15778         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
15779     },
15780
15781     /**
15782      * Set the checked state of this item
15783      * @param {Boolean} checked The new checked value
15784      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
15785      */
15786     setChecked : function(state, suppressEvent){
15787         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
15788             if(this.container){
15789                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
15790             }
15791             this.checked = state;
15792             if(suppressEvent !== true){
15793                 this.fireEvent("checkchange", this, state);
15794             }
15795         }
15796     },
15797
15798     // private
15799     handleClick : function(e){
15800        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
15801            this.setChecked(!this.checked);
15802        }
15803        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
15804     }
15805 });/*
15806  * Based on:
15807  * Ext JS Library 1.1.1
15808  * Copyright(c) 2006-2007, Ext JS, LLC.
15809  *
15810  * Originally Released Under LGPL - original licence link has changed is not relivant.
15811  *
15812  * Fork - LGPL
15813  * <script type="text/javascript">
15814  */
15815  
15816 /**
15817  * @class Roo.menu.DateItem
15818  * @extends Roo.menu.Adapter
15819  * A menu item that wraps the {@link Roo.DatPicker} component.
15820  * @constructor
15821  * Creates a new DateItem
15822  * @param {Object} config Configuration options
15823  */
15824 Roo.menu.DateItem = function(config){
15825     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
15826     /** The Roo.DatePicker object @type Roo.DatePicker */
15827     this.picker = this.component;
15828     this.addEvents({select: true});
15829     
15830     this.picker.on("render", function(picker){
15831         picker.getEl().swallowEvent("click");
15832         picker.container.addClass("x-menu-date-item");
15833     });
15834
15835     this.picker.on("select", this.onSelect, this);
15836 };
15837
15838 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
15839     // private
15840     onSelect : function(picker, date){
15841         this.fireEvent("select", this, date, picker);
15842         Roo.menu.DateItem.superclass.handleClick.call(this);
15843     }
15844 });/*
15845  * Based on:
15846  * Ext JS Library 1.1.1
15847  * Copyright(c) 2006-2007, Ext JS, LLC.
15848  *
15849  * Originally Released Under LGPL - original licence link has changed is not relivant.
15850  *
15851  * Fork - LGPL
15852  * <script type="text/javascript">
15853  */
15854  
15855 /**
15856  * @class Roo.menu.ColorItem
15857  * @extends Roo.menu.Adapter
15858  * A menu item that wraps the {@link Roo.ColorPalette} component.
15859  * @constructor
15860  * Creates a new ColorItem
15861  * @param {Object} config Configuration options
15862  */
15863 Roo.menu.ColorItem = function(config){
15864     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
15865     /** The Roo.ColorPalette object @type Roo.ColorPalette */
15866     this.palette = this.component;
15867     this.relayEvents(this.palette, ["select"]);
15868     if(this.selectHandler){
15869         this.on('select', this.selectHandler, this.scope);
15870     }
15871 };
15872 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
15873  * Based on:
15874  * Ext JS Library 1.1.1
15875  * Copyright(c) 2006-2007, Ext JS, LLC.
15876  *
15877  * Originally Released Under LGPL - original licence link has changed is not relivant.
15878  *
15879  * Fork - LGPL
15880  * <script type="text/javascript">
15881  */
15882  
15883
15884 /**
15885  * @class Roo.menu.DateMenu
15886  * @extends Roo.menu.Menu
15887  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
15888  * @constructor
15889  * Creates a new DateMenu
15890  * @param {Object} config Configuration options
15891  */
15892 Roo.menu.DateMenu = function(config){
15893     Roo.menu.DateMenu.superclass.constructor.call(this, config);
15894     this.plain = true;
15895     var di = new Roo.menu.DateItem(config);
15896     this.add(di);
15897     /**
15898      * The {@link Roo.DatePicker} instance for this DateMenu
15899      * @type DatePicker
15900      */
15901     this.picker = di.picker;
15902     /**
15903      * @event select
15904      * @param {DatePicker} picker
15905      * @param {Date} date
15906      */
15907     this.relayEvents(di, ["select"]);
15908     this.on('beforeshow', function(){
15909         if(this.picker){
15910             this.picker.hideMonthPicker(false);
15911         }
15912     }, this);
15913 };
15914 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
15915     cls:'x-date-menu'
15916 });/*
15917  * Based on:
15918  * Ext JS Library 1.1.1
15919  * Copyright(c) 2006-2007, Ext JS, LLC.
15920  *
15921  * Originally Released Under LGPL - original licence link has changed is not relivant.
15922  *
15923  * Fork - LGPL
15924  * <script type="text/javascript">
15925  */
15926  
15927
15928 /**
15929  * @class Roo.menu.ColorMenu
15930  * @extends Roo.menu.Menu
15931  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
15932  * @constructor
15933  * Creates a new ColorMenu
15934  * @param {Object} config Configuration options
15935  */
15936 Roo.menu.ColorMenu = function(config){
15937     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
15938     this.plain = true;
15939     var ci = new Roo.menu.ColorItem(config);
15940     this.add(ci);
15941     /**
15942      * The {@link Roo.ColorPalette} instance for this ColorMenu
15943      * @type ColorPalette
15944      */
15945     this.palette = ci.palette;
15946     /**
15947      * @event select
15948      * @param {ColorPalette} palette
15949      * @param {String} color
15950      */
15951     this.relayEvents(ci, ["select"]);
15952 };
15953 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
15954  * Based on:
15955  * Ext JS Library 1.1.1
15956  * Copyright(c) 2006-2007, Ext JS, LLC.
15957  *
15958  * Originally Released Under LGPL - original licence link has changed is not relivant.
15959  *
15960  * Fork - LGPL
15961  * <script type="text/javascript">
15962  */
15963  
15964 /**
15965  * @class Roo.form.TextItem
15966  * @extends Roo.BoxComponent
15967  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
15968  * @constructor
15969  * Creates a new TextItem
15970  * @param {Object} config Configuration options
15971  */
15972 Roo.form.TextItem = function(config){
15973     Roo.form.TextItem.superclass.constructor.call(this, config);
15974 };
15975
15976 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
15977     
15978     /**
15979      * @cfg {String} tag the tag for this item (default div)
15980      */
15981     tag : 'div',
15982     /**
15983      * @cfg {String} html the content for this item
15984      */
15985     html : '',
15986     
15987     getAutoCreate : function()
15988     {
15989         var cfg = {
15990             id: this.id,
15991             tag: this.tag,
15992             html: this.html,
15993             cls: 'x-form-item'
15994         };
15995         
15996         return cfg;
15997         
15998     },
15999     
16000     onRender : function(ct, position)
16001     {
16002         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
16003         
16004         if(!this.el){
16005             var cfg = this.getAutoCreate();
16006             if(!cfg.name){
16007                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16008             }
16009             if (!cfg.name.length) {
16010                 delete cfg.name;
16011             }
16012             this.el = ct.createChild(cfg, position);
16013         }
16014     },
16015     /*
16016      * setHTML
16017      * @param {String} html update the Contents of the element.
16018      */
16019     setHTML : function(html)
16020     {
16021         this.fieldEl.dom.innerHTML = html;
16022     }
16023     
16024 });/*
16025  * Based on:
16026  * Ext JS Library 1.1.1
16027  * Copyright(c) 2006-2007, Ext JS, LLC.
16028  *
16029  * Originally Released Under LGPL - original licence link has changed is not relivant.
16030  *
16031  * Fork - LGPL
16032  * <script type="text/javascript">
16033  */
16034  
16035 /**
16036  * @class Roo.form.Field
16037  * @extends Roo.BoxComponent
16038  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16039  * @constructor
16040  * Creates a new Field
16041  * @param {Object} config Configuration options
16042  */
16043 Roo.form.Field = function(config){
16044     Roo.form.Field.superclass.constructor.call(this, config);
16045 };
16046
16047 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
16048     /**
16049      * @cfg {String} fieldLabel Label to use when rendering a form.
16050      */
16051         /**
16052      * @cfg {String} labelSeparator the ':' after a field label (default :)  = set it to empty string to hide the field label.
16053      */
16054        /**
16055      * @cfg {String} qtip Mouse over tip
16056      */
16057      
16058     /**
16059      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
16060      */
16061     invalidClass : "x-form-invalid",
16062     /**
16063      * @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")
16064      */
16065     invalidText : "The value in this field is invalid",
16066     /**
16067      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
16068      */
16069     focusClass : "x-form-focus",
16070     /**
16071      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
16072       automatic validation (defaults to "keyup").
16073      */
16074     validationEvent : "keyup",
16075     /**
16076      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
16077      */
16078     validateOnBlur : true,
16079     /**
16080      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
16081      */
16082     validationDelay : 250,
16083     /**
16084      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
16085      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
16086      */
16087     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
16088     /**
16089      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
16090      */
16091     fieldClass : "x-form-field",
16092     /**
16093      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
16094      *<pre>
16095 Value         Description
16096 -----------   ----------------------------------------------------------------------
16097 qtip          Display a quick tip when the user hovers over the field
16098 title         Display a default browser title attribute popup
16099 under         Add a block div beneath the field containing the error text
16100 side          Add an error icon to the right of the field with a popup on hover
16101 [element id]  Add the error text directly to the innerHTML of the specified element
16102 </pre>
16103      */
16104     msgTarget : 'qtip',
16105     /**
16106      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
16107      */
16108     msgFx : 'normal',
16109
16110     /**
16111      * @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.
16112      */
16113     readOnly : false,
16114
16115     /**
16116      * @cfg {Boolean} disabled True to disable the field (defaults to false).
16117      */
16118     disabled : false,
16119
16120     /**
16121      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
16122      */
16123     inputType : undefined,
16124     
16125     /**
16126      * @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).
16127          */
16128         tabIndex : undefined,
16129         
16130     // private
16131     isFormField : true,
16132
16133     // private
16134     hasFocus : false,
16135     /**
16136      * @property {Roo.Element} fieldEl
16137      * Element Containing the rendered Field (with label etc.)
16138      */
16139     /**
16140      * @cfg {Mixed} value A value to initialize this field with.
16141      */
16142     value : undefined,
16143
16144     /**
16145      * @cfg {String} name The field's HTML name attribute.
16146      */
16147     /**
16148      * @cfg {String} cls A CSS class to apply to the field's underlying element.
16149      */
16150     // private
16151     loadedValue : false,
16152      
16153      
16154         // private ??
16155         initComponent : function(){
16156         Roo.form.Field.superclass.initComponent.call(this);
16157         this.addEvents({
16158             /**
16159              * @event focus
16160              * Fires when this field receives input focus.
16161              * @param {Roo.form.Field} this
16162              */
16163             focus : true,
16164             /**
16165              * @event blur
16166              * Fires when this field loses input focus.
16167              * @param {Roo.form.Field} this
16168              */
16169             blur : true,
16170             /**
16171              * @event specialkey
16172              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
16173              * {@link Roo.EventObject#getKey} to determine which key was pressed.
16174              * @param {Roo.form.Field} this
16175              * @param {Roo.EventObject} e The event object
16176              */
16177             specialkey : true,
16178             /**
16179              * @event change
16180              * Fires just before the field blurs if the field value has changed.
16181              * @param {Roo.form.Field} this
16182              * @param {Mixed} newValue The new value
16183              * @param {Mixed} oldValue The original value
16184              */
16185             change : true,
16186             /**
16187              * @event invalid
16188              * Fires after the field has been marked as invalid.
16189              * @param {Roo.form.Field} this
16190              * @param {String} msg The validation message
16191              */
16192             invalid : true,
16193             /**
16194              * @event valid
16195              * Fires after the field has been validated with no errors.
16196              * @param {Roo.form.Field} this
16197              */
16198             valid : true,
16199              /**
16200              * @event keyup
16201              * Fires after the key up
16202              * @param {Roo.form.Field} this
16203              * @param {Roo.EventObject}  e The event Object
16204              */
16205             keyup : true
16206         });
16207     },
16208
16209     /**
16210      * Returns the name attribute of the field if available
16211      * @return {String} name The field name
16212      */
16213     getName: function(){
16214          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
16215     },
16216
16217     // private
16218     onRender : function(ct, position){
16219         Roo.form.Field.superclass.onRender.call(this, ct, position);
16220         if(!this.el){
16221             var cfg = this.getAutoCreate();
16222             if(!cfg.name){
16223                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16224             }
16225             if (!cfg.name.length) {
16226                 delete cfg.name;
16227             }
16228             if(this.inputType){
16229                 cfg.type = this.inputType;
16230             }
16231             this.el = ct.createChild(cfg, position);
16232         }
16233         var type = this.el.dom.type;
16234         if(type){
16235             if(type == 'password'){
16236                 type = 'text';
16237             }
16238             this.el.addClass('x-form-'+type);
16239         }
16240         if(this.readOnly){
16241             this.el.dom.readOnly = true;
16242         }
16243         if(this.tabIndex !== undefined){
16244             this.el.dom.setAttribute('tabIndex', this.tabIndex);
16245         }
16246
16247         this.el.addClass([this.fieldClass, this.cls]);
16248         this.initValue();
16249     },
16250
16251     /**
16252      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
16253      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
16254      * @return {Roo.form.Field} this
16255      */
16256     applyTo : function(target){
16257         this.allowDomMove = false;
16258         this.el = Roo.get(target);
16259         this.render(this.el.dom.parentNode);
16260         return this;
16261     },
16262
16263     // private
16264     initValue : function(){
16265         if(this.value !== undefined){
16266             this.setValue(this.value);
16267         }else if(this.el.dom.value.length > 0){
16268             this.setValue(this.el.dom.value);
16269         }
16270     },
16271
16272     /**
16273      * Returns true if this field has been changed since it was originally loaded and is not disabled.
16274      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
16275      */
16276     isDirty : function() {
16277         if(this.disabled) {
16278             return false;
16279         }
16280         return String(this.getValue()) !== String(this.originalValue);
16281     },
16282
16283     /**
16284      * stores the current value in loadedValue
16285      */
16286     resetHasChanged : function()
16287     {
16288         this.loadedValue = String(this.getValue());
16289     },
16290     /**
16291      * checks the current value against the 'loaded' value.
16292      * Note - will return false if 'resetHasChanged' has not been called first.
16293      */
16294     hasChanged : function()
16295     {
16296         if(this.disabled || this.readOnly) {
16297             return false;
16298         }
16299         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
16300     },
16301     
16302     
16303     
16304     // private
16305     afterRender : function(){
16306         Roo.form.Field.superclass.afterRender.call(this);
16307         this.initEvents();
16308     },
16309
16310     // private
16311     fireKey : function(e){
16312         //Roo.log('field ' + e.getKey());
16313         if(e.isNavKeyPress()){
16314             this.fireEvent("specialkey", this, e);
16315         }
16316     },
16317
16318     /**
16319      * Resets the current field value to the originally loaded value and clears any validation messages
16320      */
16321     reset : function(){
16322         this.setValue(this.resetValue);
16323         this.originalValue = this.getValue();
16324         this.clearInvalid();
16325     },
16326
16327     // private
16328     initEvents : function(){
16329         // safari killled keypress - so keydown is now used..
16330         this.el.on("keydown" , this.fireKey,  this);
16331         this.el.on("focus", this.onFocus,  this);
16332         this.el.on("blur", this.onBlur,  this);
16333         this.el.relayEvent('keyup', this);
16334
16335         // reference to original value for reset
16336         this.originalValue = this.getValue();
16337         this.resetValue =  this.getValue();
16338     },
16339
16340     // private
16341     onFocus : function(){
16342         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16343             this.el.addClass(this.focusClass);
16344         }
16345         if(!this.hasFocus){
16346             this.hasFocus = true;
16347             this.startValue = this.getValue();
16348             this.fireEvent("focus", this);
16349         }
16350     },
16351
16352     beforeBlur : Roo.emptyFn,
16353
16354     // private
16355     onBlur : function(){
16356         this.beforeBlur();
16357         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16358             this.el.removeClass(this.focusClass);
16359         }
16360         this.hasFocus = false;
16361         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
16362             this.validate();
16363         }
16364         var v = this.getValue();
16365         if(String(v) !== String(this.startValue)){
16366             this.fireEvent('change', this, v, this.startValue);
16367         }
16368         this.fireEvent("blur", this);
16369     },
16370
16371     /**
16372      * Returns whether or not the field value is currently valid
16373      * @param {Boolean} preventMark True to disable marking the field invalid
16374      * @return {Boolean} True if the value is valid, else false
16375      */
16376     isValid : function(preventMark){
16377         if(this.disabled){
16378             return true;
16379         }
16380         var restore = this.preventMark;
16381         this.preventMark = preventMark === true;
16382         var v = this.validateValue(this.processValue(this.getRawValue()));
16383         this.preventMark = restore;
16384         return v;
16385     },
16386
16387     /**
16388      * Validates the field value
16389      * @return {Boolean} True if the value is valid, else false
16390      */
16391     validate : function(){
16392         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
16393             this.clearInvalid();
16394             return true;
16395         }
16396         return false;
16397     },
16398
16399     processValue : function(value){
16400         return value;
16401     },
16402
16403     // private
16404     // Subclasses should provide the validation implementation by overriding this
16405     validateValue : function(value){
16406         return true;
16407     },
16408
16409     /**
16410      * Mark this field as invalid
16411      * @param {String} msg The validation message
16412      */
16413     markInvalid : function(msg){
16414         if(!this.rendered || this.preventMark){ // not rendered
16415             return;
16416         }
16417         
16418         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16419         
16420         obj.el.addClass(this.invalidClass);
16421         msg = msg || this.invalidText;
16422         switch(this.msgTarget){
16423             case 'qtip':
16424                 obj.el.dom.qtip = msg;
16425                 obj.el.dom.qclass = 'x-form-invalid-tip';
16426                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
16427                     Roo.QuickTips.enable();
16428                 }
16429                 break;
16430             case 'title':
16431                 this.el.dom.title = msg;
16432                 break;
16433             case 'under':
16434                 if(!this.errorEl){
16435                     var elp = this.el.findParent('.x-form-element', 5, true);
16436                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
16437                     this.errorEl.setWidth(elp.getWidth(true)-20);
16438                 }
16439                 this.errorEl.update(msg);
16440                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
16441                 break;
16442             case 'side':
16443                 if(!this.errorIcon){
16444                     var elp = this.el.findParent('.x-form-element', 5, true);
16445                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
16446                 }
16447                 this.alignErrorIcon();
16448                 this.errorIcon.dom.qtip = msg;
16449                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
16450                 this.errorIcon.show();
16451                 this.on('resize', this.alignErrorIcon, this);
16452                 break;
16453             default:
16454                 var t = Roo.getDom(this.msgTarget);
16455                 t.innerHTML = msg;
16456                 t.style.display = this.msgDisplay;
16457                 break;
16458         }
16459         this.fireEvent('invalid', this, msg);
16460     },
16461
16462     // private
16463     alignErrorIcon : function(){
16464         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
16465     },
16466
16467     /**
16468      * Clear any invalid styles/messages for this field
16469      */
16470     clearInvalid : function(){
16471         if(!this.rendered || this.preventMark){ // not rendered
16472             return;
16473         }
16474         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16475         
16476         obj.el.removeClass(this.invalidClass);
16477         switch(this.msgTarget){
16478             case 'qtip':
16479                 obj.el.dom.qtip = '';
16480                 break;
16481             case 'title':
16482                 this.el.dom.title = '';
16483                 break;
16484             case 'under':
16485                 if(this.errorEl){
16486                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
16487                 }
16488                 break;
16489             case 'side':
16490                 if(this.errorIcon){
16491                     this.errorIcon.dom.qtip = '';
16492                     this.errorIcon.hide();
16493                     this.un('resize', this.alignErrorIcon, this);
16494                 }
16495                 break;
16496             default:
16497                 var t = Roo.getDom(this.msgTarget);
16498                 t.innerHTML = '';
16499                 t.style.display = 'none';
16500                 break;
16501         }
16502         this.fireEvent('valid', this);
16503     },
16504
16505     /**
16506      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
16507      * @return {Mixed} value The field value
16508      */
16509     getRawValue : function(){
16510         var v = this.el.getValue();
16511         
16512         return v;
16513     },
16514
16515     /**
16516      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16517      * @return {Mixed} value The field value
16518      */
16519     getValue : function(){
16520         var v = this.el.getValue();
16521          
16522         return v;
16523     },
16524
16525     /**
16526      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
16527      * @param {Mixed} value The value to set
16528      */
16529     setRawValue : function(v){
16530         return this.el.dom.value = (v === null || v === undefined ? '' : v);
16531     },
16532
16533     /**
16534      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
16535      * @param {Mixed} value The value to set
16536      */
16537     setValue : function(v){
16538         this.value = v;
16539         if(this.rendered){
16540             this.el.dom.value = (v === null || v === undefined ? '' : v);
16541              this.validate();
16542         }
16543     },
16544
16545     adjustSize : function(w, h){
16546         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
16547         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
16548         return s;
16549     },
16550
16551     adjustWidth : function(tag, w){
16552         tag = tag.toLowerCase();
16553         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
16554             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
16555                 if(tag == 'input'){
16556                     return w + 2;
16557                 }
16558                 if(tag == 'textarea'){
16559                     return w-2;
16560                 }
16561             }else if(Roo.isOpera){
16562                 if(tag == 'input'){
16563                     return w + 2;
16564                 }
16565                 if(tag == 'textarea'){
16566                     return w-2;
16567                 }
16568             }
16569         }
16570         return w;
16571     }
16572 });
16573
16574
16575 // anything other than normal should be considered experimental
16576 Roo.form.Field.msgFx = {
16577     normal : {
16578         show: function(msgEl, f){
16579             msgEl.setDisplayed('block');
16580         },
16581
16582         hide : function(msgEl, f){
16583             msgEl.setDisplayed(false).update('');
16584         }
16585     },
16586
16587     slide : {
16588         show: function(msgEl, f){
16589             msgEl.slideIn('t', {stopFx:true});
16590         },
16591
16592         hide : function(msgEl, f){
16593             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
16594         }
16595     },
16596
16597     slideRight : {
16598         show: function(msgEl, f){
16599             msgEl.fixDisplay();
16600             msgEl.alignTo(f.el, 'tl-tr');
16601             msgEl.slideIn('l', {stopFx:true});
16602         },
16603
16604         hide : function(msgEl, f){
16605             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
16606         }
16607     }
16608 };/*
16609  * Based on:
16610  * Ext JS Library 1.1.1
16611  * Copyright(c) 2006-2007, Ext JS, LLC.
16612  *
16613  * Originally Released Under LGPL - original licence link has changed is not relivant.
16614  *
16615  * Fork - LGPL
16616  * <script type="text/javascript">
16617  */
16618  
16619
16620 /**
16621  * @class Roo.form.TextField
16622  * @extends Roo.form.Field
16623  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
16624  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
16625  * @constructor
16626  * Creates a new TextField
16627  * @param {Object} config Configuration options
16628  */
16629 Roo.form.TextField = function(config){
16630     Roo.form.TextField.superclass.constructor.call(this, config);
16631     this.addEvents({
16632         /**
16633          * @event autosize
16634          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
16635          * according to the default logic, but this event provides a hook for the developer to apply additional
16636          * logic at runtime to resize the field if needed.
16637              * @param {Roo.form.Field} this This text field
16638              * @param {Number} width The new field width
16639              */
16640         autosize : true
16641     });
16642 };
16643
16644 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
16645     /**
16646      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
16647      */
16648     grow : false,
16649     /**
16650      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
16651      */
16652     growMin : 30,
16653     /**
16654      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
16655      */
16656     growMax : 800,
16657     /**
16658      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
16659      */
16660     vtype : null,
16661     /**
16662      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
16663      */
16664     maskRe : null,
16665     /**
16666      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
16667      */
16668     disableKeyFilter : false,
16669     /**
16670      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
16671      */
16672     allowBlank : true,
16673     /**
16674      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
16675      */
16676     minLength : 0,
16677     /**
16678      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
16679      */
16680     maxLength : Number.MAX_VALUE,
16681     /**
16682      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
16683      */
16684     minLengthText : "The minimum length for this field is {0}",
16685     /**
16686      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
16687      */
16688     maxLengthText : "The maximum length for this field is {0}",
16689     /**
16690      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
16691      */
16692     selectOnFocus : false,
16693     /**
16694      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
16695      */    
16696     allowLeadingSpace : false,
16697     /**
16698      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
16699      */
16700     blankText : "This field is required",
16701     /**
16702      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
16703      * If available, this function will be called only after the basic validators all return true, and will be passed the
16704      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
16705      */
16706     validator : null,
16707     /**
16708      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
16709      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
16710      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
16711      */
16712     regex : null,
16713     /**
16714      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
16715      */
16716     regexText : "",
16717     /**
16718      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
16719      */
16720     emptyText : null,
16721    
16722
16723     // private
16724     initEvents : function()
16725     {
16726         if (this.emptyText) {
16727             this.el.attr('placeholder', this.emptyText);
16728         }
16729         
16730         Roo.form.TextField.superclass.initEvents.call(this);
16731         if(this.validationEvent == 'keyup'){
16732             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
16733             this.el.on('keyup', this.filterValidation, this);
16734         }
16735         else if(this.validationEvent !== false){
16736             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
16737         }
16738         
16739         if(this.selectOnFocus){
16740             this.on("focus", this.preFocus, this);
16741         }
16742         if (!this.allowLeadingSpace) {
16743             this.on('blur', this.cleanLeadingSpace, this);
16744         }
16745         
16746         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
16747             this.el.on("keypress", this.filterKeys, this);
16748         }
16749         if(this.grow){
16750             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
16751             this.el.on("click", this.autoSize,  this);
16752         }
16753         if(this.el.is('input[type=password]') && Roo.isSafari){
16754             this.el.on('keydown', this.SafariOnKeyDown, this);
16755         }
16756     },
16757
16758     processValue : function(value){
16759         if(this.stripCharsRe){
16760             var newValue = value.replace(this.stripCharsRe, '');
16761             if(newValue !== value){
16762                 this.setRawValue(newValue);
16763                 return newValue;
16764             }
16765         }
16766         return value;
16767     },
16768
16769     filterValidation : function(e){
16770         if(!e.isNavKeyPress()){
16771             this.validationTask.delay(this.validationDelay);
16772         }
16773     },
16774
16775     // private
16776     onKeyUp : function(e){
16777         if(!e.isNavKeyPress()){
16778             this.autoSize();
16779         }
16780     },
16781     // private - clean the leading white space
16782     cleanLeadingSpace : function(e)
16783     {
16784         if ( this.inputType == 'file') {
16785             return;
16786         }
16787         
16788         this.setValue((this.getValue() + '').replace(/^\s+/,''));
16789     },
16790     /**
16791      * Resets the current field value to the originally-loaded value and clears any validation messages.
16792      *  
16793      */
16794     reset : function(){
16795         Roo.form.TextField.superclass.reset.call(this);
16796        
16797     }, 
16798     // private
16799     preFocus : function(){
16800         
16801         if(this.selectOnFocus){
16802             this.el.dom.select();
16803         }
16804     },
16805
16806     
16807     // private
16808     filterKeys : function(e){
16809         var k = e.getKey();
16810         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
16811             return;
16812         }
16813         var c = e.getCharCode(), cc = String.fromCharCode(c);
16814         if(Roo.isIE && (e.isSpecialKey() || !cc)){
16815             return;
16816         }
16817         if(!this.maskRe.test(cc)){
16818             e.stopEvent();
16819         }
16820     },
16821
16822     setValue : function(v){
16823         
16824         Roo.form.TextField.superclass.setValue.apply(this, arguments);
16825         
16826         this.autoSize();
16827     },
16828
16829     /**
16830      * Validates a value according to the field's validation rules and marks the field as invalid
16831      * if the validation fails
16832      * @param {Mixed} value The value to validate
16833      * @return {Boolean} True if the value is valid, else false
16834      */
16835     validateValue : function(value){
16836         if(value.length < 1)  { // if it's blank
16837              if(this.allowBlank){
16838                 this.clearInvalid();
16839                 return true;
16840              }else{
16841                 this.markInvalid(this.blankText);
16842                 return false;
16843              }
16844         }
16845         if(value.length < this.minLength){
16846             this.markInvalid(String.format(this.minLengthText, this.minLength));
16847             return false;
16848         }
16849         if(value.length > this.maxLength){
16850             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
16851             return false;
16852         }
16853         if(this.vtype){
16854             var vt = Roo.form.VTypes;
16855             if(!vt[this.vtype](value, this)){
16856                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
16857                 return false;
16858             }
16859         }
16860         if(typeof this.validator == "function"){
16861             var msg = this.validator(value);
16862             if(msg !== true){
16863                 this.markInvalid(msg);
16864                 return false;
16865             }
16866         }
16867         if(this.regex && !this.regex.test(value)){
16868             this.markInvalid(this.regexText);
16869             return false;
16870         }
16871         return true;
16872     },
16873
16874     /**
16875      * Selects text in this field
16876      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
16877      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
16878      */
16879     selectText : function(start, end){
16880         var v = this.getRawValue();
16881         if(v.length > 0){
16882             start = start === undefined ? 0 : start;
16883             end = end === undefined ? v.length : end;
16884             var d = this.el.dom;
16885             if(d.setSelectionRange){
16886                 d.setSelectionRange(start, end);
16887             }else if(d.createTextRange){
16888                 var range = d.createTextRange();
16889                 range.moveStart("character", start);
16890                 range.moveEnd("character", v.length-end);
16891                 range.select();
16892             }
16893         }
16894     },
16895
16896     /**
16897      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
16898      * This only takes effect if grow = true, and fires the autosize event.
16899      */
16900     autoSize : function(){
16901         if(!this.grow || !this.rendered){
16902             return;
16903         }
16904         if(!this.metrics){
16905             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
16906         }
16907         var el = this.el;
16908         var v = el.dom.value;
16909         var d = document.createElement('div');
16910         d.appendChild(document.createTextNode(v));
16911         v = d.innerHTML;
16912         d = null;
16913         v += "&#160;";
16914         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
16915         this.el.setWidth(w);
16916         this.fireEvent("autosize", this, w);
16917     },
16918     
16919     // private
16920     SafariOnKeyDown : function(event)
16921     {
16922         // this is a workaround for a password hang bug on chrome/ webkit.
16923         
16924         var isSelectAll = false;
16925         
16926         if(this.el.dom.selectionEnd > 0){
16927             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
16928         }
16929         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
16930             event.preventDefault();
16931             this.setValue('');
16932             return;
16933         }
16934         
16935         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
16936             
16937             event.preventDefault();
16938             // this is very hacky as keydown always get's upper case.
16939             
16940             var cc = String.fromCharCode(event.getCharCode());
16941             
16942             
16943             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
16944             
16945         }
16946         
16947         
16948     }
16949 });/*
16950  * Based on:
16951  * Ext JS Library 1.1.1
16952  * Copyright(c) 2006-2007, Ext JS, LLC.
16953  *
16954  * Originally Released Under LGPL - original licence link has changed is not relivant.
16955  *
16956  * Fork - LGPL
16957  * <script type="text/javascript">
16958  */
16959  
16960 /**
16961  * @class Roo.form.Hidden
16962  * @extends Roo.form.TextField
16963  * Simple Hidden element used on forms 
16964  * 
16965  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
16966  * 
16967  * @constructor
16968  * Creates a new Hidden form element.
16969  * @param {Object} config Configuration options
16970  */
16971
16972
16973
16974 // easy hidden field...
16975 Roo.form.Hidden = function(config){
16976     Roo.form.Hidden.superclass.constructor.call(this, config);
16977 };
16978   
16979 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
16980     fieldLabel:      '',
16981     inputType:      'hidden',
16982     width:          50,
16983     allowBlank:     true,
16984     labelSeparator: '',
16985     hidden:         true,
16986     itemCls :       'x-form-item-display-none'
16987
16988
16989 });
16990
16991
16992 /*
16993  * Based on:
16994  * Ext JS Library 1.1.1
16995  * Copyright(c) 2006-2007, Ext JS, LLC.
16996  *
16997  * Originally Released Under LGPL - original licence link has changed is not relivant.
16998  *
16999  * Fork - LGPL
17000  * <script type="text/javascript">
17001  */
17002  
17003 /**
17004  * @class Roo.form.TriggerField
17005  * @extends Roo.form.TextField
17006  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
17007  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
17008  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
17009  * for which you can provide a custom implementation.  For example:
17010  * <pre><code>
17011 var trigger = new Roo.form.TriggerField();
17012 trigger.onTriggerClick = myTriggerFn;
17013 trigger.applyTo('my-field');
17014 </code></pre>
17015  *
17016  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
17017  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
17018  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
17019  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
17020  * @constructor
17021  * Create a new TriggerField.
17022  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
17023  * to the base TextField)
17024  */
17025 Roo.form.TriggerField = function(config){
17026     this.mimicing = false;
17027     Roo.form.TriggerField.superclass.constructor.call(this, config);
17028 };
17029
17030 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
17031     /**
17032      * @cfg {String} triggerClass A CSS class to apply to the trigger
17033      */
17034     /**
17035      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17036      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
17037      */
17038     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
17039     /**
17040      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
17041      */
17042     hideTrigger:false,
17043
17044     /** @cfg {Boolean} grow @hide */
17045     /** @cfg {Number} growMin @hide */
17046     /** @cfg {Number} growMax @hide */
17047
17048     /**
17049      * @hide 
17050      * @method
17051      */
17052     autoSize: Roo.emptyFn,
17053     // private
17054     monitorTab : true,
17055     // private
17056     deferHeight : true,
17057
17058     
17059     actionMode : 'wrap',
17060     // private
17061     onResize : function(w, h){
17062         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
17063         if(typeof w == 'number'){
17064             var x = w - this.trigger.getWidth();
17065             this.el.setWidth(this.adjustWidth('input', x));
17066             this.trigger.setStyle('left', x+'px');
17067         }
17068     },
17069
17070     // private
17071     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17072
17073     // private
17074     getResizeEl : function(){
17075         return this.wrap;
17076     },
17077
17078     // private
17079     getPositionEl : function(){
17080         return this.wrap;
17081     },
17082
17083     // private
17084     alignErrorIcon : function(){
17085         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
17086     },
17087
17088     // private
17089     onRender : function(ct, position){
17090         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
17091         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
17092         this.trigger = this.wrap.createChild(this.triggerConfig ||
17093                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
17094         if(this.hideTrigger){
17095             this.trigger.setDisplayed(false);
17096         }
17097         this.initTrigger();
17098         if(!this.width){
17099             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
17100         }
17101     },
17102
17103     // private
17104     initTrigger : function(){
17105         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
17106         this.trigger.addClassOnOver('x-form-trigger-over');
17107         this.trigger.addClassOnClick('x-form-trigger-click');
17108     },
17109
17110     // private
17111     onDestroy : function(){
17112         if(this.trigger){
17113             this.trigger.removeAllListeners();
17114             this.trigger.remove();
17115         }
17116         if(this.wrap){
17117             this.wrap.remove();
17118         }
17119         Roo.form.TriggerField.superclass.onDestroy.call(this);
17120     },
17121
17122     // private
17123     onFocus : function(){
17124         Roo.form.TriggerField.superclass.onFocus.call(this);
17125         if(!this.mimicing){
17126             this.wrap.addClass('x-trigger-wrap-focus');
17127             this.mimicing = true;
17128             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
17129             if(this.monitorTab){
17130                 this.el.on("keydown", this.checkTab, this);
17131             }
17132         }
17133     },
17134
17135     // private
17136     checkTab : function(e){
17137         if(e.getKey() == e.TAB){
17138             this.triggerBlur();
17139         }
17140     },
17141
17142     // private
17143     onBlur : function(){
17144         // do nothing
17145     },
17146
17147     // private
17148     mimicBlur : function(e, t){
17149         if(!this.wrap.contains(t) && this.validateBlur()){
17150             this.triggerBlur();
17151         }
17152     },
17153
17154     // private
17155     triggerBlur : function(){
17156         this.mimicing = false;
17157         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
17158         if(this.monitorTab){
17159             this.el.un("keydown", this.checkTab, this);
17160         }
17161         this.wrap.removeClass('x-trigger-wrap-focus');
17162         Roo.form.TriggerField.superclass.onBlur.call(this);
17163     },
17164
17165     // private
17166     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
17167     validateBlur : function(e, t){
17168         return true;
17169     },
17170
17171     // private
17172     onDisable : function(){
17173         Roo.form.TriggerField.superclass.onDisable.call(this);
17174         if(this.wrap){
17175             this.wrap.addClass('x-item-disabled');
17176         }
17177     },
17178
17179     // private
17180     onEnable : function(){
17181         Roo.form.TriggerField.superclass.onEnable.call(this);
17182         if(this.wrap){
17183             this.wrap.removeClass('x-item-disabled');
17184         }
17185     },
17186
17187     // private
17188     onShow : function(){
17189         var ae = this.getActionEl();
17190         
17191         if(ae){
17192             ae.dom.style.display = '';
17193             ae.dom.style.visibility = 'visible';
17194         }
17195     },
17196
17197     // private
17198     
17199     onHide : function(){
17200         var ae = this.getActionEl();
17201         ae.dom.style.display = 'none';
17202     },
17203
17204     /**
17205      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
17206      * by an implementing function.
17207      * @method
17208      * @param {EventObject} e
17209      */
17210     onTriggerClick : Roo.emptyFn
17211 });
17212
17213 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
17214 // to be extended by an implementing class.  For an example of implementing this class, see the custom
17215 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
17216 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
17217     initComponent : function(){
17218         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
17219
17220         this.triggerConfig = {
17221             tag:'span', cls:'x-form-twin-triggers', cn:[
17222             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
17223             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
17224         ]};
17225     },
17226
17227     getTrigger : function(index){
17228         return this.triggers[index];
17229     },
17230
17231     initTrigger : function(){
17232         var ts = this.trigger.select('.x-form-trigger', true);
17233         this.wrap.setStyle('overflow', 'hidden');
17234         var triggerField = this;
17235         ts.each(function(t, all, index){
17236             t.hide = function(){
17237                 var w = triggerField.wrap.getWidth();
17238                 this.dom.style.display = 'none';
17239                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17240             };
17241             t.show = function(){
17242                 var w = triggerField.wrap.getWidth();
17243                 this.dom.style.display = '';
17244                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17245             };
17246             var triggerIndex = 'Trigger'+(index+1);
17247
17248             if(this['hide'+triggerIndex]){
17249                 t.dom.style.display = 'none';
17250             }
17251             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
17252             t.addClassOnOver('x-form-trigger-over');
17253             t.addClassOnClick('x-form-trigger-click');
17254         }, this);
17255         this.triggers = ts.elements;
17256     },
17257
17258     onTrigger1Click : Roo.emptyFn,
17259     onTrigger2Click : Roo.emptyFn
17260 });/*
17261  * Based on:
17262  * Ext JS Library 1.1.1
17263  * Copyright(c) 2006-2007, Ext JS, LLC.
17264  *
17265  * Originally Released Under LGPL - original licence link has changed is not relivant.
17266  *
17267  * Fork - LGPL
17268  * <script type="text/javascript">
17269  */
17270  
17271 /**
17272  * @class Roo.form.TextArea
17273  * @extends Roo.form.TextField
17274  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
17275  * support for auto-sizing.
17276  * @constructor
17277  * Creates a new TextArea
17278  * @param {Object} config Configuration options
17279  */
17280 Roo.form.TextArea = function(config){
17281     Roo.form.TextArea.superclass.constructor.call(this, config);
17282     // these are provided exchanges for backwards compat
17283     // minHeight/maxHeight were replaced by growMin/growMax to be
17284     // compatible with TextField growing config values
17285     if(this.minHeight !== undefined){
17286         this.growMin = this.minHeight;
17287     }
17288     if(this.maxHeight !== undefined){
17289         this.growMax = this.maxHeight;
17290     }
17291 };
17292
17293 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
17294     /**
17295      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
17296      */
17297     growMin : 60,
17298     /**
17299      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
17300      */
17301     growMax: 1000,
17302     /**
17303      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
17304      * in the field (equivalent to setting overflow: hidden, defaults to false)
17305      */
17306     preventScrollbars: false,
17307     /**
17308      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17309      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
17310      */
17311
17312     // private
17313     onRender : function(ct, position){
17314         if(!this.el){
17315             this.defaultAutoCreate = {
17316                 tag: "textarea",
17317                 style:"width:300px;height:60px;",
17318                 autocomplete: "new-password"
17319             };
17320         }
17321         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
17322         if(this.grow){
17323             this.textSizeEl = Roo.DomHelper.append(document.body, {
17324                 tag: "pre", cls: "x-form-grow-sizer"
17325             });
17326             if(this.preventScrollbars){
17327                 this.el.setStyle("overflow", "hidden");
17328             }
17329             this.el.setHeight(this.growMin);
17330         }
17331     },
17332
17333     onDestroy : function(){
17334         if(this.textSizeEl){
17335             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
17336         }
17337         Roo.form.TextArea.superclass.onDestroy.call(this);
17338     },
17339
17340     // private
17341     onKeyUp : function(e){
17342         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
17343             this.autoSize();
17344         }
17345     },
17346
17347     /**
17348      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
17349      * This only takes effect if grow = true, and fires the autosize event if the height changes.
17350      */
17351     autoSize : function(){
17352         if(!this.grow || !this.textSizeEl){
17353             return;
17354         }
17355         var el = this.el;
17356         var v = el.dom.value;
17357         var ts = this.textSizeEl;
17358
17359         ts.innerHTML = '';
17360         ts.appendChild(document.createTextNode(v));
17361         v = ts.innerHTML;
17362
17363         Roo.fly(ts).setWidth(this.el.getWidth());
17364         if(v.length < 1){
17365             v = "&#160;&#160;";
17366         }else{
17367             if(Roo.isIE){
17368                 v = v.replace(/\n/g, '<p>&#160;</p>');
17369             }
17370             v += "&#160;\n&#160;";
17371         }
17372         ts.innerHTML = v;
17373         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
17374         if(h != this.lastHeight){
17375             this.lastHeight = h;
17376             this.el.setHeight(h);
17377             this.fireEvent("autosize", this, h);
17378         }
17379     }
17380 });/*
17381  * Based on:
17382  * Ext JS Library 1.1.1
17383  * Copyright(c) 2006-2007, Ext JS, LLC.
17384  *
17385  * Originally Released Under LGPL - original licence link has changed is not relivant.
17386  *
17387  * Fork - LGPL
17388  * <script type="text/javascript">
17389  */
17390  
17391
17392 /**
17393  * @class Roo.form.NumberField
17394  * @extends Roo.form.TextField
17395  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17396  * @constructor
17397  * Creates a new NumberField
17398  * @param {Object} config Configuration options
17399  */
17400 Roo.form.NumberField = function(config){
17401     Roo.form.NumberField.superclass.constructor.call(this, config);
17402 };
17403
17404 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
17405     /**
17406      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
17407      */
17408     fieldClass: "x-form-field x-form-num-field",
17409     /**
17410      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
17411      */
17412     allowDecimals : true,
17413     /**
17414      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
17415      */
17416     decimalSeparator : ".",
17417     /**
17418      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
17419      */
17420     decimalPrecision : 2,
17421     /**
17422      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
17423      */
17424     allowNegative : true,
17425     /**
17426      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
17427      */
17428     minValue : Number.NEGATIVE_INFINITY,
17429     /**
17430      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
17431      */
17432     maxValue : Number.MAX_VALUE,
17433     /**
17434      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
17435      */
17436     minText : "The minimum value for this field is {0}",
17437     /**
17438      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
17439      */
17440     maxText : "The maximum value for this field is {0}",
17441     /**
17442      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
17443      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
17444      */
17445     nanText : "{0} is not a valid number",
17446
17447     // private
17448     initEvents : function(){
17449         Roo.form.NumberField.superclass.initEvents.call(this);
17450         var allowed = "0123456789";
17451         if(this.allowDecimals){
17452             allowed += this.decimalSeparator;
17453         }
17454         if(this.allowNegative){
17455             allowed += "-";
17456         }
17457         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
17458         var keyPress = function(e){
17459             var k = e.getKey();
17460             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
17461                 return;
17462             }
17463             var c = e.getCharCode();
17464             if(allowed.indexOf(String.fromCharCode(c)) === -1){
17465                 e.stopEvent();
17466             }
17467         };
17468         this.el.on("keypress", keyPress, this);
17469     },
17470
17471     // private
17472     validateValue : function(value){
17473         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
17474             return false;
17475         }
17476         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17477              return true;
17478         }
17479         var num = this.parseValue(value);
17480         if(isNaN(num)){
17481             this.markInvalid(String.format(this.nanText, value));
17482             return false;
17483         }
17484         if(num < this.minValue){
17485             this.markInvalid(String.format(this.minText, this.minValue));
17486             return false;
17487         }
17488         if(num > this.maxValue){
17489             this.markInvalid(String.format(this.maxText, this.maxValue));
17490             return false;
17491         }
17492         return true;
17493     },
17494
17495     getValue : function(){
17496         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
17497     },
17498
17499     // private
17500     parseValue : function(value){
17501         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
17502         return isNaN(value) ? '' : value;
17503     },
17504
17505     // private
17506     fixPrecision : function(value){
17507         var nan = isNaN(value);
17508         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
17509             return nan ? '' : value;
17510         }
17511         return parseFloat(value).toFixed(this.decimalPrecision);
17512     },
17513
17514     setValue : function(v){
17515         v = this.fixPrecision(v);
17516         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
17517     },
17518
17519     // private
17520     decimalPrecisionFcn : function(v){
17521         return Math.floor(v);
17522     },
17523
17524     beforeBlur : function(){
17525         var v = this.parseValue(this.getRawValue());
17526         if(v){
17527             this.setValue(v);
17528         }
17529     }
17530 });/*
17531  * Based on:
17532  * Ext JS Library 1.1.1
17533  * Copyright(c) 2006-2007, Ext JS, LLC.
17534  *
17535  * Originally Released Under LGPL - original licence link has changed is not relivant.
17536  *
17537  * Fork - LGPL
17538  * <script type="text/javascript">
17539  */
17540  
17541 /**
17542  * @class Roo.form.DateField
17543  * @extends Roo.form.TriggerField
17544  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17545 * @constructor
17546 * Create a new DateField
17547 * @param {Object} config
17548  */
17549 Roo.form.DateField = function(config)
17550 {
17551     Roo.form.DateField.superclass.constructor.call(this, config);
17552     
17553       this.addEvents({
17554          
17555         /**
17556          * @event select
17557          * Fires when a date is selected
17558              * @param {Roo.form.DateField} combo This combo box
17559              * @param {Date} date The date selected
17560              */
17561         'select' : true
17562          
17563     });
17564     
17565     
17566     if(typeof this.minValue == "string") {
17567         this.minValue = this.parseDate(this.minValue);
17568     }
17569     if(typeof this.maxValue == "string") {
17570         this.maxValue = this.parseDate(this.maxValue);
17571     }
17572     this.ddMatch = null;
17573     if(this.disabledDates){
17574         var dd = this.disabledDates;
17575         var re = "(?:";
17576         for(var i = 0; i < dd.length; i++){
17577             re += dd[i];
17578             if(i != dd.length-1) {
17579                 re += "|";
17580             }
17581         }
17582         this.ddMatch = new RegExp(re + ")");
17583     }
17584 };
17585
17586 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
17587     /**
17588      * @cfg {String} format
17589      * The default date format string which can be overriden for localization support.  The format must be
17590      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17591      */
17592     format : "m/d/y",
17593     /**
17594      * @cfg {String} altFormats
17595      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17596      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17597      */
17598     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
17599     /**
17600      * @cfg {Array} disabledDays
17601      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17602      */
17603     disabledDays : null,
17604     /**
17605      * @cfg {String} disabledDaysText
17606      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17607      */
17608     disabledDaysText : "Disabled",
17609     /**
17610      * @cfg {Array} disabledDates
17611      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17612      * expression so they are very powerful. Some examples:
17613      * <ul>
17614      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17615      * <li>["03/08", "09/16"] would disable those days for every year</li>
17616      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17617      * <li>["03/../2006"] would disable every day in March 2006</li>
17618      * <li>["^03"] would disable every day in every March</li>
17619      * </ul>
17620      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17621      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17622      */
17623     disabledDates : null,
17624     /**
17625      * @cfg {String} disabledDatesText
17626      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17627      */
17628     disabledDatesText : "Disabled",
17629         
17630         
17631         /**
17632      * @cfg {Date/String} zeroValue
17633      * if the date is less that this number, then the field is rendered as empty
17634      * default is 1800
17635      */
17636         zeroValue : '1800-01-01',
17637         
17638         
17639     /**
17640      * @cfg {Date/String} minValue
17641      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17642      * valid format (defaults to null).
17643      */
17644     minValue : null,
17645     /**
17646      * @cfg {Date/String} maxValue
17647      * The maximum allowed date. Can be either a Javascript date object or a string date in a
17648      * valid format (defaults to null).
17649      */
17650     maxValue : null,
17651     /**
17652      * @cfg {String} minText
17653      * The error text to display when the date in the cell is before minValue (defaults to
17654      * 'The date in this field must be after {minValue}').
17655      */
17656     minText : "The date in this field must be equal to or after {0}",
17657     /**
17658      * @cfg {String} maxText
17659      * The error text to display when the date in the cell is after maxValue (defaults to
17660      * 'The date in this field must be before {maxValue}').
17661      */
17662     maxText : "The date in this field must be equal to or before {0}",
17663     /**
17664      * @cfg {String} invalidText
17665      * The error text to display when the date in the field is invalid (defaults to
17666      * '{value} is not a valid date - it must be in the format {format}').
17667      */
17668     invalidText : "{0} is not a valid date - it must be in the format {1}",
17669     /**
17670      * @cfg {String} triggerClass
17671      * An additional CSS class used to style the trigger button.  The trigger will always get the
17672      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
17673      * which displays a calendar icon).
17674      */
17675     triggerClass : 'x-form-date-trigger',
17676     
17677
17678     /**
17679      * @cfg {Boolean} useIso
17680      * if enabled, then the date field will use a hidden field to store the 
17681      * real value as iso formated date. default (false)
17682      */ 
17683     useIso : false,
17684     /**
17685      * @cfg {String/Object} autoCreate
17686      * A DomHelper element spec, or true for a default element spec (defaults to
17687      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
17688      */ 
17689     // private
17690     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
17691     
17692     // private
17693     hiddenField: false,
17694     
17695     onRender : function(ct, position)
17696     {
17697         Roo.form.DateField.superclass.onRender.call(this, ct, position);
17698         if (this.useIso) {
17699             //this.el.dom.removeAttribute('name'); 
17700             Roo.log("Changing name?");
17701             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
17702             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
17703                     'before', true);
17704             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
17705             // prevent input submission
17706             this.hiddenName = this.name;
17707         }
17708             
17709             
17710     },
17711     
17712     // private
17713     validateValue : function(value)
17714     {
17715         value = this.formatDate(value);
17716         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
17717             Roo.log('super failed');
17718             return false;
17719         }
17720         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17721              return true;
17722         }
17723         var svalue = value;
17724         value = this.parseDate(value);
17725         if(!value){
17726             Roo.log('parse date failed' + svalue);
17727             this.markInvalid(String.format(this.invalidText, svalue, this.format));
17728             return false;
17729         }
17730         var time = value.getTime();
17731         if(this.minValue && time < this.minValue.getTime()){
17732             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
17733             return false;
17734         }
17735         if(this.maxValue && time > this.maxValue.getTime()){
17736             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
17737             return false;
17738         }
17739         if(this.disabledDays){
17740             var day = value.getDay();
17741             for(var i = 0; i < this.disabledDays.length; i++) {
17742                 if(day === this.disabledDays[i]){
17743                     this.markInvalid(this.disabledDaysText);
17744                     return false;
17745                 }
17746             }
17747         }
17748         var fvalue = this.formatDate(value);
17749         if(this.ddMatch && this.ddMatch.test(fvalue)){
17750             this.markInvalid(String.format(this.disabledDatesText, fvalue));
17751             return false;
17752         }
17753         return true;
17754     },
17755
17756     // private
17757     // Provides logic to override the default TriggerField.validateBlur which just returns true
17758     validateBlur : function(){
17759         return !this.menu || !this.menu.isVisible();
17760     },
17761     
17762     getName: function()
17763     {
17764         // returns hidden if it's set..
17765         if (!this.rendered) {return ''};
17766         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
17767         
17768     },
17769
17770     /**
17771      * Returns the current date value of the date field.
17772      * @return {Date} The date value
17773      */
17774     getValue : function(){
17775         
17776         return  this.hiddenField ?
17777                 this.hiddenField.value :
17778                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
17779     },
17780
17781     /**
17782      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
17783      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
17784      * (the default format used is "m/d/y").
17785      * <br />Usage:
17786      * <pre><code>
17787 //All of these calls set the same date value (May 4, 2006)
17788
17789 //Pass a date object:
17790 var dt = new Date('5/4/06');
17791 dateField.setValue(dt);
17792
17793 //Pass a date string (default format):
17794 dateField.setValue('5/4/06');
17795
17796 //Pass a date string (custom format):
17797 dateField.format = 'Y-m-d';
17798 dateField.setValue('2006-5-4');
17799 </code></pre>
17800      * @param {String/Date} date The date or valid date string
17801      */
17802     setValue : function(date){
17803         if (this.hiddenField) {
17804             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
17805         }
17806         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
17807         // make sure the value field is always stored as a date..
17808         this.value = this.parseDate(date);
17809         
17810         
17811     },
17812
17813     // private
17814     parseDate : function(value){
17815                 
17816                 if (value instanceof Date) {
17817                         if (value < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
17818                                 return  '';
17819                         }
17820                         return value;
17821                 }
17822                 
17823                 
17824         if(!value || value instanceof Date){
17825             return value;
17826         }
17827         var v = Date.parseDate(value, this.format);
17828          if (!v && this.useIso) {
17829             v = Date.parseDate(value, 'Y-m-d');
17830         }
17831         if(!v && this.altFormats){
17832             if(!this.altFormatsArray){
17833                 this.altFormatsArray = this.altFormats.split("|");
17834             }
17835             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
17836                 v = Date.parseDate(value, this.altFormatsArray[i]);
17837             }
17838         }
17839                 if (v < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
17840                         v = '';
17841                 }
17842         return v;
17843     },
17844
17845     // private
17846     formatDate : function(date, fmt){
17847         return (!date || !(date instanceof Date)) ?
17848                date : date.dateFormat(fmt || this.format);
17849     },
17850
17851     // private
17852     menuListeners : {
17853         select: function(m, d){
17854             
17855             this.setValue(d);
17856             this.fireEvent('select', this, d);
17857         },
17858         show : function(){ // retain focus styling
17859             this.onFocus();
17860         },
17861         hide : function(){
17862             this.focus.defer(10, this);
17863             var ml = this.menuListeners;
17864             this.menu.un("select", ml.select,  this);
17865             this.menu.un("show", ml.show,  this);
17866             this.menu.un("hide", ml.hide,  this);
17867         }
17868     },
17869
17870     // private
17871     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
17872     onTriggerClick : function(){
17873         if(this.disabled){
17874             return;
17875         }
17876         if(this.menu == null){
17877             this.menu = new Roo.menu.DateMenu();
17878         }
17879         Roo.apply(this.menu.picker,  {
17880             showClear: this.allowBlank,
17881             minDate : this.minValue,
17882             maxDate : this.maxValue,
17883             disabledDatesRE : this.ddMatch,
17884             disabledDatesText : this.disabledDatesText,
17885             disabledDays : this.disabledDays,
17886             disabledDaysText : this.disabledDaysText,
17887             format : this.useIso ? 'Y-m-d' : this.format,
17888             minText : String.format(this.minText, this.formatDate(this.minValue)),
17889             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
17890         });
17891         this.menu.on(Roo.apply({}, this.menuListeners, {
17892             scope:this
17893         }));
17894         this.menu.picker.setValue(this.getValue() || new Date());
17895         this.menu.show(this.el, "tl-bl?");
17896     },
17897
17898     beforeBlur : function(){
17899         var v = this.parseDate(this.getRawValue());
17900         if(v){
17901             this.setValue(v);
17902         }
17903     },
17904
17905     /*@
17906      * overide
17907      * 
17908      */
17909     isDirty : function() {
17910         if(this.disabled) {
17911             return false;
17912         }
17913         
17914         if(typeof(this.startValue) === 'undefined'){
17915             return false;
17916         }
17917         
17918         return String(this.getValue()) !== String(this.startValue);
17919         
17920     },
17921     // @overide
17922     cleanLeadingSpace : function(e)
17923     {
17924        return;
17925     }
17926     
17927 });/*
17928  * Based on:
17929  * Ext JS Library 1.1.1
17930  * Copyright(c) 2006-2007, Ext JS, LLC.
17931  *
17932  * Originally Released Under LGPL - original licence link has changed is not relivant.
17933  *
17934  * Fork - LGPL
17935  * <script type="text/javascript">
17936  */
17937  
17938 /**
17939  * @class Roo.form.MonthField
17940  * @extends Roo.form.TriggerField
17941  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17942 * @constructor
17943 * Create a new MonthField
17944 * @param {Object} config
17945  */
17946 Roo.form.MonthField = function(config){
17947     
17948     Roo.form.MonthField.superclass.constructor.call(this, config);
17949     
17950       this.addEvents({
17951          
17952         /**
17953          * @event select
17954          * Fires when a date is selected
17955              * @param {Roo.form.MonthFieeld} combo This combo box
17956              * @param {Date} date The date selected
17957              */
17958         'select' : true
17959          
17960     });
17961     
17962     
17963     if(typeof this.minValue == "string") {
17964         this.minValue = this.parseDate(this.minValue);
17965     }
17966     if(typeof this.maxValue == "string") {
17967         this.maxValue = this.parseDate(this.maxValue);
17968     }
17969     this.ddMatch = null;
17970     if(this.disabledDates){
17971         var dd = this.disabledDates;
17972         var re = "(?:";
17973         for(var i = 0; i < dd.length; i++){
17974             re += dd[i];
17975             if(i != dd.length-1) {
17976                 re += "|";
17977             }
17978         }
17979         this.ddMatch = new RegExp(re + ")");
17980     }
17981 };
17982
17983 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
17984     /**
17985      * @cfg {String} format
17986      * The default date format string which can be overriden for localization support.  The format must be
17987      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17988      */
17989     format : "M Y",
17990     /**
17991      * @cfg {String} altFormats
17992      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17993      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17994      */
17995     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
17996     /**
17997      * @cfg {Array} disabledDays
17998      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17999      */
18000     disabledDays : [0,1,2,3,4,5,6],
18001     /**
18002      * @cfg {String} disabledDaysText
18003      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
18004      */
18005     disabledDaysText : "Disabled",
18006     /**
18007      * @cfg {Array} disabledDates
18008      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
18009      * expression so they are very powerful. Some examples:
18010      * <ul>
18011      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
18012      * <li>["03/08", "09/16"] would disable those days for every year</li>
18013      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
18014      * <li>["03/../2006"] would disable every day in March 2006</li>
18015      * <li>["^03"] would disable every day in every March</li>
18016      * </ul>
18017      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
18018      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
18019      */
18020     disabledDates : null,
18021     /**
18022      * @cfg {String} disabledDatesText
18023      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
18024      */
18025     disabledDatesText : "Disabled",
18026     /**
18027      * @cfg {Date/String} minValue
18028      * The minimum allowed date. Can be either a Javascript date object or a string date in a
18029      * valid format (defaults to null).
18030      */
18031     minValue : null,
18032     /**
18033      * @cfg {Date/String} maxValue
18034      * The maximum allowed date. Can be either a Javascript date object or a string date in a
18035      * valid format (defaults to null).
18036      */
18037     maxValue : null,
18038     /**
18039      * @cfg {String} minText
18040      * The error text to display when the date in the cell is before minValue (defaults to
18041      * 'The date in this field must be after {minValue}').
18042      */
18043     minText : "The date in this field must be equal to or after {0}",
18044     /**
18045      * @cfg {String} maxTextf
18046      * The error text to display when the date in the cell is after maxValue (defaults to
18047      * 'The date in this field must be before {maxValue}').
18048      */
18049     maxText : "The date in this field must be equal to or before {0}",
18050     /**
18051      * @cfg {String} invalidText
18052      * The error text to display when the date in the field is invalid (defaults to
18053      * '{value} is not a valid date - it must be in the format {format}').
18054      */
18055     invalidText : "{0} is not a valid date - it must be in the format {1}",
18056     /**
18057      * @cfg {String} triggerClass
18058      * An additional CSS class used to style the trigger button.  The trigger will always get the
18059      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18060      * which displays a calendar icon).
18061      */
18062     triggerClass : 'x-form-date-trigger',
18063     
18064
18065     /**
18066      * @cfg {Boolean} useIso
18067      * if enabled, then the date field will use a hidden field to store the 
18068      * real value as iso formated date. default (true)
18069      */ 
18070     useIso : true,
18071     /**
18072      * @cfg {String/Object} autoCreate
18073      * A DomHelper element spec, or true for a default element spec (defaults to
18074      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18075      */ 
18076     // private
18077     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
18078     
18079     // private
18080     hiddenField: false,
18081     
18082     hideMonthPicker : false,
18083     
18084     onRender : function(ct, position)
18085     {
18086         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
18087         if (this.useIso) {
18088             this.el.dom.removeAttribute('name'); 
18089             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18090                     'before', true);
18091             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18092             // prevent input submission
18093             this.hiddenName = this.name;
18094         }
18095             
18096             
18097     },
18098     
18099     // private
18100     validateValue : function(value)
18101     {
18102         value = this.formatDate(value);
18103         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
18104             return false;
18105         }
18106         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18107              return true;
18108         }
18109         var svalue = value;
18110         value = this.parseDate(value);
18111         if(!value){
18112             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18113             return false;
18114         }
18115         var time = value.getTime();
18116         if(this.minValue && time < this.minValue.getTime()){
18117             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18118             return false;
18119         }
18120         if(this.maxValue && time > this.maxValue.getTime()){
18121             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18122             return false;
18123         }
18124         /*if(this.disabledDays){
18125             var day = value.getDay();
18126             for(var i = 0; i < this.disabledDays.length; i++) {
18127                 if(day === this.disabledDays[i]){
18128                     this.markInvalid(this.disabledDaysText);
18129                     return false;
18130                 }
18131             }
18132         }
18133         */
18134         var fvalue = this.formatDate(value);
18135         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
18136             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18137             return false;
18138         }
18139         */
18140         return true;
18141     },
18142
18143     // private
18144     // Provides logic to override the default TriggerField.validateBlur which just returns true
18145     validateBlur : function(){
18146         return !this.menu || !this.menu.isVisible();
18147     },
18148
18149     /**
18150      * Returns the current date value of the date field.
18151      * @return {Date} The date value
18152      */
18153     getValue : function(){
18154         
18155         
18156         
18157         return  this.hiddenField ?
18158                 this.hiddenField.value :
18159                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
18160     },
18161
18162     /**
18163      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18164      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
18165      * (the default format used is "m/d/y").
18166      * <br />Usage:
18167      * <pre><code>
18168 //All of these calls set the same date value (May 4, 2006)
18169
18170 //Pass a date object:
18171 var dt = new Date('5/4/06');
18172 monthField.setValue(dt);
18173
18174 //Pass a date string (default format):
18175 monthField.setValue('5/4/06');
18176
18177 //Pass a date string (custom format):
18178 monthField.format = 'Y-m-d';
18179 monthField.setValue('2006-5-4');
18180 </code></pre>
18181      * @param {String/Date} date The date or valid date string
18182      */
18183     setValue : function(date){
18184         Roo.log('month setValue' + date);
18185         // can only be first of month..
18186         
18187         var val = this.parseDate(date);
18188         
18189         if (this.hiddenField) {
18190             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18191         }
18192         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18193         this.value = this.parseDate(date);
18194     },
18195
18196     // private
18197     parseDate : function(value){
18198         if(!value || value instanceof Date){
18199             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
18200             return value;
18201         }
18202         var v = Date.parseDate(value, this.format);
18203         if (!v && this.useIso) {
18204             v = Date.parseDate(value, 'Y-m-d');
18205         }
18206         if (v) {
18207             // 
18208             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
18209         }
18210         
18211         
18212         if(!v && this.altFormats){
18213             if(!this.altFormatsArray){
18214                 this.altFormatsArray = this.altFormats.split("|");
18215             }
18216             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18217                 v = Date.parseDate(value, this.altFormatsArray[i]);
18218             }
18219         }
18220         return v;
18221     },
18222
18223     // private
18224     formatDate : function(date, fmt){
18225         return (!date || !(date instanceof Date)) ?
18226                date : date.dateFormat(fmt || this.format);
18227     },
18228
18229     // private
18230     menuListeners : {
18231         select: function(m, d){
18232             this.setValue(d);
18233             this.fireEvent('select', this, d);
18234         },
18235         show : function(){ // retain focus styling
18236             this.onFocus();
18237         },
18238         hide : function(){
18239             this.focus.defer(10, this);
18240             var ml = this.menuListeners;
18241             this.menu.un("select", ml.select,  this);
18242             this.menu.un("show", ml.show,  this);
18243             this.menu.un("hide", ml.hide,  this);
18244         }
18245     },
18246     // private
18247     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18248     onTriggerClick : function(){
18249         if(this.disabled){
18250             return;
18251         }
18252         if(this.menu == null){
18253             this.menu = new Roo.menu.DateMenu();
18254            
18255         }
18256         
18257         Roo.apply(this.menu.picker,  {
18258             
18259             showClear: this.allowBlank,
18260             minDate : this.minValue,
18261             maxDate : this.maxValue,
18262             disabledDatesRE : this.ddMatch,
18263             disabledDatesText : this.disabledDatesText,
18264             
18265             format : this.useIso ? 'Y-m-d' : this.format,
18266             minText : String.format(this.minText, this.formatDate(this.minValue)),
18267             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18268             
18269         });
18270          this.menu.on(Roo.apply({}, this.menuListeners, {
18271             scope:this
18272         }));
18273        
18274         
18275         var m = this.menu;
18276         var p = m.picker;
18277         
18278         // hide month picker get's called when we called by 'before hide';
18279         
18280         var ignorehide = true;
18281         p.hideMonthPicker  = function(disableAnim){
18282             if (ignorehide) {
18283                 return;
18284             }
18285              if(this.monthPicker){
18286                 Roo.log("hideMonthPicker called");
18287                 if(disableAnim === true){
18288                     this.monthPicker.hide();
18289                 }else{
18290                     this.monthPicker.slideOut('t', {duration:.2});
18291                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
18292                     p.fireEvent("select", this, this.value);
18293                     m.hide();
18294                 }
18295             }
18296         }
18297         
18298         Roo.log('picker set value');
18299         Roo.log(this.getValue());
18300         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
18301         m.show(this.el, 'tl-bl?');
18302         ignorehide  = false;
18303         // this will trigger hideMonthPicker..
18304         
18305         
18306         // hidden the day picker
18307         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
18308         
18309         
18310         
18311       
18312         
18313         p.showMonthPicker.defer(100, p);
18314     
18315         
18316        
18317     },
18318
18319     beforeBlur : function(){
18320         var v = this.parseDate(this.getRawValue());
18321         if(v){
18322             this.setValue(v);
18323         }
18324     }
18325
18326     /** @cfg {Boolean} grow @hide */
18327     /** @cfg {Number} growMin @hide */
18328     /** @cfg {Number} growMax @hide */
18329     /**
18330      * @hide
18331      * @method autoSize
18332      */
18333 });/*
18334  * Based on:
18335  * Ext JS Library 1.1.1
18336  * Copyright(c) 2006-2007, Ext JS, LLC.
18337  *
18338  * Originally Released Under LGPL - original licence link has changed is not relivant.
18339  *
18340  * Fork - LGPL
18341  * <script type="text/javascript">
18342  */
18343  
18344
18345 /**
18346  * @class Roo.form.ComboBox
18347  * @extends Roo.form.TriggerField
18348  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
18349  * @constructor
18350  * Create a new ComboBox.
18351  * @param {Object} config Configuration options
18352  */
18353 Roo.form.ComboBox = function(config){
18354     Roo.form.ComboBox.superclass.constructor.call(this, config);
18355     this.addEvents({
18356         /**
18357          * @event expand
18358          * Fires when the dropdown list is expanded
18359              * @param {Roo.form.ComboBox} combo This combo box
18360              */
18361         'expand' : true,
18362         /**
18363          * @event collapse
18364          * Fires when the dropdown list is collapsed
18365              * @param {Roo.form.ComboBox} combo This combo box
18366              */
18367         'collapse' : true,
18368         /**
18369          * @event beforeselect
18370          * Fires before a list item is selected. Return false to cancel the selection.
18371              * @param {Roo.form.ComboBox} combo This combo box
18372              * @param {Roo.data.Record} record The data record returned from the underlying store
18373              * @param {Number} index The index of the selected item in the dropdown list
18374              */
18375         'beforeselect' : true,
18376         /**
18377          * @event select
18378          * Fires when a list item is selected
18379              * @param {Roo.form.ComboBox} combo This combo box
18380              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
18381              * @param {Number} index The index of the selected item in the dropdown list
18382              */
18383         'select' : true,
18384         /**
18385          * @event beforequery
18386          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
18387          * The event object passed has these properties:
18388              * @param {Roo.form.ComboBox} combo This combo box
18389              * @param {String} query The query
18390              * @param {Boolean} forceAll true to force "all" query
18391              * @param {Boolean} cancel true to cancel the query
18392              * @param {Object} e The query event object
18393              */
18394         'beforequery': true,
18395          /**
18396          * @event add
18397          * Fires when the 'add' icon is pressed (add a listener to enable add button)
18398              * @param {Roo.form.ComboBox} combo This combo box
18399              */
18400         'add' : true,
18401         /**
18402          * @event edit
18403          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
18404              * @param {Roo.form.ComboBox} combo This combo box
18405              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
18406              */
18407         'edit' : true
18408         
18409         
18410     });
18411     if(this.transform){
18412         this.allowDomMove = false;
18413         var s = Roo.getDom(this.transform);
18414         if(!this.hiddenName){
18415             this.hiddenName = s.name;
18416         }
18417         if(!this.store){
18418             this.mode = 'local';
18419             var d = [], opts = s.options;
18420             for(var i = 0, len = opts.length;i < len; i++){
18421                 var o = opts[i];
18422                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
18423                 if(o.selected) {
18424                     this.value = value;
18425                 }
18426                 d.push([value, o.text]);
18427             }
18428             this.store = new Roo.data.SimpleStore({
18429                 'id': 0,
18430                 fields: ['value', 'text'],
18431                 data : d
18432             });
18433             this.valueField = 'value';
18434             this.displayField = 'text';
18435         }
18436         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
18437         if(!this.lazyRender){
18438             this.target = true;
18439             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
18440             s.parentNode.removeChild(s); // remove it
18441             this.render(this.el.parentNode);
18442         }else{
18443             s.parentNode.removeChild(s); // remove it
18444         }
18445
18446     }
18447     if (this.store) {
18448         this.store = Roo.factory(this.store, Roo.data);
18449     }
18450     
18451     this.selectedIndex = -1;
18452     if(this.mode == 'local'){
18453         if(config.queryDelay === undefined){
18454             this.queryDelay = 10;
18455         }
18456         if(config.minChars === undefined){
18457             this.minChars = 0;
18458         }
18459     }
18460 };
18461
18462 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
18463     /**
18464      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
18465      */
18466     /**
18467      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
18468      * rendering into an Roo.Editor, defaults to false)
18469      */
18470     /**
18471      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
18472      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
18473      */
18474     /**
18475      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
18476      */
18477     /**
18478      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
18479      * the dropdown list (defaults to undefined, with no header element)
18480      */
18481
18482      /**
18483      * @cfg {String/Roo.Template} tpl The template to use to render the output
18484      */
18485      
18486     // private
18487     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
18488     /**
18489      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
18490      */
18491     listWidth: undefined,
18492     /**
18493      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
18494      * mode = 'remote' or 'text' if mode = 'local')
18495      */
18496     displayField: undefined,
18497     /**
18498      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
18499      * mode = 'remote' or 'value' if mode = 'local'). 
18500      * Note: use of a valueField requires the user make a selection
18501      * in order for a value to be mapped.
18502      */
18503     valueField: undefined,
18504     
18505     
18506     /**
18507      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
18508      * field's data value (defaults to the underlying DOM element's name)
18509      */
18510     hiddenName: undefined,
18511     /**
18512      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
18513      */
18514     listClass: '',
18515     /**
18516      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
18517      */
18518     selectedClass: 'x-combo-selected',
18519     /**
18520      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
18521      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
18522      * which displays a downward arrow icon).
18523      */
18524     triggerClass : 'x-form-arrow-trigger',
18525     /**
18526      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
18527      */
18528     shadow:'sides',
18529     /**
18530      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
18531      * anchor positions (defaults to 'tl-bl')
18532      */
18533     listAlign: 'tl-bl?',
18534     /**
18535      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
18536      */
18537     maxHeight: 300,
18538     /**
18539      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
18540      * query specified by the allQuery config option (defaults to 'query')
18541      */
18542     triggerAction: 'query',
18543     /**
18544      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
18545      * (defaults to 4, does not apply if editable = false)
18546      */
18547     minChars : 4,
18548     /**
18549      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
18550      * delay (typeAheadDelay) if it matches a known value (defaults to false)
18551      */
18552     typeAhead: false,
18553     /**
18554      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
18555      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
18556      */
18557     queryDelay: 500,
18558     /**
18559      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
18560      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
18561      */
18562     pageSize: 0,
18563     /**
18564      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
18565      * when editable = true (defaults to false)
18566      */
18567     selectOnFocus:false,
18568     /**
18569      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
18570      */
18571     queryParam: 'query',
18572     /**
18573      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
18574      * when mode = 'remote' (defaults to 'Loading...')
18575      */
18576     loadingText: 'Loading...',
18577     /**
18578      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
18579      */
18580     resizable: false,
18581     /**
18582      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
18583      */
18584     handleHeight : 8,
18585     /**
18586      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
18587      * traditional select (defaults to true)
18588      */
18589     editable: true,
18590     /**
18591      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
18592      */
18593     allQuery: '',
18594     /**
18595      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
18596      */
18597     mode: 'remote',
18598     /**
18599      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
18600      * listWidth has a higher value)
18601      */
18602     minListWidth : 70,
18603     /**
18604      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
18605      * allow the user to set arbitrary text into the field (defaults to false)
18606      */
18607     forceSelection:false,
18608     /**
18609      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
18610      * if typeAhead = true (defaults to 250)
18611      */
18612     typeAheadDelay : 250,
18613     /**
18614      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
18615      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
18616      */
18617     valueNotFoundText : undefined,
18618     /**
18619      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
18620      */
18621     blockFocus : false,
18622     
18623     /**
18624      * @cfg {Boolean} disableClear Disable showing of clear button.
18625      */
18626     disableClear : false,
18627     /**
18628      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
18629      */
18630     alwaysQuery : false,
18631     
18632     //private
18633     addicon : false,
18634     editicon: false,
18635     
18636     // element that contains real text value.. (when hidden is used..)
18637      
18638     // private
18639     onRender : function(ct, position)
18640     {
18641         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
18642         
18643                 if(this.hiddenName){
18644             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
18645                     'before', true);
18646             this.hiddenField.value =
18647                 this.hiddenValue !== undefined ? this.hiddenValue :
18648                 this.value !== undefined ? this.value : '';
18649
18650             // prevent input submission
18651             this.el.dom.removeAttribute('name');
18652              
18653              
18654         }
18655         
18656         if(Roo.isGecko){
18657             this.el.dom.setAttribute('autocomplete', 'off');
18658         }
18659
18660         var cls = 'x-combo-list';
18661
18662         this.list = new Roo.Layer({
18663             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
18664         });
18665
18666         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
18667         this.list.setWidth(lw);
18668         this.list.swallowEvent('mousewheel');
18669         this.assetHeight = 0;
18670
18671         if(this.title){
18672             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
18673             this.assetHeight += this.header.getHeight();
18674         }
18675
18676         this.innerList = this.list.createChild({cls:cls+'-inner'});
18677         this.innerList.on('mouseover', this.onViewOver, this);
18678         this.innerList.on('mousemove', this.onViewMove, this);
18679         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18680         
18681         if(this.allowBlank && !this.pageSize && !this.disableClear){
18682             this.footer = this.list.createChild({cls:cls+'-ft'});
18683             this.pageTb = new Roo.Toolbar(this.footer);
18684            
18685         }
18686         if(this.pageSize){
18687             this.footer = this.list.createChild({cls:cls+'-ft'});
18688             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
18689                     {pageSize: this.pageSize});
18690             
18691         }
18692         
18693         if (this.pageTb && this.allowBlank && !this.disableClear) {
18694             var _this = this;
18695             this.pageTb.add(new Roo.Toolbar.Fill(), {
18696                 cls: 'x-btn-icon x-btn-clear',
18697                 text: '&#160;',
18698                 handler: function()
18699                 {
18700                     _this.collapse();
18701                     _this.clearValue();
18702                     _this.onSelect(false, -1);
18703                 }
18704             });
18705         }
18706         if (this.footer) {
18707             this.assetHeight += this.footer.getHeight();
18708         }
18709         
18710
18711         if(!this.tpl){
18712             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
18713         }
18714
18715         this.view = new Roo.View(this.innerList, this.tpl, {
18716             singleSelect:true,
18717             store: this.store,
18718             selectedClass: this.selectedClass
18719         });
18720
18721         this.view.on('click', this.onViewClick, this);
18722
18723         this.store.on('beforeload', this.onBeforeLoad, this);
18724         this.store.on('load', this.onLoad, this);
18725         this.store.on('loadexception', this.onLoadException, this);
18726
18727         if(this.resizable){
18728             this.resizer = new Roo.Resizable(this.list,  {
18729                pinned:true, handles:'se'
18730             });
18731             this.resizer.on('resize', function(r, w, h){
18732                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
18733                 this.listWidth = w;
18734                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
18735                 this.restrictHeight();
18736             }, this);
18737             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
18738         }
18739         if(!this.editable){
18740             this.editable = true;
18741             this.setEditable(false);
18742         }  
18743         
18744         
18745         if (typeof(this.events.add.listeners) != 'undefined') {
18746             
18747             this.addicon = this.wrap.createChild(
18748                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
18749        
18750             this.addicon.on('click', function(e) {
18751                 this.fireEvent('add', this);
18752             }, this);
18753         }
18754         if (typeof(this.events.edit.listeners) != 'undefined') {
18755             
18756             this.editicon = this.wrap.createChild(
18757                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
18758             if (this.addicon) {
18759                 this.editicon.setStyle('margin-left', '40px');
18760             }
18761             this.editicon.on('click', function(e) {
18762                 
18763                 // we fire even  if inothing is selected..
18764                 this.fireEvent('edit', this, this.lastData );
18765                 
18766             }, this);
18767         }
18768         
18769         
18770         
18771     },
18772
18773     // private
18774     initEvents : function(){
18775         Roo.form.ComboBox.superclass.initEvents.call(this);
18776
18777         this.keyNav = new Roo.KeyNav(this.el, {
18778             "up" : function(e){
18779                 this.inKeyMode = true;
18780                 this.selectPrev();
18781             },
18782
18783             "down" : function(e){
18784                 if(!this.isExpanded()){
18785                     this.onTriggerClick();
18786                 }else{
18787                     this.inKeyMode = true;
18788                     this.selectNext();
18789                 }
18790             },
18791
18792             "enter" : function(e){
18793                 this.onViewClick();
18794                 //return true;
18795             },
18796
18797             "esc" : function(e){
18798                 this.collapse();
18799             },
18800
18801             "tab" : function(e){
18802                 this.onViewClick(false);
18803                 this.fireEvent("specialkey", this, e);
18804                 return true;
18805             },
18806
18807             scope : this,
18808
18809             doRelay : function(foo, bar, hname){
18810                 if(hname == 'down' || this.scope.isExpanded()){
18811                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
18812                 }
18813                 return true;
18814             },
18815
18816             forceKeyDown: true
18817         });
18818         this.queryDelay = Math.max(this.queryDelay || 10,
18819                 this.mode == 'local' ? 10 : 250);
18820         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
18821         if(this.typeAhead){
18822             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
18823         }
18824         if(this.editable !== false){
18825             this.el.on("keyup", this.onKeyUp, this);
18826         }
18827         if(this.forceSelection){
18828             this.on('blur', this.doForce, this);
18829         }
18830     },
18831
18832     onDestroy : function(){
18833         if(this.view){
18834             this.view.setStore(null);
18835             this.view.el.removeAllListeners();
18836             this.view.el.remove();
18837             this.view.purgeListeners();
18838         }
18839         if(this.list){
18840             this.list.destroy();
18841         }
18842         if(this.store){
18843             this.store.un('beforeload', this.onBeforeLoad, this);
18844             this.store.un('load', this.onLoad, this);
18845             this.store.un('loadexception', this.onLoadException, this);
18846         }
18847         Roo.form.ComboBox.superclass.onDestroy.call(this);
18848     },
18849
18850     // private
18851     fireKey : function(e){
18852         if(e.isNavKeyPress() && !this.list.isVisible()){
18853             this.fireEvent("specialkey", this, e);
18854         }
18855     },
18856
18857     // private
18858     onResize: function(w, h){
18859         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
18860         
18861         if(typeof w != 'number'){
18862             // we do not handle it!?!?
18863             return;
18864         }
18865         var tw = this.trigger.getWidth();
18866         tw += this.addicon ? this.addicon.getWidth() : 0;
18867         tw += this.editicon ? this.editicon.getWidth() : 0;
18868         var x = w - tw;
18869         this.el.setWidth( this.adjustWidth('input', x));
18870             
18871         this.trigger.setStyle('left', x+'px');
18872         
18873         if(this.list && this.listWidth === undefined){
18874             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
18875             this.list.setWidth(lw);
18876             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18877         }
18878         
18879     
18880         
18881     },
18882
18883     /**
18884      * Allow or prevent the user from directly editing the field text.  If false is passed,
18885      * the user will only be able to select from the items defined in the dropdown list.  This method
18886      * is the runtime equivalent of setting the 'editable' config option at config time.
18887      * @param {Boolean} value True to allow the user to directly edit the field text
18888      */
18889     setEditable : function(value){
18890         if(value == this.editable){
18891             return;
18892         }
18893         this.editable = value;
18894         if(!value){
18895             this.el.dom.setAttribute('readOnly', true);
18896             this.el.on('mousedown', this.onTriggerClick,  this);
18897             this.el.addClass('x-combo-noedit');
18898         }else{
18899             this.el.dom.setAttribute('readOnly', false);
18900             this.el.un('mousedown', this.onTriggerClick,  this);
18901             this.el.removeClass('x-combo-noedit');
18902         }
18903     },
18904
18905     // private
18906     onBeforeLoad : function(){
18907         if(!this.hasFocus){
18908             return;
18909         }
18910         this.innerList.update(this.loadingText ?
18911                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
18912         this.restrictHeight();
18913         this.selectedIndex = -1;
18914     },
18915
18916     // private
18917     onLoad : function(){
18918         if(!this.hasFocus){
18919             return;
18920         }
18921         if(this.store.getCount() > 0){
18922             this.expand();
18923             this.restrictHeight();
18924             if(this.lastQuery == this.allQuery){
18925                 if(this.editable){
18926                     this.el.dom.select();
18927                 }
18928                 if(!this.selectByValue(this.value, true)){
18929                     this.select(0, true);
18930                 }
18931             }else{
18932                 this.selectNext();
18933                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
18934                     this.taTask.delay(this.typeAheadDelay);
18935                 }
18936             }
18937         }else{
18938             this.onEmptyResults();
18939         }
18940         //this.el.focus();
18941     },
18942     // private
18943     onLoadException : function()
18944     {
18945         this.collapse();
18946         Roo.log(this.store.reader.jsonData);
18947         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
18948             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
18949         }
18950         
18951         
18952     },
18953     // private
18954     onTypeAhead : function(){
18955         if(this.store.getCount() > 0){
18956             var r = this.store.getAt(0);
18957             var newValue = r.data[this.displayField];
18958             var len = newValue.length;
18959             var selStart = this.getRawValue().length;
18960             if(selStart != len){
18961                 this.setRawValue(newValue);
18962                 this.selectText(selStart, newValue.length);
18963             }
18964         }
18965     },
18966
18967     // private
18968     onSelect : function(record, index){
18969         if(this.fireEvent('beforeselect', this, record, index) !== false){
18970             this.setFromData(index > -1 ? record.data : false);
18971             this.collapse();
18972             this.fireEvent('select', this, record, index);
18973         }
18974     },
18975
18976     /**
18977      * Returns the currently selected field value or empty string if no value is set.
18978      * @return {String} value The selected value
18979      */
18980     getValue : function(){
18981         if(this.valueField){
18982             return typeof this.value != 'undefined' ? this.value : '';
18983         }
18984         return Roo.form.ComboBox.superclass.getValue.call(this);
18985     },
18986
18987     /**
18988      * Clears any text/value currently set in the field
18989      */
18990     clearValue : function(){
18991         if(this.hiddenField){
18992             this.hiddenField.value = '';
18993         }
18994         this.value = '';
18995         this.setRawValue('');
18996         this.lastSelectionText = '';
18997         
18998     },
18999
19000     /**
19001      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
19002      * will be displayed in the field.  If the value does not match the data value of an existing item,
19003      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
19004      * Otherwise the field will be blank (although the value will still be set).
19005      * @param {String} value The value to match
19006      */
19007     setValue : function(v){
19008         var text = v;
19009         if(this.valueField){
19010             var r = this.findRecord(this.valueField, v);
19011             if(r){
19012                 text = r.data[this.displayField];
19013             }else if(this.valueNotFoundText !== undefined){
19014                 text = this.valueNotFoundText;
19015             }
19016         }
19017         this.lastSelectionText = text;
19018         if(this.hiddenField){
19019             this.hiddenField.value = v;
19020         }
19021         Roo.form.ComboBox.superclass.setValue.call(this, text);
19022         this.value = v;
19023     },
19024     /**
19025      * @property {Object} the last set data for the element
19026      */
19027     
19028     lastData : false,
19029     /**
19030      * Sets the value of the field based on a object which is related to the record format for the store.
19031      * @param {Object} value the value to set as. or false on reset?
19032      */
19033     setFromData : function(o){
19034         var dv = ''; // display value
19035         var vv = ''; // value value..
19036         this.lastData = o;
19037         if (this.displayField) {
19038             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19039         } else {
19040             // this is an error condition!!!
19041             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19042         }
19043         
19044         if(this.valueField){
19045             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
19046         }
19047         if(this.hiddenField){
19048             this.hiddenField.value = vv;
19049             
19050             this.lastSelectionText = dv;
19051             Roo.form.ComboBox.superclass.setValue.call(this, dv);
19052             this.value = vv;
19053             return;
19054         }
19055         // no hidden field.. - we store the value in 'value', but still display
19056         // display field!!!!
19057         this.lastSelectionText = dv;
19058         Roo.form.ComboBox.superclass.setValue.call(this, dv);
19059         this.value = vv;
19060         
19061         
19062     },
19063     // private
19064     reset : function(){
19065         // overridden so that last data is reset..
19066         this.setValue(this.resetValue);
19067         this.originalValue = this.getValue();
19068         this.clearInvalid();
19069         this.lastData = false;
19070         if (this.view) {
19071             this.view.clearSelections();
19072         }
19073     },
19074     // private
19075     findRecord : function(prop, value){
19076         var record;
19077         if(this.store.getCount() > 0){
19078             this.store.each(function(r){
19079                 if(r.data[prop] == value){
19080                     record = r;
19081                     return false;
19082                 }
19083                 return true;
19084             });
19085         }
19086         return record;
19087     },
19088     
19089     getName: function()
19090     {
19091         // returns hidden if it's set..
19092         if (!this.rendered) {return ''};
19093         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
19094         
19095     },
19096     // private
19097     onViewMove : function(e, t){
19098         this.inKeyMode = false;
19099     },
19100
19101     // private
19102     onViewOver : function(e, t){
19103         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
19104             return;
19105         }
19106         var item = this.view.findItemFromChild(t);
19107         if(item){
19108             var index = this.view.indexOf(item);
19109             this.select(index, false);
19110         }
19111     },
19112
19113     // private
19114     onViewClick : function(doFocus)
19115     {
19116         var index = this.view.getSelectedIndexes()[0];
19117         var r = this.store.getAt(index);
19118         if(r){
19119             this.onSelect(r, index);
19120         }
19121         if(doFocus !== false && !this.blockFocus){
19122             this.el.focus();
19123         }
19124     },
19125
19126     // private
19127     restrictHeight : function(){
19128         this.innerList.dom.style.height = '';
19129         var inner = this.innerList.dom;
19130         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
19131         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
19132         this.list.beginUpdate();
19133         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
19134         this.list.alignTo(this.el, this.listAlign);
19135         this.list.endUpdate();
19136     },
19137
19138     // private
19139     onEmptyResults : function(){
19140         this.collapse();
19141     },
19142
19143     /**
19144      * Returns true if the dropdown list is expanded, else false.
19145      */
19146     isExpanded : function(){
19147         return this.list.isVisible();
19148     },
19149
19150     /**
19151      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
19152      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19153      * @param {String} value The data value of the item to select
19154      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19155      * selected item if it is not currently in view (defaults to true)
19156      * @return {Boolean} True if the value matched an item in the list, else false
19157      */
19158     selectByValue : function(v, scrollIntoView){
19159         if(v !== undefined && v !== null){
19160             var r = this.findRecord(this.valueField || this.displayField, v);
19161             if(r){
19162                 this.select(this.store.indexOf(r), scrollIntoView);
19163                 return true;
19164             }
19165         }
19166         return false;
19167     },
19168
19169     /**
19170      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
19171      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19172      * @param {Number} index The zero-based index of the list item to select
19173      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19174      * selected item if it is not currently in view (defaults to true)
19175      */
19176     select : function(index, scrollIntoView){
19177         this.selectedIndex = index;
19178         this.view.select(index);
19179         if(scrollIntoView !== false){
19180             var el = this.view.getNode(index);
19181             if(el){
19182                 this.innerList.scrollChildIntoView(el, false);
19183             }
19184         }
19185     },
19186
19187     // private
19188     selectNext : function(){
19189         var ct = this.store.getCount();
19190         if(ct > 0){
19191             if(this.selectedIndex == -1){
19192                 this.select(0);
19193             }else if(this.selectedIndex < ct-1){
19194                 this.select(this.selectedIndex+1);
19195             }
19196         }
19197     },
19198
19199     // private
19200     selectPrev : function(){
19201         var ct = this.store.getCount();
19202         if(ct > 0){
19203             if(this.selectedIndex == -1){
19204                 this.select(0);
19205             }else if(this.selectedIndex != 0){
19206                 this.select(this.selectedIndex-1);
19207             }
19208         }
19209     },
19210
19211     // private
19212     onKeyUp : function(e){
19213         if(this.editable !== false && !e.isSpecialKey()){
19214             this.lastKey = e.getKey();
19215             this.dqTask.delay(this.queryDelay);
19216         }
19217     },
19218
19219     // private
19220     validateBlur : function(){
19221         return !this.list || !this.list.isVisible();   
19222     },
19223
19224     // private
19225     initQuery : function(){
19226         this.doQuery(this.getRawValue());
19227     },
19228
19229     // private
19230     doForce : function(){
19231         if(this.el.dom.value.length > 0){
19232             this.el.dom.value =
19233                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
19234              
19235         }
19236     },
19237
19238     /**
19239      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
19240      * query allowing the query action to be canceled if needed.
19241      * @param {String} query The SQL query to execute
19242      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
19243      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
19244      * saved in the current store (defaults to false)
19245      */
19246     doQuery : function(q, forceAll){
19247         if(q === undefined || q === null){
19248             q = '';
19249         }
19250         var qe = {
19251             query: q,
19252             forceAll: forceAll,
19253             combo: this,
19254             cancel:false
19255         };
19256         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
19257             return false;
19258         }
19259         q = qe.query;
19260         forceAll = qe.forceAll;
19261         if(forceAll === true || (q.length >= this.minChars)){
19262             if(this.lastQuery != q || this.alwaysQuery){
19263                 this.lastQuery = q;
19264                 if(this.mode == 'local'){
19265                     this.selectedIndex = -1;
19266                     if(forceAll){
19267                         this.store.clearFilter();
19268                     }else{
19269                         this.store.filter(this.displayField, q);
19270                     }
19271                     this.onLoad();
19272                 }else{
19273                     this.store.baseParams[this.queryParam] = q;
19274                     this.store.load({
19275                         params: this.getParams(q)
19276                     });
19277                     this.expand();
19278                 }
19279             }else{
19280                 this.selectedIndex = -1;
19281                 this.onLoad();   
19282             }
19283         }
19284     },
19285
19286     // private
19287     getParams : function(q){
19288         var p = {};
19289         //p[this.queryParam] = q;
19290         if(this.pageSize){
19291             p.start = 0;
19292             p.limit = this.pageSize;
19293         }
19294         return p;
19295     },
19296
19297     /**
19298      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
19299      */
19300     collapse : function(){
19301         if(!this.isExpanded()){
19302             return;
19303         }
19304         this.list.hide();
19305         Roo.get(document).un('mousedown', this.collapseIf, this);
19306         Roo.get(document).un('mousewheel', this.collapseIf, this);
19307         if (!this.editable) {
19308             Roo.get(document).un('keydown', this.listKeyPress, this);
19309         }
19310         this.fireEvent('collapse', this);
19311     },
19312
19313     // private
19314     collapseIf : function(e){
19315         if(!e.within(this.wrap) && !e.within(this.list)){
19316             this.collapse();
19317         }
19318     },
19319
19320     /**
19321      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
19322      */
19323     expand : function(){
19324         if(this.isExpanded() || !this.hasFocus){
19325             return;
19326         }
19327         this.list.alignTo(this.el, this.listAlign);
19328         this.list.show();
19329         Roo.get(document).on('mousedown', this.collapseIf, this);
19330         Roo.get(document).on('mousewheel', this.collapseIf, this);
19331         if (!this.editable) {
19332             Roo.get(document).on('keydown', this.listKeyPress, this);
19333         }
19334         
19335         this.fireEvent('expand', this);
19336     },
19337
19338     // private
19339     // Implements the default empty TriggerField.onTriggerClick function
19340     onTriggerClick : function(){
19341         if(this.disabled){
19342             return;
19343         }
19344         if(this.isExpanded()){
19345             this.collapse();
19346             if (!this.blockFocus) {
19347                 this.el.focus();
19348             }
19349             
19350         }else {
19351             this.hasFocus = true;
19352             if(this.triggerAction == 'all') {
19353                 this.doQuery(this.allQuery, true);
19354             } else {
19355                 this.doQuery(this.getRawValue());
19356             }
19357             if (!this.blockFocus) {
19358                 this.el.focus();
19359             }
19360         }
19361     },
19362     listKeyPress : function(e)
19363     {
19364         //Roo.log('listkeypress');
19365         // scroll to first matching element based on key pres..
19366         if (e.isSpecialKey()) {
19367             return false;
19368         }
19369         var k = String.fromCharCode(e.getKey()).toUpperCase();
19370         //Roo.log(k);
19371         var match  = false;
19372         var csel = this.view.getSelectedNodes();
19373         var cselitem = false;
19374         if (csel.length) {
19375             var ix = this.view.indexOf(csel[0]);
19376             cselitem  = this.store.getAt(ix);
19377             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19378                 cselitem = false;
19379             }
19380             
19381         }
19382         
19383         this.store.each(function(v) { 
19384             if (cselitem) {
19385                 // start at existing selection.
19386                 if (cselitem.id == v.id) {
19387                     cselitem = false;
19388                 }
19389                 return;
19390             }
19391                 
19392             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19393                 match = this.store.indexOf(v);
19394                 return false;
19395             }
19396         }, this);
19397         
19398         if (match === false) {
19399             return true; // no more action?
19400         }
19401         // scroll to?
19402         this.view.select(match);
19403         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19404         sn.scrollIntoView(sn.dom.parentNode, false);
19405     } 
19406
19407     /** 
19408     * @cfg {Boolean} grow 
19409     * @hide 
19410     */
19411     /** 
19412     * @cfg {Number} growMin 
19413     * @hide 
19414     */
19415     /** 
19416     * @cfg {Number} growMax 
19417     * @hide 
19418     */
19419     /**
19420      * @hide
19421      * @method autoSize
19422      */
19423 });/*
19424  * Copyright(c) 2010-2012, Roo J Solutions Limited
19425  *
19426  * Licence LGPL
19427  *
19428  */
19429
19430 /**
19431  * @class Roo.form.ComboBoxArray
19432  * @extends Roo.form.TextField
19433  * A facebook style adder... for lists of email / people / countries  etc...
19434  * pick multiple items from a combo box, and shows each one.
19435  *
19436  *  Fred [x]  Brian [x]  [Pick another |v]
19437  *
19438  *
19439  *  For this to work: it needs various extra information
19440  *    - normal combo problay has
19441  *      name, hiddenName
19442  *    + displayField, valueField
19443  *
19444  *    For our purpose...
19445  *
19446  *
19447  *   If we change from 'extends' to wrapping...
19448  *   
19449  *  
19450  *
19451  
19452  
19453  * @constructor
19454  * Create a new ComboBoxArray.
19455  * @param {Object} config Configuration options
19456  */
19457  
19458
19459 Roo.form.ComboBoxArray = function(config)
19460 {
19461     this.addEvents({
19462         /**
19463          * @event beforeremove
19464          * Fires before remove the value from the list
19465              * @param {Roo.form.ComboBoxArray} _self This combo box array
19466              * @param {Roo.form.ComboBoxArray.Item} item removed item
19467              */
19468         'beforeremove' : true,
19469         /**
19470          * @event remove
19471          * Fires when remove the value from the list
19472              * @param {Roo.form.ComboBoxArray} _self This combo box array
19473              * @param {Roo.form.ComboBoxArray.Item} item removed item
19474              */
19475         'remove' : true
19476         
19477         
19478     });
19479     
19480     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
19481     
19482     this.items = new Roo.util.MixedCollection(false);
19483     
19484     // construct the child combo...
19485     
19486     
19487     
19488     
19489    
19490     
19491 }
19492
19493  
19494 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
19495
19496     /**
19497      * @cfg {Roo.form.ComboBox} combo [required] The combo box that is wrapped
19498      */
19499     
19500     lastData : false,
19501     
19502     // behavies liek a hiddne field
19503     inputType:      'hidden',
19504     /**
19505      * @cfg {Number} width The width of the box that displays the selected element
19506      */ 
19507     width:          300,
19508
19509     
19510     
19511     /**
19512      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
19513      */
19514     name : false,
19515     /**
19516      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
19517      */
19518     hiddenName : false,
19519       /**
19520      * @cfg {String} seperator    The value seperator normally ',' 
19521      */
19522     seperator : ',',
19523     
19524     
19525         // private the array of items that are displayed..
19526     items  : false,
19527     // private - the hidden field el.
19528     hiddenEl : false,
19529     // private - the filed el..
19530     el : false,
19531     
19532     //validateValue : function() { return true; }, // all values are ok!
19533     //onAddClick: function() { },
19534     
19535     onRender : function(ct, position) 
19536     {
19537         
19538         // create the standard hidden element
19539         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
19540         
19541         
19542         // give fake names to child combo;
19543         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
19544         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
19545         
19546         this.combo = Roo.factory(this.combo, Roo.form);
19547         this.combo.onRender(ct, position);
19548         if (typeof(this.combo.width) != 'undefined') {
19549             this.combo.onResize(this.combo.width,0);
19550         }
19551         
19552         this.combo.initEvents();
19553         
19554         // assigned so form know we need to do this..
19555         this.store          = this.combo.store;
19556         this.valueField     = this.combo.valueField;
19557         this.displayField   = this.combo.displayField ;
19558         
19559         
19560         this.combo.wrap.addClass('x-cbarray-grp');
19561         
19562         var cbwrap = this.combo.wrap.createChild(
19563             {tag: 'div', cls: 'x-cbarray-cb'},
19564             this.combo.el.dom
19565         );
19566         
19567              
19568         this.hiddenEl = this.combo.wrap.createChild({
19569             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
19570         });
19571         this.el = this.combo.wrap.createChild({
19572             tag: 'input',  type:'hidden' , name: this.name, value : ''
19573         });
19574          //   this.el.dom.removeAttribute("name");
19575         
19576         
19577         this.outerWrap = this.combo.wrap;
19578         this.wrap = cbwrap;
19579         
19580         this.outerWrap.setWidth(this.width);
19581         this.outerWrap.dom.removeChild(this.el.dom);
19582         
19583         this.wrap.dom.appendChild(this.el.dom);
19584         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
19585         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
19586         
19587         this.combo.trigger.setStyle('position','relative');
19588         this.combo.trigger.setStyle('left', '0px');
19589         this.combo.trigger.setStyle('top', '2px');
19590         
19591         this.combo.el.setStyle('vertical-align', 'text-bottom');
19592         
19593         //this.trigger.setStyle('vertical-align', 'top');
19594         
19595         // this should use the code from combo really... on('add' ....)
19596         if (this.adder) {
19597             
19598         
19599             this.adder = this.outerWrap.createChild(
19600                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
19601             var _t = this;
19602             this.adder.on('click', function(e) {
19603                 _t.fireEvent('adderclick', this, e);
19604             }, _t);
19605         }
19606         //var _t = this;
19607         //this.adder.on('click', this.onAddClick, _t);
19608         
19609         
19610         this.combo.on('select', function(cb, rec, ix) {
19611             this.addItem(rec.data);
19612             
19613             cb.setValue('');
19614             cb.el.dom.value = '';
19615             //cb.lastData = rec.data;
19616             // add to list
19617             
19618         }, this);
19619          
19620         
19621         
19622             
19623     },
19624     
19625     
19626     getName: function()
19627     {
19628         // returns hidden if it's set..
19629         if (!this.rendered) {return ''};
19630         return  this.hiddenName ? this.hiddenName : this.name;
19631         
19632     },
19633     
19634     
19635     onResize: function(w, h){
19636         
19637         return;
19638         // not sure if this is needed..
19639         //this.combo.onResize(w,h);
19640         
19641         if(typeof w != 'number'){
19642             // we do not handle it!?!?
19643             return;
19644         }
19645         var tw = this.combo.trigger.getWidth();
19646         tw += this.addicon ? this.addicon.getWidth() : 0;
19647         tw += this.editicon ? this.editicon.getWidth() : 0;
19648         var x = w - tw;
19649         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
19650             
19651         this.combo.trigger.setStyle('left', '0px');
19652         
19653         if(this.list && this.listWidth === undefined){
19654             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
19655             this.list.setWidth(lw);
19656             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19657         }
19658         
19659     
19660         
19661     },
19662     
19663     addItem: function(rec)
19664     {
19665         var valueField = this.combo.valueField;
19666         var displayField = this.combo.displayField;
19667         
19668         if (this.items.indexOfKey(rec[valueField]) > -1) {
19669             //console.log("GOT " + rec.data.id);
19670             return;
19671         }
19672         
19673         var x = new Roo.form.ComboBoxArray.Item({
19674             //id : rec[this.idField],
19675             data : rec,
19676             displayField : displayField ,
19677             tipField : displayField ,
19678             cb : this
19679         });
19680         // use the 
19681         this.items.add(rec[valueField],x);
19682         // add it before the element..
19683         this.updateHiddenEl();
19684         x.render(this.outerWrap, this.wrap.dom);
19685         // add the image handler..
19686     },
19687     
19688     updateHiddenEl : function()
19689     {
19690         this.validate();
19691         if (!this.hiddenEl) {
19692             return;
19693         }
19694         var ar = [];
19695         var idField = this.combo.valueField;
19696         
19697         this.items.each(function(f) {
19698             ar.push(f.data[idField]);
19699         });
19700         this.hiddenEl.dom.value = ar.join(this.seperator);
19701         this.validate();
19702     },
19703     
19704     reset : function()
19705     {
19706         this.items.clear();
19707         
19708         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
19709            el.remove();
19710         });
19711         
19712         this.el.dom.value = '';
19713         if (this.hiddenEl) {
19714             this.hiddenEl.dom.value = '';
19715         }
19716         
19717     },
19718     getValue: function()
19719     {
19720         return this.hiddenEl ? this.hiddenEl.dom.value : '';
19721     },
19722     setValue: function(v) // not a valid action - must use addItems..
19723     {
19724         
19725         this.reset();
19726          
19727         if (this.store.isLocal && (typeof(v) == 'string')) {
19728             // then we can use the store to find the values..
19729             // comma seperated at present.. this needs to allow JSON based encoding..
19730             this.hiddenEl.value  = v;
19731             var v_ar = [];
19732             Roo.each(v.split(this.seperator), function(k) {
19733                 Roo.log("CHECK " + this.valueField + ',' + k);
19734                 var li = this.store.query(this.valueField, k);
19735                 if (!li.length) {
19736                     return;
19737                 }
19738                 var add = {};
19739                 add[this.valueField] = k;
19740                 add[this.displayField] = li.item(0).data[this.displayField];
19741                 
19742                 this.addItem(add);
19743             }, this) 
19744              
19745         }
19746         if (typeof(v) == 'object' ) {
19747             // then let's assume it's an array of objects..
19748             Roo.each(v, function(l) {
19749                 var add = l;
19750                 if (typeof(l) == 'string') {
19751                     add = {};
19752                     add[this.valueField] = l;
19753                     add[this.displayField] = l
19754                 }
19755                 this.addItem(add);
19756             }, this);
19757              
19758         }
19759         
19760         
19761     },
19762     setFromData: function(v)
19763     {
19764         // this recieves an object, if setValues is called.
19765         this.reset();
19766         this.el.dom.value = v[this.displayField];
19767         this.hiddenEl.dom.value = v[this.valueField];
19768         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
19769             return;
19770         }
19771         var kv = v[this.valueField];
19772         var dv = v[this.displayField];
19773         kv = typeof(kv) != 'string' ? '' : kv;
19774         dv = typeof(dv) != 'string' ? '' : dv;
19775         
19776         
19777         var keys = kv.split(this.seperator);
19778         var display = dv.split(this.seperator);
19779         for (var i = 0 ; i < keys.length; i++) {
19780             add = {};
19781             add[this.valueField] = keys[i];
19782             add[this.displayField] = display[i];
19783             this.addItem(add);
19784         }
19785       
19786         
19787     },
19788     
19789     /**
19790      * Validates the combox array value
19791      * @return {Boolean} True if the value is valid, else false
19792      */
19793     validate : function(){
19794         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
19795             this.clearInvalid();
19796             return true;
19797         }
19798         return false;
19799     },
19800     
19801     validateValue : function(value){
19802         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
19803         
19804     },
19805     
19806     /*@
19807      * overide
19808      * 
19809      */
19810     isDirty : function() {
19811         if(this.disabled) {
19812             return false;
19813         }
19814         
19815         try {
19816             var d = Roo.decode(String(this.originalValue));
19817         } catch (e) {
19818             return String(this.getValue()) !== String(this.originalValue);
19819         }
19820         
19821         var originalValue = [];
19822         
19823         for (var i = 0; i < d.length; i++){
19824             originalValue.push(d[i][this.valueField]);
19825         }
19826         
19827         return String(this.getValue()) !== String(originalValue.join(this.seperator));
19828         
19829     }
19830     
19831 });
19832
19833
19834
19835 /**
19836  * @class Roo.form.ComboBoxArray.Item
19837  * @extends Roo.BoxComponent
19838  * A selected item in the list
19839  *  Fred [x]  Brian [x]  [Pick another |v]
19840  * 
19841  * @constructor
19842  * Create a new item.
19843  * @param {Object} config Configuration options
19844  */
19845  
19846 Roo.form.ComboBoxArray.Item = function(config) {
19847     config.id = Roo.id();
19848     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
19849 }
19850
19851 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
19852     data : {},
19853     cb: false,
19854     displayField : false,
19855     tipField : false,
19856      
19857     
19858     defaultAutoCreate : {
19859         tag: 'div',
19860         cls: 'x-cbarray-item',
19861         cn : [ 
19862             { tag: 'div' },
19863             {
19864                 tag: 'img',
19865                 width:16,
19866                 height : 16,
19867                 src : Roo.BLANK_IMAGE_URL ,
19868                 align: 'center'
19869             }
19870         ]
19871         
19872     },
19873     
19874  
19875     onRender : function(ct, position)
19876     {
19877         Roo.form.Field.superclass.onRender.call(this, ct, position);
19878         
19879         if(!this.el){
19880             var cfg = this.getAutoCreate();
19881             this.el = ct.createChild(cfg, position);
19882         }
19883         
19884         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
19885         
19886         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
19887             this.cb.renderer(this.data) :
19888             String.format('{0}',this.data[this.displayField]);
19889         
19890             
19891         this.el.child('div').dom.setAttribute('qtip',
19892                         String.format('{0}',this.data[this.tipField])
19893         );
19894         
19895         this.el.child('img').on('click', this.remove, this);
19896         
19897     },
19898    
19899     remove : function()
19900     {
19901         if(this.cb.disabled){
19902             return;
19903         }
19904         
19905         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
19906             this.cb.items.remove(this);
19907             this.el.child('img').un('click', this.remove, this);
19908             this.el.remove();
19909             this.cb.updateHiddenEl();
19910
19911             this.cb.fireEvent('remove', this.cb, this);
19912         }
19913         
19914     }
19915 });/*
19916  * RooJS Library 1.1.1
19917  * Copyright(c) 2008-2011  Alan Knowles
19918  *
19919  * License - LGPL
19920  */
19921  
19922
19923 /**
19924  * @class Roo.form.ComboNested
19925  * @extends Roo.form.ComboBox
19926  * A combobox for that allows selection of nested items in a list,
19927  * eg.
19928  *
19929  *  Book
19930  *    -> red
19931  *    -> green
19932  *  Table
19933  *    -> square
19934  *      ->red
19935  *      ->green
19936  *    -> rectangle
19937  *      ->green
19938  *      
19939  * 
19940  * @constructor
19941  * Create a new ComboNested
19942  * @param {Object} config Configuration options
19943  */
19944 Roo.form.ComboNested = function(config){
19945     Roo.form.ComboCheck.superclass.constructor.call(this, config);
19946     // should verify some data...
19947     // like
19948     // hiddenName = required..
19949     // displayField = required
19950     // valudField == required
19951     var req= [ 'hiddenName', 'displayField', 'valueField' ];
19952     var _t = this;
19953     Roo.each(req, function(e) {
19954         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
19955             throw "Roo.form.ComboNested : missing value for: " + e;
19956         }
19957     });
19958      
19959     
19960 };
19961
19962 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
19963    
19964     /*
19965      * @config {Number} max Number of columns to show
19966      */
19967     
19968     maxColumns : 3,
19969    
19970     list : null, // the outermost div..
19971     innerLists : null, // the
19972     views : null,
19973     stores : null,
19974     // private
19975     loadingChildren : false,
19976     
19977     onRender : function(ct, position)
19978     {
19979         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
19980         
19981         if(this.hiddenName){
19982             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
19983                     'before', true);
19984             this.hiddenField.value =
19985                 this.hiddenValue !== undefined ? this.hiddenValue :
19986                 this.value !== undefined ? this.value : '';
19987
19988             // prevent input submission
19989             this.el.dom.removeAttribute('name');
19990              
19991              
19992         }
19993         
19994         if(Roo.isGecko){
19995             this.el.dom.setAttribute('autocomplete', 'off');
19996         }
19997
19998         var cls = 'x-combo-list';
19999
20000         this.list = new Roo.Layer({
20001             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
20002         });
20003
20004         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
20005         this.list.setWidth(lw);
20006         this.list.swallowEvent('mousewheel');
20007         this.assetHeight = 0;
20008
20009         if(this.title){
20010             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
20011             this.assetHeight += this.header.getHeight();
20012         }
20013         this.innerLists = [];
20014         this.views = [];
20015         this.stores = [];
20016         for (var i =0 ; i < this.maxColumns; i++) {
20017             this.onRenderList( cls, i);
20018         }
20019         
20020         // always needs footer, as we are going to have an 'OK' button.
20021         this.footer = this.list.createChild({cls:cls+'-ft'});
20022         this.pageTb = new Roo.Toolbar(this.footer);  
20023         var _this = this;
20024         this.pageTb.add(  {
20025             
20026             text: 'Done',
20027             handler: function()
20028             {
20029                 _this.collapse();
20030             }
20031         });
20032         
20033         if ( this.allowBlank && !this.disableClear) {
20034             
20035             this.pageTb.add(new Roo.Toolbar.Fill(), {
20036                 cls: 'x-btn-icon x-btn-clear',
20037                 text: '&#160;',
20038                 handler: function()
20039                 {
20040                     _this.collapse();
20041                     _this.clearValue();
20042                     _this.onSelect(false, -1);
20043                 }
20044             });
20045         }
20046         if (this.footer) {
20047             this.assetHeight += this.footer.getHeight();
20048         }
20049         
20050     },
20051     onRenderList : function (  cls, i)
20052     {
20053         
20054         var lw = Math.floor(
20055                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20056         );
20057         
20058         this.list.setWidth(lw); // default to '1'
20059
20060         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
20061         //il.on('mouseover', this.onViewOver, this, { list:  i });
20062         //il.on('mousemove', this.onViewMove, this, { list:  i });
20063         il.setWidth(lw);
20064         il.setStyle({ 'overflow-x' : 'hidden'});
20065
20066         if(!this.tpl){
20067             this.tpl = new Roo.Template({
20068                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
20069                 isEmpty: function (value, allValues) {
20070                     //Roo.log(value);
20071                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
20072                     return dl ? 'has-children' : 'no-children'
20073                 }
20074             });
20075         }
20076         
20077         var store  = this.store;
20078         if (i > 0) {
20079             store  = new Roo.data.SimpleStore({
20080                 //fields : this.store.reader.meta.fields,
20081                 reader : this.store.reader,
20082                 data : [ ]
20083             });
20084         }
20085         this.stores[i]  = store;
20086                   
20087         var view = this.views[i] = new Roo.View(
20088             il,
20089             this.tpl,
20090             {
20091                 singleSelect:true,
20092                 store: store,
20093                 selectedClass: this.selectedClass
20094             }
20095         );
20096         view.getEl().setWidth(lw);
20097         view.getEl().setStyle({
20098             position: i < 1 ? 'relative' : 'absolute',
20099             top: 0,
20100             left: (i * lw ) + 'px',
20101             display : i > 0 ? 'none' : 'block'
20102         });
20103         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
20104         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
20105         //view.on('click', this.onViewClick, this, { list : i });
20106
20107         store.on('beforeload', this.onBeforeLoad, this);
20108         store.on('load',  this.onLoad, this, { list  : i});
20109         store.on('loadexception', this.onLoadException, this);
20110
20111         // hide the other vies..
20112         
20113         
20114         
20115     },
20116       
20117     restrictHeight : function()
20118     {
20119         var mh = 0;
20120         Roo.each(this.innerLists, function(il,i) {
20121             var el = this.views[i].getEl();
20122             el.dom.style.height = '';
20123             var inner = el.dom;
20124             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
20125             // only adjust heights on other ones..
20126             mh = Math.max(h, mh);
20127             if (i < 1) {
20128                 
20129                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20130                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20131                
20132             }
20133             
20134             
20135         }, this);
20136         
20137         this.list.beginUpdate();
20138         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
20139         this.list.alignTo(this.el, this.listAlign);
20140         this.list.endUpdate();
20141         
20142     },
20143      
20144     
20145     // -- store handlers..
20146     // private
20147     onBeforeLoad : function()
20148     {
20149         if(!this.hasFocus){
20150             return;
20151         }
20152         this.innerLists[0].update(this.loadingText ?
20153                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
20154         this.restrictHeight();
20155         this.selectedIndex = -1;
20156     },
20157     // private
20158     onLoad : function(a,b,c,d)
20159     {
20160         if (!this.loadingChildren) {
20161             // then we are loading the top level. - hide the children
20162             for (var i = 1;i < this.views.length; i++) {
20163                 this.views[i].getEl().setStyle({ display : 'none' });
20164             }
20165             var lw = Math.floor(
20166                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20167             );
20168         
20169              this.list.setWidth(lw); // default to '1'
20170
20171             
20172         }
20173         if(!this.hasFocus){
20174             return;
20175         }
20176         
20177         if(this.store.getCount() > 0) {
20178             this.expand();
20179             this.restrictHeight();   
20180         } else {
20181             this.onEmptyResults();
20182         }
20183         
20184         if (!this.loadingChildren) {
20185             this.selectActive();
20186         }
20187         /*
20188         this.stores[1].loadData([]);
20189         this.stores[2].loadData([]);
20190         this.views
20191         */    
20192     
20193         //this.el.focus();
20194     },
20195     
20196     
20197     // private
20198     onLoadException : function()
20199     {
20200         this.collapse();
20201         Roo.log(this.store.reader.jsonData);
20202         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
20203             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
20204         }
20205         
20206         
20207     },
20208     // no cleaning of leading spaces on blur here.
20209     cleanLeadingSpace : function(e) { },
20210     
20211
20212     onSelectChange : function (view, sels, opts )
20213     {
20214         var ix = view.getSelectedIndexes();
20215          
20216         if (opts.list > this.maxColumns - 2) {
20217             if (view.store.getCount()<  1) {
20218                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
20219
20220             } else  {
20221                 if (ix.length) {
20222                     // used to clear ?? but if we are loading unselected 
20223                     this.setFromData(view.store.getAt(ix[0]).data);
20224                 }
20225                 
20226             }
20227             
20228             return;
20229         }
20230         
20231         if (!ix.length) {
20232             // this get's fired when trigger opens..
20233            // this.setFromData({});
20234             var str = this.stores[opts.list+1];
20235             str.data.clear(); // removeall wihtout the fire events..
20236             return;
20237         }
20238         
20239         var rec = view.store.getAt(ix[0]);
20240          
20241         this.setFromData(rec.data);
20242         this.fireEvent('select', this, rec, ix[0]);
20243         
20244         var lw = Math.floor(
20245              (
20246                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
20247              ) / this.maxColumns
20248         );
20249         this.loadingChildren = true;
20250         this.stores[opts.list+1].loadDataFromChildren( rec );
20251         this.loadingChildren = false;
20252         var dl = this.stores[opts.list+1]. getTotalCount();
20253         
20254         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
20255         
20256         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
20257         for (var i = opts.list+2; i < this.views.length;i++) {
20258             this.views[i].getEl().setStyle({ display : 'none' });
20259         }
20260         
20261         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
20262         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
20263         
20264         if (this.isLoading) {
20265            // this.selectActive(opts.list);
20266         }
20267          
20268     },
20269     
20270     
20271     
20272     
20273     onDoubleClick : function()
20274     {
20275         this.collapse(); //??
20276     },
20277     
20278      
20279     
20280     
20281     
20282     // private
20283     recordToStack : function(store, prop, value, stack)
20284     {
20285         var cstore = new Roo.data.SimpleStore({
20286             //fields : this.store.reader.meta.fields, // we need array reader.. for
20287             reader : this.store.reader,
20288             data : [ ]
20289         });
20290         var _this = this;
20291         var record  = false;
20292         var srec = false;
20293         if(store.getCount() < 1){
20294             return false;
20295         }
20296         store.each(function(r){
20297             if(r.data[prop] == value){
20298                 record = r;
20299             srec = r;
20300                 return false;
20301             }
20302             if (r.data.cn && r.data.cn.length) {
20303                 cstore.loadDataFromChildren( r);
20304                 var cret = _this.recordToStack(cstore, prop, value, stack);
20305                 if (cret !== false) {
20306                     record = cret;
20307                     srec = r;
20308                     return false;
20309                 }
20310             }
20311              
20312             return true;
20313         });
20314         if (record == false) {
20315             return false
20316         }
20317         stack.unshift(srec);
20318         return record;
20319     },
20320     
20321     /*
20322      * find the stack of stores that match our value.
20323      *
20324      * 
20325      */
20326     
20327     selectActive : function ()
20328     {
20329         // if store is not loaded, then we will need to wait for that to happen first.
20330         var stack = [];
20331         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
20332         for (var i = 0; i < stack.length; i++ ) {
20333             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
20334         }
20335         
20336     }
20337         
20338          
20339     
20340     
20341     
20342     
20343 });/*
20344  * Based on:
20345  * Ext JS Library 1.1.1
20346  * Copyright(c) 2006-2007, Ext JS, LLC.
20347  *
20348  * Originally Released Under LGPL - original licence link has changed is not relivant.
20349  *
20350  * Fork - LGPL
20351  * <script type="text/javascript">
20352  */
20353 /**
20354  * @class Roo.form.Checkbox
20355  * @extends Roo.form.Field
20356  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
20357  * @constructor
20358  * Creates a new Checkbox
20359  * @param {Object} config Configuration options
20360  */
20361 Roo.form.Checkbox = function(config){
20362     Roo.form.Checkbox.superclass.constructor.call(this, config);
20363     this.addEvents({
20364         /**
20365          * @event check
20366          * Fires when the checkbox is checked or unchecked.
20367              * @param {Roo.form.Checkbox} this This checkbox
20368              * @param {Boolean} checked The new checked value
20369              */
20370         check : true
20371     });
20372 };
20373
20374 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
20375     /**
20376      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20377      */
20378     focusClass : undefined,
20379     /**
20380      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
20381      */
20382     fieldClass: "x-form-field",
20383     /**
20384      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
20385      */
20386     checked: false,
20387     /**
20388      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20389      * {tag: "input", type: "checkbox", autocomplete: "off"})
20390      */
20391     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
20392     /**
20393      * @cfg {String} boxLabel The text that appears beside the checkbox
20394      */
20395     boxLabel : "",
20396     /**
20397      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
20398      */  
20399     inputValue : '1',
20400     /**
20401      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20402      */
20403      valueOff: '0', // value when not checked..
20404
20405     actionMode : 'viewEl', 
20406     //
20407     // private
20408     itemCls : 'x-menu-check-item x-form-item',
20409     groupClass : 'x-menu-group-item',
20410     inputType : 'hidden',
20411     
20412     
20413     inSetChecked: false, // check that we are not calling self...
20414     
20415     inputElement: false, // real input element?
20416     basedOn: false, // ????
20417     
20418     isFormField: true, // not sure where this is needed!!!!
20419
20420     onResize : function(){
20421         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
20422         if(!this.boxLabel){
20423             this.el.alignTo(this.wrap, 'c-c');
20424         }
20425     },
20426
20427     initEvents : function(){
20428         Roo.form.Checkbox.superclass.initEvents.call(this);
20429         this.el.on("click", this.onClick,  this);
20430         this.el.on("change", this.onClick,  this);
20431     },
20432
20433
20434     getResizeEl : function(){
20435         return this.wrap;
20436     },
20437
20438     getPositionEl : function(){
20439         return this.wrap;
20440     },
20441
20442     // private
20443     onRender : function(ct, position){
20444         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20445         /*
20446         if(this.inputValue !== undefined){
20447             this.el.dom.value = this.inputValue;
20448         }
20449         */
20450         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20451         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20452         var viewEl = this.wrap.createChild({ 
20453             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20454         this.viewEl = viewEl;   
20455         this.wrap.on('click', this.onClick,  this); 
20456         
20457         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20458         this.el.on('propertychange', this.setFromHidden,  this);  //ie
20459         
20460         
20461         
20462         if(this.boxLabel){
20463             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20464         //    viewEl.on('click', this.onClick,  this); 
20465         }
20466         //if(this.checked){
20467             this.setChecked(this.checked);
20468         //}else{
20469             //this.checked = this.el.dom;
20470         //}
20471
20472     },
20473
20474     // private
20475     initValue : Roo.emptyFn,
20476
20477     /**
20478      * Returns the checked state of the checkbox.
20479      * @return {Boolean} True if checked, else false
20480      */
20481     getValue : function(){
20482         if(this.el){
20483             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
20484         }
20485         return this.valueOff;
20486         
20487     },
20488
20489         // private
20490     onClick : function(){ 
20491         if (this.disabled) {
20492             return;
20493         }
20494         this.setChecked(!this.checked);
20495
20496         //if(this.el.dom.checked != this.checked){
20497         //    this.setValue(this.el.dom.checked);
20498        // }
20499     },
20500
20501     /**
20502      * Sets the checked state of the checkbox.
20503      * On is always based on a string comparison between inputValue and the param.
20504      * @param {Boolean/String} value - the value to set 
20505      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20506      */
20507     setValue : function(v,suppressEvent){
20508         
20509         
20510         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20511         //if(this.el && this.el.dom){
20512         //    this.el.dom.checked = this.checked;
20513         //    this.el.dom.defaultChecked = this.checked;
20514         //}
20515         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20516         //this.fireEvent("check", this, this.checked);
20517     },
20518     // private..
20519     setChecked : function(state,suppressEvent)
20520     {
20521         if (this.inSetChecked) {
20522             this.checked = state;
20523             return;
20524         }
20525         
20526     
20527         if(this.wrap){
20528             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20529         }
20530         this.checked = state;
20531         if(suppressEvent !== true){
20532             this.fireEvent('check', this, state);
20533         }
20534         this.inSetChecked = true;
20535                  
20536                 this.el.dom.value = state ? this.inputValue : this.valueOff;
20537                  
20538         this.inSetChecked = false;
20539         
20540     },
20541     // handle setting of hidden value by some other method!!?!?
20542     setFromHidden: function()
20543     {
20544         if(!this.el){
20545             return;
20546         }
20547         //console.log("SET FROM HIDDEN");
20548         //alert('setFrom hidden');
20549         this.setValue(this.el.dom.value);
20550     },
20551     
20552     onDestroy : function()
20553     {
20554         if(this.viewEl){
20555             Roo.get(this.viewEl).remove();
20556         }
20557          
20558         Roo.form.Checkbox.superclass.onDestroy.call(this);
20559     },
20560     
20561     setBoxLabel : function(str)
20562     {
20563         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
20564     }
20565
20566 });/*
20567  * Based on:
20568  * Ext JS Library 1.1.1
20569  * Copyright(c) 2006-2007, Ext JS, LLC.
20570  *
20571  * Originally Released Under LGPL - original licence link has changed is not relivant.
20572  *
20573  * Fork - LGPL
20574  * <script type="text/javascript">
20575  */
20576  
20577 /**
20578  * @class Roo.form.Radio
20579  * @extends Roo.form.Checkbox
20580  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
20581  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
20582  * @constructor
20583  * Creates a new Radio
20584  * @param {Object} config Configuration options
20585  */
20586 Roo.form.Radio = function(){
20587     Roo.form.Radio.superclass.constructor.apply(this, arguments);
20588 };
20589 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
20590     inputType: 'radio',
20591
20592     /**
20593      * If this radio is part of a group, it will return the selected value
20594      * @return {String}
20595      */
20596     getGroupValue : function(){
20597         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
20598     },
20599     
20600     
20601     onRender : function(ct, position){
20602         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20603         
20604         if(this.inputValue !== undefined){
20605             this.el.dom.value = this.inputValue;
20606         }
20607          
20608         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20609         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20610         //var viewEl = this.wrap.createChild({ 
20611         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20612         //this.viewEl = viewEl;   
20613         //this.wrap.on('click', this.onClick,  this); 
20614         
20615         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20616         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
20617         
20618         
20619         
20620         if(this.boxLabel){
20621             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20622         //    viewEl.on('click', this.onClick,  this); 
20623         }
20624          if(this.checked){
20625             this.el.dom.checked =   'checked' ;
20626         }
20627          
20628     },
20629     /**
20630      * Sets the checked state of the checkbox.
20631      * On is always based on a string comparison between inputValue and the param.
20632      * @param {Boolean/String} value - the value to set 
20633      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20634      */
20635     setValue : function(v,suppressEvent){
20636         
20637         
20638         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20639         //if(this.el && this.el.dom){
20640         //    this.el.dom.checked = this.checked;
20641         //    this.el.dom.defaultChecked = this.checked;
20642         //}
20643         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20644         
20645         this.el.dom.form[this.name].value = v;
20646      
20647         //this.fireEvent("check", this, this.checked);
20648     },
20649     // private..
20650     setChecked : function(state,suppressEvent)
20651     {
20652          
20653         if(this.wrap){
20654             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20655         }
20656         this.checked = state;
20657         if(suppressEvent !== true){
20658             this.fireEvent('check', this, state);
20659         }
20660                  
20661                   
20662        
20663         
20664     },
20665     reset : function(){
20666         // this.setValue(this.resetValue);
20667         //this.originalValue = this.getValue();
20668         this.clearInvalid();
20669     } 
20670     
20671 });Roo.rtf = {}; // namespace
20672 Roo.rtf.Hex = function(hex)
20673 {
20674     this.hexstr = hex;
20675 };
20676 Roo.rtf.Paragraph = function(opts)
20677 {
20678     this.content = []; ///??? is that used?
20679 };Roo.rtf.Span = function(opts)
20680 {
20681     this.value = opts.value;
20682 };
20683
20684 Roo.rtf.Group = function(parent)
20685 {
20686     // we dont want to acutally store parent - it will make debug a nightmare..
20687     this.content = [];
20688     this.cn  = [];
20689      
20690        
20691     
20692 };
20693
20694 Roo.rtf.Group.prototype = {
20695     ignorable : false,
20696     content: false,
20697     cn: false,
20698     addContent : function(node) {
20699         // could set styles...
20700         this.content.push(node);
20701     },
20702     addChild : function(cn)
20703     {
20704         this.cn.push(cn);
20705     },
20706     // only for images really...
20707     toDataURL : function()
20708     {
20709         var mimetype = false;
20710         switch(true) {
20711             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
20712                 mimetype = "image/png";
20713                 break;
20714              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
20715                 mimetype = "image/jpeg";
20716                 break;
20717             default :
20718                 return 'about:blank'; // ?? error?
20719         }
20720         
20721         
20722         var hexstring = this.content[this.content.length-1].value;
20723         
20724         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
20725             return String.fromCharCode(parseInt(a, 16));
20726         }).join(""));
20727     }
20728     
20729 };
20730 // this looks like it's normally the {rtf{ .... }}
20731 Roo.rtf.Document = function()
20732 {
20733     // we dont want to acutally store parent - it will make debug a nightmare..
20734     this.rtlch  = [];
20735     this.content = [];
20736     this.cn = [];
20737     
20738 };
20739 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
20740     addChild : function(cn)
20741     {
20742         this.cn.push(cn);
20743         switch(cn.type) {
20744             case 'rtlch': // most content seems to be inside this??
20745             case 'listtext':
20746             case 'shpinst':
20747                 this.rtlch.push(cn);
20748                 return;
20749             default:
20750                 this[cn.type] = cn;
20751         }
20752         
20753     },
20754     
20755     getElementsByType : function(type)
20756     {
20757         var ret =  [];
20758         this._getElementsByType(type, ret, this.cn, 'rtf');
20759         return ret;
20760     },
20761     _getElementsByType : function (type, ret, search_array, path)
20762     {
20763         search_array.forEach(function(n,i) {
20764             if (n.type == type) {
20765                 n.path = path + '/' + n.type + ':' + i;
20766                 ret.push(n);
20767             }
20768             if (n.cn.length > 0) {
20769                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
20770             }
20771         },this);
20772     }
20773     
20774 });
20775  
20776 Roo.rtf.Ctrl = function(opts)
20777 {
20778     this.value = opts.value;
20779     this.param = opts.param;
20780 };
20781 /**
20782  *
20783  *
20784  * based on this https://github.com/iarna/rtf-parser
20785  * it's really only designed to extract pict from pasted RTF 
20786  *
20787  * usage:
20788  *
20789  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
20790  *  
20791  *
20792  */
20793
20794  
20795
20796
20797
20798 Roo.rtf.Parser = function(text) {
20799     //super({objectMode: true})
20800     this.text = '';
20801     this.parserState = this.parseText;
20802     
20803     // these are for interpeter...
20804     this.doc = {};
20805     ///this.parserState = this.parseTop
20806     this.groupStack = [];
20807     this.hexStore = [];
20808     this.doc = false;
20809     
20810     this.groups = []; // where we put the return.
20811     
20812     for (var ii = 0; ii < text.length; ++ii) {
20813         ++this.cpos;
20814         
20815         if (text[ii] === '\n') {
20816             ++this.row;
20817             this.col = 1;
20818         } else {
20819             ++this.col;
20820         }
20821         this.parserState(text[ii]);
20822     }
20823     
20824     
20825     
20826 };
20827 Roo.rtf.Parser.prototype = {
20828     text : '', // string being parsed..
20829     controlWord : '',
20830     controlWordParam :  '',
20831     hexChar : '',
20832     doc : false,
20833     group: false,
20834     groupStack : false,
20835     hexStore : false,
20836     
20837     
20838     cpos : 0, 
20839     row : 1, // reportin?
20840     col : 1, //
20841
20842      
20843     push : function (el)
20844     {
20845         var m = 'cmd'+ el.type;
20846         if (typeof(this[m]) == 'undefined') {
20847             Roo.log('invalid cmd:' + el.type);
20848             return;
20849         }
20850         this[m](el);
20851         //Roo.log(el);
20852     },
20853     flushHexStore : function()
20854     {
20855         if (this.hexStore.length < 1) {
20856             return;
20857         }
20858         var hexstr = this.hexStore.map(
20859             function(cmd) {
20860                 return cmd.value;
20861         }).join('');
20862         
20863         this.group.addContent( new Roo.rtf.Hex( hexstr ));
20864               
20865             
20866         this.hexStore.splice(0)
20867         
20868     },
20869     
20870     cmdgroupstart : function()
20871     {
20872         this.flushHexStore();
20873         if (this.group) {
20874             this.groupStack.push(this.group);
20875         }
20876          // parent..
20877         if (this.doc === false) {
20878             this.group = this.doc = new Roo.rtf.Document();
20879             return;
20880             
20881         }
20882         this.group = new Roo.rtf.Group(this.group);
20883     },
20884     cmdignorable : function()
20885     {
20886         this.flushHexStore();
20887         this.group.ignorable = true;
20888     },
20889     cmdendparagraph : function()
20890     {
20891         this.flushHexStore();
20892         this.group.addContent(new Roo.rtf.Paragraph());
20893     },
20894     cmdgroupend : function ()
20895     {
20896         this.flushHexStore();
20897         var endingGroup = this.group;
20898         
20899         
20900         this.group = this.groupStack.pop();
20901         if (this.group) {
20902             this.group.addChild(endingGroup);
20903         }
20904         
20905         
20906         
20907         var doc = this.group || this.doc;
20908         //if (endingGroup instanceof FontTable) {
20909         //  doc.fonts = endingGroup.table
20910         //} else if (endingGroup instanceof ColorTable) {
20911         //  doc.colors = endingGroup.table
20912         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
20913         if (endingGroup.ignorable === false) {
20914             //code
20915             this.groups.push(endingGroup);
20916            // Roo.log( endingGroup );
20917         }
20918             //Roo.each(endingGroup.content, function(item)) {
20919             //    doc.addContent(item);
20920             //}
20921             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
20922         //}
20923     },
20924     cmdtext : function (cmd)
20925     {
20926         this.flushHexStore();
20927         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
20928             //this.group = this.doc
20929             return;  // we really don't care about stray text...
20930         }
20931         this.group.addContent(new Roo.rtf.Span(cmd));
20932     },
20933     cmdcontrolword : function (cmd)
20934     {
20935         this.flushHexStore();
20936         if (!this.group.type) {
20937             this.group.type = cmd.value;
20938             return;
20939         }
20940         this.group.addContent(new Roo.rtf.Ctrl(cmd));
20941         // we actually don't care about ctrl words...
20942         return ;
20943         /*
20944         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
20945         if (this[method]) {
20946             this[method](cmd.param)
20947         } else {
20948             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
20949         }
20950         */
20951     },
20952     cmdhexchar : function(cmd) {
20953         this.hexStore.push(cmd);
20954     },
20955     cmderror : function(cmd) {
20956         throw cmd.value;
20957     },
20958     
20959     /*
20960       _flush (done) {
20961         if (this.text !== '\u0000') this.emitText()
20962         done()
20963       }
20964       */
20965       
20966       
20967     parseText : function(c)
20968     {
20969         if (c === '\\') {
20970             this.parserState = this.parseEscapes;
20971         } else if (c === '{') {
20972             this.emitStartGroup();
20973         } else if (c === '}') {
20974             this.emitEndGroup();
20975         } else if (c === '\x0A' || c === '\x0D') {
20976             // cr/lf are noise chars
20977         } else {
20978             this.text += c;
20979         }
20980     },
20981     
20982     parseEscapes: function (c)
20983     {
20984         if (c === '\\' || c === '{' || c === '}') {
20985             this.text += c;
20986             this.parserState = this.parseText;
20987         } else {
20988             this.parserState = this.parseControlSymbol;
20989             this.parseControlSymbol(c);
20990         }
20991     },
20992     parseControlSymbol: function(c)
20993     {
20994         if (c === '~') {
20995             this.text += '\u00a0'; // nbsp
20996             this.parserState = this.parseText
20997         } else if (c === '-') {
20998              this.text += '\u00ad'; // soft hyphen
20999         } else if (c === '_') {
21000             this.text += '\u2011'; // non-breaking hyphen
21001         } else if (c === '*') {
21002             this.emitIgnorable();
21003             this.parserState = this.parseText;
21004         } else if (c === "'") {
21005             this.parserState = this.parseHexChar;
21006         } else if (c === '|') { // formula cacter
21007             this.emitFormula();
21008             this.parserState = this.parseText;
21009         } else if (c === ':') { // subentry in an index entry
21010             this.emitIndexSubEntry();
21011             this.parserState = this.parseText;
21012         } else if (c === '\x0a') {
21013             this.emitEndParagraph();
21014             this.parserState = this.parseText;
21015         } else if (c === '\x0d') {
21016             this.emitEndParagraph();
21017             this.parserState = this.parseText;
21018         } else {
21019             this.parserState = this.parseControlWord;
21020             this.parseControlWord(c);
21021         }
21022     },
21023     parseHexChar: function (c)
21024     {
21025         if (/^[A-Fa-f0-9]$/.test(c)) {
21026             this.hexChar += c;
21027             if (this.hexChar.length >= 2) {
21028               this.emitHexChar();
21029               this.parserState = this.parseText;
21030             }
21031             return;
21032         }
21033         this.emitError("Invalid character \"" + c + "\" in hex literal.");
21034         this.parserState = this.parseText;
21035         
21036     },
21037     parseControlWord : function(c)
21038     {
21039         if (c === ' ') {
21040             this.emitControlWord();
21041             this.parserState = this.parseText;
21042         } else if (/^[-\d]$/.test(c)) {
21043             this.parserState = this.parseControlWordParam;
21044             this.controlWordParam += c;
21045         } else if (/^[A-Za-z]$/.test(c)) {
21046           this.controlWord += c;
21047         } else {
21048           this.emitControlWord();
21049           this.parserState = this.parseText;
21050           this.parseText(c);
21051         }
21052     },
21053     parseControlWordParam : function (c) {
21054         if (/^\d$/.test(c)) {
21055           this.controlWordParam += c;
21056         } else if (c === ' ') {
21057           this.emitControlWord();
21058           this.parserState = this.parseText;
21059         } else {
21060           this.emitControlWord();
21061           this.parserState = this.parseText;
21062           this.parseText(c);
21063         }
21064     },
21065     
21066     
21067     
21068     
21069     emitText : function () {
21070         if (this.text === '') {
21071             return;
21072         }
21073         this.push({
21074             type: 'text',
21075             value: this.text,
21076             pos: this.cpos,
21077             row: this.row,
21078             col: this.col
21079         });
21080         this.text = ''
21081     },
21082     emitControlWord : function ()
21083     {
21084         this.emitText();
21085         if (this.controlWord === '') {
21086             // do we want to track this - it seems just to cause problems.
21087             //this.emitError('empty control word');
21088         } else {
21089             this.push({
21090                   type: 'controlword',
21091                   value: this.controlWord,
21092                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
21093                   pos: this.cpos,
21094                   row: this.row,
21095                   col: this.col
21096             });
21097         }
21098         this.controlWord = '';
21099         this.controlWordParam = '';
21100     },
21101     emitStartGroup : function ()
21102     {
21103         this.emitText();
21104         this.push({
21105             type: 'groupstart',
21106             pos: this.cpos,
21107             row: this.row,
21108             col: this.col
21109         });
21110     },
21111     emitEndGroup : function ()
21112     {
21113         this.emitText();
21114         this.push({
21115             type: 'groupend',
21116             pos: this.cpos,
21117             row: this.row,
21118             col: this.col
21119         });
21120     },
21121     emitIgnorable : function ()
21122     {
21123         this.emitText();
21124         this.push({
21125             type: 'ignorable',
21126             pos: this.cpos,
21127             row: this.row,
21128             col: this.col
21129         });
21130     },
21131     emitHexChar : function ()
21132     {
21133         this.emitText();
21134         this.push({
21135             type: 'hexchar',
21136             value: this.hexChar,
21137             pos: this.cpos,
21138             row: this.row,
21139             col: this.col
21140         });
21141         this.hexChar = ''
21142     },
21143     emitError : function (message)
21144     {
21145       this.emitText();
21146       this.push({
21147             type: 'error',
21148             value: message,
21149             row: this.row,
21150             col: this.col,
21151             char: this.cpos //,
21152             //stack: new Error().stack
21153         });
21154     },
21155     emitEndParagraph : function () {
21156         this.emitText();
21157         this.push({
21158             type: 'endparagraph',
21159             pos: this.cpos,
21160             row: this.row,
21161             col: this.col
21162         });
21163     }
21164      
21165 } ;
21166 Roo.htmleditor = {};
21167  
21168 /**
21169  * @class Roo.htmleditor.Filter
21170  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
21171  * @cfg {DomElement} node The node to iterate and filter
21172  * @cfg {boolean|String|Array} tag Tags to replace 
21173  * @constructor
21174  * Create a new Filter.
21175  * @param {Object} config Configuration options
21176  */
21177
21178
21179
21180 Roo.htmleditor.Filter = function(cfg) {
21181     Roo.apply(this.cfg);
21182     // this does not actually call walk as it's really just a abstract class
21183 }
21184
21185
21186 Roo.htmleditor.Filter.prototype = {
21187     
21188     node: false,
21189     
21190     tag: false,
21191
21192     // overrride to do replace comments.
21193     replaceComment : false,
21194     
21195     // overrride to do replace or do stuff with tags..
21196     replaceTag : false,
21197     
21198     walk : function(dom)
21199     {
21200         Roo.each( Array.from(dom.childNodes), function( e ) {
21201             switch(true) {
21202                 
21203                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
21204                     this.replaceComment(e);
21205                     return;
21206                 
21207                 case e.nodeType != 1: //not a node.
21208                     return;
21209                 
21210                 case this.tag === true: // everything
21211                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1:
21212                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":":
21213                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
21214                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
21215                     if (this.replaceTag && false === this.replaceTag(e)) {
21216                         return;
21217                     }
21218                     if (e.hasChildNodes()) {
21219                         this.walk(e);
21220                     }
21221                     return;
21222                 
21223                 default:    // tags .. that do not match.
21224                     if (e.hasChildNodes()) {
21225                         this.walk(e);
21226                     }
21227             }
21228             
21229         }, this);
21230         
21231     },
21232     
21233     
21234     removeNodeKeepChildren : function( node)
21235     {
21236     
21237         ar = Array.from(node.childNodes);
21238         for (var i = 0; i < ar.length; i++) {
21239          
21240             node.removeChild(ar[i]);
21241             // what if we need to walk these???
21242             node.parentNode.insertBefore(ar[i], node);
21243            
21244         }
21245         node.parentNode.removeChild(node);
21246     }
21247 }; 
21248
21249 /**
21250  * @class Roo.htmleditor.FilterAttributes
21251  * clean attributes and  styles including http:// etc.. in attribute
21252  * @constructor
21253 * Run a new Attribute Filter
21254 * @param {Object} config Configuration options
21255  */
21256 Roo.htmleditor.FilterAttributes = function(cfg)
21257 {
21258     Roo.apply(this, cfg);
21259     this.attrib_black = this.attrib_black || [];
21260     this.attrib_white = this.attrib_white || [];
21261
21262     this.attrib_clean = this.attrib_clean || [];
21263     this.style_white = this.style_white || [];
21264     this.style_black = this.style_black || [];
21265     this.walk(cfg.node);
21266 }
21267
21268 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
21269 {
21270     tag: true, // all tags
21271     
21272     attrib_black : false, // array
21273     attrib_clean : false,
21274     attrib_white : false,
21275
21276     style_white : false,
21277     style_black : false,
21278      
21279      
21280     replaceTag : function(node)
21281     {
21282         if (!node.attributes || !node.attributes.length) {
21283             return true;
21284         }
21285         
21286         for (var i = node.attributes.length-1; i > -1 ; i--) {
21287             var a = node.attributes[i];
21288             //console.log(a);
21289             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
21290                 node.removeAttribute(a.name);
21291                 continue;
21292             }
21293             
21294             
21295             
21296             if (a.name.toLowerCase().substr(0,2)=='on')  {
21297                 node.removeAttribute(a.name);
21298                 continue;
21299             }
21300             
21301             
21302             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
21303                 node.removeAttribute(a.name);
21304                 continue;
21305             }
21306             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
21307                 this.cleanAttr(node,a.name,a.value); // fixme..
21308                 continue;
21309             }
21310             if (a.name == 'style') {
21311                 this.cleanStyle(node,a.name,a.value);
21312                 continue;
21313             }
21314             /// clean up MS crap..
21315             // tecnically this should be a list of valid class'es..
21316             
21317             
21318             if (a.name == 'class') {
21319                 if (a.value.match(/^Mso/)) {
21320                     node.removeAttribute('class');
21321                 }
21322                 
21323                 if (a.value.match(/^body$/)) {
21324                     node.removeAttribute('class');
21325                 }
21326                 continue;
21327             }
21328             
21329             
21330             // style cleanup!?
21331             // class cleanup?
21332             
21333         }
21334         return true; // clean children
21335     },
21336         
21337     cleanAttr: function(node, n,v)
21338     {
21339         
21340         if (v.match(/^\./) || v.match(/^\//)) {
21341             return;
21342         }
21343         if (v.match(/^(http|https):\/\//)
21344             || v.match(/^mailto:/) 
21345             || v.match(/^ftp:/)
21346             || v.match(/^data:/)
21347             ) {
21348             return;
21349         }
21350         if (v.match(/^#/)) {
21351             return;
21352         }
21353         if (v.match(/^\{/)) { // allow template editing.
21354             return;
21355         }
21356 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
21357         node.removeAttribute(n);
21358         
21359     },
21360     cleanStyle : function(node,  n,v)
21361     {
21362         if (v.match(/expression/)) { //XSS?? should we even bother..
21363             node.removeAttribute(n);
21364             return;
21365         }
21366         
21367         var parts = v.split(/;/);
21368         var clean = [];
21369         
21370         Roo.each(parts, function(p) {
21371             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
21372             if (!p.length) {
21373                 return true;
21374             }
21375             var l = p.split(':').shift().replace(/\s+/g,'');
21376             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
21377             
21378             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
21379                 return true;
21380             }
21381             //Roo.log()
21382             // only allow 'c whitelisted system attributes'
21383             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
21384                 return true;
21385             }
21386             
21387             
21388             clean.push(p);
21389             return true;
21390         },this);
21391         if (clean.length) { 
21392             node.setAttribute(n, clean.join(';'));
21393         } else {
21394             node.removeAttribute(n);
21395         }
21396         
21397     }
21398         
21399         
21400         
21401     
21402 });/**
21403  * @class Roo.htmleditor.FilterBlack
21404  * remove blacklisted elements.
21405  * @constructor
21406  * Run a new Blacklisted Filter
21407  * @param {Object} config Configuration options
21408  */
21409
21410 Roo.htmleditor.FilterBlack = function(cfg)
21411 {
21412     Roo.apply(this, cfg);
21413     this.walk(cfg.node);
21414 }
21415
21416 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
21417 {
21418     tag : true, // all elements.
21419    
21420     replaceTag : function(n)
21421     {
21422         n.parentNode.removeChild(n);
21423     }
21424 });
21425 /**
21426  * @class Roo.htmleditor.FilterComment
21427  * remove comments.
21428  * @constructor
21429 * Run a new Comments Filter
21430 * @param {Object} config Configuration options
21431  */
21432 Roo.htmleditor.FilterComment = function(cfg)
21433 {
21434     this.walk(cfg.node);
21435 }
21436
21437 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
21438 {
21439   
21440     replaceComment : function(n)
21441     {
21442         n.parentNode.removeChild(n);
21443     }
21444 });/**
21445  * @class Roo.htmleditor.FilterKeepChildren
21446  * remove tags but keep children
21447  * @constructor
21448  * Run a new Keep Children Filter
21449  * @param {Object} config Configuration options
21450  */
21451
21452 Roo.htmleditor.FilterKeepChildren = function(cfg)
21453 {
21454     Roo.apply(this, cfg);
21455     if (this.tag === false) {
21456         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
21457     }
21458     // hacky?
21459     if ((typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)) {
21460         this.cleanNamespace = true;
21461     }
21462         
21463     this.walk(cfg.node);
21464 }
21465
21466 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
21467 {
21468     cleanNamespace : false, // should really be an option, rather than using ':' inside of this tag.
21469   
21470     replaceTag : function(node)
21471     {
21472         // walk children...
21473         //Roo.log(node.tagName);
21474         var ar = Array.from(node.childNodes);
21475         //remove first..
21476         
21477         for (var i = 0; i < ar.length; i++) {
21478             var e = ar[i];
21479             if (e.nodeType == 1) {
21480                 if (
21481                     (typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1)
21482                     || // array and it matches
21483                     (typeof(this.tag) == 'string' && this.tag == e.tagName)
21484                     ||
21485                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)
21486                     ||
21487                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":")
21488                 ) {
21489                     this.replaceTag(ar[i]); // child is blacklisted as well...
21490                     continue;
21491                 }
21492             }
21493         }  
21494         ar = Array.from(node.childNodes);
21495         for (var i = 0; i < ar.length; i++) {
21496          
21497             node.removeChild(ar[i]);
21498             // what if we need to walk these???
21499             node.parentNode.insertBefore(ar[i], node);
21500             if (this.tag !== false) {
21501                 this.walk(ar[i]);
21502                 
21503             }
21504         }
21505         //Roo.log("REMOVE:" + node.tagName);
21506         node.parentNode.removeChild(node);
21507         return false; // don't walk children
21508         
21509         
21510     }
21511 });/**
21512  * @class Roo.htmleditor.FilterParagraph
21513  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
21514  * like on 'push' to remove the <p> tags and replace them with line breaks.
21515  * @constructor
21516  * Run a new Paragraph Filter
21517  * @param {Object} config Configuration options
21518  */
21519
21520 Roo.htmleditor.FilterParagraph = function(cfg)
21521 {
21522     // no need to apply config.
21523     this.walk(cfg.node);
21524 }
21525
21526 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
21527 {
21528     
21529      
21530     tag : 'P',
21531     
21532      
21533     replaceTag : function(node)
21534     {
21535         
21536         if (node.childNodes.length == 1 &&
21537             node.childNodes[0].nodeType == 3 &&
21538             node.childNodes[0].textContent.trim().length < 1
21539             ) {
21540             // remove and replace with '<BR>';
21541             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
21542             return false; // no need to walk..
21543         }
21544         var ar = Array.from(node.childNodes);
21545         for (var i = 0; i < ar.length; i++) {
21546             node.removeChild(ar[i]);
21547             // what if we need to walk these???
21548             node.parentNode.insertBefore(ar[i], node);
21549         }
21550         // now what about this?
21551         // <p> &nbsp; </p>
21552         
21553         // double BR.
21554         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
21555         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
21556         node.parentNode.removeChild(node);
21557         
21558         return false;
21559
21560     }
21561     
21562 });/**
21563  * @class Roo.htmleditor.FilterSpan
21564  * filter span's with no attributes out..
21565  * @constructor
21566  * Run a new Span Filter
21567  * @param {Object} config Configuration options
21568  */
21569
21570 Roo.htmleditor.FilterSpan = function(cfg)
21571 {
21572     // no need to apply config.
21573     this.walk(cfg.node);
21574 }
21575
21576 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
21577 {
21578      
21579     tag : 'SPAN',
21580      
21581  
21582     replaceTag : function(node)
21583     {
21584         if (node.attributes && node.attributes.length > 0) {
21585             return true; // walk if there are any.
21586         }
21587         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
21588         return false;
21589      
21590     }
21591     
21592 });/**
21593  * @class Roo.htmleditor.FilterTableWidth
21594   try and remove table width data - as that frequently messes up other stuff.
21595  * 
21596  *      was cleanTableWidths.
21597  *
21598  * Quite often pasting from word etc.. results in tables with column and widths.
21599  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
21600  *
21601  * @constructor
21602  * Run a new Table Filter
21603  * @param {Object} config Configuration options
21604  */
21605
21606 Roo.htmleditor.FilterTableWidth = function(cfg)
21607 {
21608     // no need to apply config.
21609     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
21610     this.walk(cfg.node);
21611 }
21612
21613 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
21614 {
21615      
21616      
21617     
21618     replaceTag: function(node) {
21619         
21620         
21621       
21622         if (node.hasAttribute('width')) {
21623             node.removeAttribute('width');
21624         }
21625         
21626          
21627         if (node.hasAttribute("style")) {
21628             // pretty basic...
21629             
21630             var styles = node.getAttribute("style").split(";");
21631             var nstyle = [];
21632             Roo.each(styles, function(s) {
21633                 if (!s.match(/:/)) {
21634                     return;
21635                 }
21636                 var kv = s.split(":");
21637                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
21638                     return;
21639                 }
21640                 // what ever is left... we allow.
21641                 nstyle.push(s);
21642             });
21643             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
21644             if (!nstyle.length) {
21645                 node.removeAttribute('style');
21646             }
21647         }
21648         
21649         return true; // continue doing children..
21650     }
21651 });/**
21652  * @class Roo.htmleditor.FilterWord
21653  * try and clean up all the mess that Word generates.
21654  * 
21655  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
21656  
21657  * @constructor
21658  * Run a new Span Filter
21659  * @param {Object} config Configuration options
21660  */
21661
21662 Roo.htmleditor.FilterWord = function(cfg)
21663 {
21664     // no need to apply config.
21665     this.replaceDocBullets(cfg.node);
21666     
21667     this.replaceAname(cfg.node);
21668     // this is disabled as the removal is done by other filters;
21669    // this.walk(cfg.node);
21670     this.replaceImageTable(cfg.node);
21671     
21672 }
21673
21674 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
21675 {
21676     tag: true,
21677      
21678     
21679     /**
21680      * Clean up MS wordisms...
21681      */
21682     replaceTag : function(node)
21683     {
21684          
21685         // no idea what this does - span with text, replaceds with just text.
21686         if(
21687                 node.nodeName == 'SPAN' &&
21688                 !node.hasAttributes() &&
21689                 node.childNodes.length == 1 &&
21690                 node.firstChild.nodeName == "#text"  
21691         ) {
21692             var textNode = node.firstChild;
21693             node.removeChild(textNode);
21694             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
21695                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
21696             }
21697             node.parentNode.insertBefore(textNode, node);
21698             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
21699                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
21700             }
21701             
21702             node.parentNode.removeChild(node);
21703             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
21704         }
21705         
21706    
21707         
21708         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
21709             node.parentNode.removeChild(node);
21710             return false; // dont do chidlren
21711         }
21712         //Roo.log(node.tagName);
21713         // remove - but keep children..
21714         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
21715             //Roo.log('-- removed');
21716             while (node.childNodes.length) {
21717                 var cn = node.childNodes[0];
21718                 node.removeChild(cn);
21719                 node.parentNode.insertBefore(cn, node);
21720                 // move node to parent - and clean it..
21721                 if (cn.nodeType == 1) {
21722                     this.replaceTag(cn);
21723                 }
21724                 
21725             }
21726             node.parentNode.removeChild(node);
21727             /// no need to iterate chidlren = it's got none..
21728             //this.iterateChildren(node, this.cleanWord);
21729             return false; // no need to iterate children.
21730         }
21731         // clean styles
21732         if (node.className.length) {
21733             
21734             var cn = node.className.split(/\W+/);
21735             var cna = [];
21736             Roo.each(cn, function(cls) {
21737                 if (cls.match(/Mso[a-zA-Z]+/)) {
21738                     return;
21739                 }
21740                 cna.push(cls);
21741             });
21742             node.className = cna.length ? cna.join(' ') : '';
21743             if (!cna.length) {
21744                 node.removeAttribute("class");
21745             }
21746         }
21747         
21748         if (node.hasAttribute("lang")) {
21749             node.removeAttribute("lang");
21750         }
21751         
21752         if (node.hasAttribute("style")) {
21753             
21754             var styles = node.getAttribute("style").split(";");
21755             var nstyle = [];
21756             Roo.each(styles, function(s) {
21757                 if (!s.match(/:/)) {
21758                     return;
21759                 }
21760                 var kv = s.split(":");
21761                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
21762                     return;
21763                 }
21764                 // what ever is left... we allow.
21765                 nstyle.push(s);
21766             });
21767             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
21768             if (!nstyle.length) {
21769                 node.removeAttribute('style');
21770             }
21771         }
21772         return true; // do children
21773         
21774         
21775         
21776     },
21777     
21778     styleToObject: function(node)
21779     {
21780         var styles = (node.getAttribute("style") || '').split(";");
21781         var ret = {};
21782         Roo.each(styles, function(s) {
21783             if (!s.match(/:/)) {
21784                 return;
21785             }
21786             var kv = s.split(":");
21787              
21788             // what ever is left... we allow.
21789             ret[kv[0].trim()] = kv[1];
21790         });
21791         return ret;
21792     },
21793     
21794     
21795     replaceAname : function (doc)
21796     {
21797         // replace all the a/name without..
21798         var aa = Array.from(doc.getElementsByTagName('a'));
21799         for (var i = 0; i  < aa.length; i++) {
21800             var a = aa[i];
21801             if (a.hasAttribute("name")) {
21802                 a.removeAttribute("name");
21803             }
21804             if (a.hasAttribute("href")) {
21805                 continue;
21806             }
21807             // reparent children.
21808             this.removeNodeKeepChildren(a);
21809             
21810         }
21811         
21812         
21813         
21814     },
21815
21816     
21817     
21818     replaceDocBullets : function(doc)
21819     {
21820         // this is a bit odd - but it appears some indents use ql-indent-1
21821          //Roo.log(doc.innerHTML);
21822         
21823         var listpara = Array.from(doc.getElementsByClassName('MsoListParagraphCxSpFirst'));
21824         for( var i = 0; i < listpara.length; i ++) {
21825             listpara[i].className = "MsoListParagraph";
21826         }
21827         
21828         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpMiddle'));
21829         for( var i = 0; i < listpara.length; i ++) {
21830             listpara[i].className = "MsoListParagraph";
21831         }
21832         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpLast'));
21833         for( var i = 0; i < listpara.length; i ++) {
21834             listpara[i].className = "MsoListParagraph";
21835         }
21836         listpara =  Array.from(doc.getElementsByClassName('ql-indent-1'));
21837         for( var i = 0; i < listpara.length; i ++) {
21838             listpara[i].className = "MsoListParagraph";
21839         }
21840         
21841         // this is a bit hacky - we had one word document where h2 had a miso-list attribute.
21842         var htwo =  Array.from(doc.getElementsByTagName('h2'));
21843         for( var i = 0; i < htwo.length; i ++) {
21844             if (htwo[i].hasAttribute('style') && htwo[i].getAttribute('style').match(/mso-list:/)) {
21845                 htwo[i].className = "MsoListParagraph";
21846             }
21847         }
21848         listpara =  Array.from(doc.getElementsByClassName('MsoNormal'));
21849         for( var i = 0; i < listpara.length; i ++) {
21850             if (listpara[i].hasAttribute('style') && listpara[i].getAttribute('style').match(/mso-list:/)) {
21851                 listpara[i].className = "MsoListParagraph";
21852             } else {
21853                 listpara[i].className = "MsoNormalx";
21854             }
21855         }
21856        
21857         listpara = doc.getElementsByClassName('MsoListParagraph');
21858         // Roo.log(doc.innerHTML);
21859         
21860         
21861         
21862         while(listpara.length) {
21863             
21864             this.replaceDocBullet(listpara.item(0));
21865         }
21866       
21867     },
21868     
21869      
21870     
21871     replaceDocBullet : function(p)
21872     {
21873         // gather all the siblings.
21874         var ns = p,
21875             parent = p.parentNode,
21876             doc = parent.ownerDocument,
21877             items = [];
21878          
21879         //Roo.log("Parsing: " + p.innerText)    ;
21880         var listtype = 'ul';   
21881         while (ns) {
21882             if (ns.nodeType != 1) {
21883                 ns = ns.nextSibling;
21884                 continue;
21885             }
21886             if (!ns.className.match(/(MsoListParagraph|ql-indent-1)/i)) {
21887                 //Roo.log("Missing para r q1indent - got:" + ns.className);
21888                 break;
21889             }
21890             var spans = ns.getElementsByTagName('span');
21891             
21892             if (ns.hasAttribute('style') && ns.getAttribute('style').match(/mso-list/)) {
21893                 items.push(ns);
21894                 ns = ns.nextSibling;
21895                 has_list = true;
21896                 if (!spans.length) {
21897                     continue;
21898                 }
21899                 var ff = '';
21900                 var se = spans[0];
21901                 for (var i = 0; i < spans.length;i++) {
21902                     se = spans[i];
21903                     if (se.hasAttribute('style')  && se.hasAttribute('style') && se.style.fontFamily != '') {
21904                         ff = se.style.fontFamily;
21905                         break;
21906                     }
21907                 }
21908                  
21909                     
21910                 //Roo.log("got font family: " + ff);
21911                 if (typeof(ff) != 'undefined' && !ff.match(/(Symbol|Wingdings)/) && "·o".indexOf(se.innerText.trim()) < 0) {
21912                     listtype = 'ol';
21913                 }
21914                 
21915                 continue;
21916             }
21917             //Roo.log("no mso-list?");
21918             
21919             var spans = ns.getElementsByTagName('span');
21920             if (!spans.length) {
21921                 break;
21922             }
21923             var has_list  = false;
21924             for(var i = 0; i < spans.length; i++) {
21925                 if (spans[i].hasAttribute('style') && spans[i].getAttribute('style').match(/mso-list/)) {
21926                     has_list = true;
21927                     break;
21928                 }
21929             }
21930             if (!has_list) {
21931                 break;
21932             }
21933             items.push(ns);
21934             ns = ns.nextSibling;
21935             
21936             
21937         }
21938         if (!items.length) {
21939             ns.className = "";
21940             return;
21941         }
21942         
21943         var ul = parent.ownerDocument.createElement(listtype); // what about number lists...
21944         parent.insertBefore(ul, p);
21945         var lvl = 0;
21946         var stack = [ ul ];
21947         var last_li = false;
21948         
21949         var margin_to_depth = {};
21950         max_margins = -1;
21951         
21952         items.forEach(function(n, ipos) {
21953             //Roo.log("got innertHMLT=" + n.innerHTML);
21954             
21955             var spans = n.getElementsByTagName('span');
21956             if (!spans.length) {
21957                 //Roo.log("No spans found");
21958                  
21959                 parent.removeChild(n);
21960                 
21961                 
21962                 return; // skip it...
21963             }
21964            
21965                 
21966             var num = 1;
21967             var style = {};
21968             for(var i = 0; i < spans.length; i++) {
21969             
21970                 style = this.styleToObject(spans[i]);
21971                 if (typeof(style['mso-list']) == 'undefined') {
21972                     continue;
21973                 }
21974                 if (listtype == 'ol') {
21975                    num = spans[i].innerText.replace(/[^0-9]+]/g,'')  * 1;
21976                 }
21977                 spans[i].parentNode.removeChild(spans[i]); // remove the fake bullet.
21978                 break;
21979             }
21980             //Roo.log("NOW GOT innertHMLT=" + n.innerHTML);
21981             style = this.styleToObject(n); // mo-list is from the parent node.
21982             if (typeof(style['mso-list']) == 'undefined') {
21983                 //Roo.log("parent is missing level");
21984                   
21985                 parent.removeChild(n);
21986                  
21987                 return;
21988             }
21989             
21990             var margin = style['margin-left'];
21991             if (typeof(margin_to_depth[margin]) == 'undefined') {
21992                 max_margins++;
21993                 margin_to_depth[margin] = max_margins;
21994             }
21995             nlvl = margin_to_depth[margin] ;
21996              
21997             if (nlvl > lvl) {
21998                 //new indent
21999                 var nul = doc.createElement(listtype); // what about number lists...
22000                 if (!last_li) {
22001                     last_li = doc.createElement('li');
22002                     stack[lvl].appendChild(last_li);
22003                 }
22004                 last_li.appendChild(nul);
22005                 stack[nlvl] = nul;
22006                 
22007             }
22008             lvl = nlvl;
22009             
22010             // not starting at 1..
22011             if (!stack[nlvl].hasAttribute("start") && listtype == "ol") {
22012                 stack[nlvl].setAttribute("start", num);
22013             }
22014             
22015             var nli = stack[nlvl].appendChild(doc.createElement('li'));
22016             last_li = nli;
22017             nli.innerHTML = n.innerHTML;
22018             //Roo.log("innerHTML = " + n.innerHTML);
22019             parent.removeChild(n);
22020             
22021              
22022              
22023             
22024         },this);
22025         
22026         
22027         
22028         
22029     },
22030     
22031     replaceImageTable : function(doc)
22032     {
22033          /*
22034           <table cellpadding=0 cellspacing=0 align=left>
22035   <tr>
22036    <td width=423 height=0></td>
22037   </tr>
22038   <tr>
22039    <td></td>
22040    <td><img width=601 height=401
22041    src="file:///C:/Users/Alan/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg"
22042    v:shapes="Picture_x0020_2"></td>
22043   </tr>
22044  </table>
22045  */
22046         var imgs = Array.from(doc.getElementsByTagName('img'));
22047         Roo.each(imgs, function(img) {
22048             var td = img.parentNode;
22049             if (td.nodeName !=  'TD') {
22050                 return;
22051             }
22052             var tr = td.parentNode;
22053             if (tr.nodeName !=  'TR') {
22054                 return;
22055             }
22056             var tbody = tr.parentNode;
22057             if (tbody.nodeName !=  'TBODY') {
22058                 return;
22059             }
22060             var table = tbody.parentNode;
22061             if (table.nodeName !=  'TABLE') {
22062                 return;
22063             }
22064             // first row..
22065             
22066             if (table.getElementsByTagName('tr').length != 2) {
22067                 return;
22068             }
22069             if (table.getElementsByTagName('td').length != 3) {
22070                 return;
22071             }
22072             if (table.innerText.trim() != '') {
22073                 return;
22074             }
22075             var p = table.parentNode;
22076             img.parentNode.removeChild(img);
22077             p.insertBefore(img, table);
22078             p.removeChild(table);
22079             
22080             
22081             
22082         });
22083         
22084       
22085     }
22086     
22087 });
22088 /**
22089  * @class Roo.htmleditor.FilterStyleToTag
22090  * part of the word stuff... - certain 'styles' should be converted to tags.
22091  * eg.
22092  *   font-weight: bold -> bold
22093  *   ?? super / subscrit etc..
22094  * 
22095  * @constructor
22096 * Run a new style to tag filter.
22097 * @param {Object} config Configuration options
22098  */
22099 Roo.htmleditor.FilterStyleToTag = function(cfg)
22100 {
22101     
22102     this.tags = {
22103         B  : [ 'fontWeight' , 'bold'],
22104         I :  [ 'fontStyle' , 'italic'],
22105         //pre :  [ 'font-style' , 'italic'],
22106         // h1.. h6 ?? font-size?
22107         SUP : [ 'verticalAlign' , 'super' ],
22108         SUB : [ 'verticalAlign' , 'sub' ]
22109         
22110         
22111     };
22112     
22113     Roo.apply(this, cfg);
22114      
22115     
22116     this.walk(cfg.node);
22117     
22118     
22119     
22120 }
22121
22122
22123 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
22124 {
22125     tag: true, // all tags
22126     
22127     tags : false,
22128     
22129     
22130     replaceTag : function(node)
22131     {
22132         
22133         
22134         if (node.getAttribute("style") === null) {
22135             return true;
22136         }
22137         var inject = [];
22138         for (var k in this.tags) {
22139             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
22140                 inject.push(k);
22141                 node.style.removeProperty(this.tags[k][0]);
22142             }
22143         }
22144         if (!inject.length) {
22145             return true; 
22146         }
22147         var cn = Array.from(node.childNodes);
22148         var nn = node;
22149         Roo.each(inject, function(t) {
22150             var nc = node.ownerDocument.createElement(t);
22151             nn.appendChild(nc);
22152             nn = nc;
22153         });
22154         for(var i = 0;i < cn.length;cn++) {
22155             node.removeChild(cn[i]);
22156             nn.appendChild(cn[i]);
22157         }
22158         return true /// iterate thru
22159     }
22160     
22161 })/**
22162  * @class Roo.htmleditor.FilterLongBr
22163  * BR/BR/BR - keep a maximum of 2...
22164  * @constructor
22165  * Run a new Long BR Filter
22166  * @param {Object} config Configuration options
22167  */
22168
22169 Roo.htmleditor.FilterLongBr = function(cfg)
22170 {
22171     // no need to apply config.
22172     this.walk(cfg.node);
22173 }
22174
22175 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
22176 {
22177     
22178      
22179     tag : 'BR',
22180     
22181      
22182     replaceTag : function(node)
22183     {
22184         
22185         var ps = node.nextSibling;
22186         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
22187             ps = ps.nextSibling;
22188         }
22189         
22190         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
22191             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
22192             return false;
22193         }
22194         
22195         if (!ps || ps.nodeType != 1) {
22196             return false;
22197         }
22198         
22199         if (!ps || ps.tagName != 'BR') {
22200            
22201             return false;
22202         }
22203         
22204         
22205         
22206         
22207         
22208         if (!node.previousSibling) {
22209             return false;
22210         }
22211         var ps = node.previousSibling;
22212         
22213         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
22214             ps = ps.previousSibling;
22215         }
22216         if (!ps || ps.nodeType != 1) {
22217             return false;
22218         }
22219         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
22220         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
22221             return false;
22222         }
22223         
22224         node.parentNode.removeChild(node); // remove me...
22225         
22226         return false; // no need to do children
22227
22228     }
22229     
22230 }); 
22231
22232 /**
22233  * @class Roo.htmleditor.FilterBlock
22234  * removes id / data-block and contenteditable that are associated with blocks
22235  * usage should be done on a cloned copy of the dom
22236  * @constructor
22237 * Run a new Attribute Filter { node : xxxx }}
22238 * @param {Object} config Configuration options
22239  */
22240 Roo.htmleditor.FilterBlock = function(cfg)
22241 {
22242     Roo.apply(this, cfg);
22243     var qa = cfg.node.querySelectorAll;
22244     this.removeAttributes('data-block');
22245     this.removeAttributes('contenteditable');
22246     this.removeAttributes('id');
22247     
22248 }
22249
22250 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
22251 {
22252     node: true, // all tags
22253      
22254      
22255     removeAttributes : function(attr)
22256     {
22257         var ar = this.node.querySelectorAll('*[' + attr + ']');
22258         for (var i =0;i<ar.length;i++) {
22259             ar[i].removeAttribute(attr);
22260         }
22261     }
22262         
22263         
22264         
22265     
22266 });
22267 /***
22268  * This is based loosely on tinymce 
22269  * @class Roo.htmleditor.TidySerializer
22270  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
22271  * @constructor
22272  * @method Serializer
22273  * @param {Object} settings Name/value settings object.
22274  */
22275
22276
22277 Roo.htmleditor.TidySerializer = function(settings)
22278 {
22279     Roo.apply(this, settings);
22280     
22281     this.writer = new Roo.htmleditor.TidyWriter(settings);
22282     
22283     
22284
22285 };
22286 Roo.htmleditor.TidySerializer.prototype = {
22287     
22288     /**
22289      * @param {boolean} inner do the inner of the node.
22290      */
22291     inner : false,
22292     
22293     writer : false,
22294     
22295     /**
22296     * Serializes the specified node into a string.
22297     *
22298     * @example
22299     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
22300     * @method serialize
22301     * @param {DomElement} node Node instance to serialize.
22302     * @return {String} String with HTML based on DOM tree.
22303     */
22304     serialize : function(node) {
22305         
22306         // = settings.validate;
22307         var writer = this.writer;
22308         var self  = this;
22309         this.handlers = {
22310             // #text
22311             3: function(node) {
22312                 
22313                 writer.text(node.nodeValue, node);
22314             },
22315             // #comment
22316             8: function(node) {
22317                 writer.comment(node.nodeValue);
22318             },
22319             // Processing instruction
22320             7: function(node) {
22321                 writer.pi(node.name, node.nodeValue);
22322             },
22323             // Doctype
22324             10: function(node) {
22325                 writer.doctype(node.nodeValue);
22326             },
22327             // CDATA
22328             4: function(node) {
22329                 writer.cdata(node.nodeValue);
22330             },
22331             // Document fragment
22332             11: function(node) {
22333                 node = node.firstChild;
22334                 if (!node) {
22335                     return;
22336                 }
22337                 while(node) {
22338                     self.walk(node);
22339                     node = node.nextSibling
22340                 }
22341             }
22342         };
22343         writer.reset();
22344         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
22345         return writer.getContent();
22346     },
22347
22348     walk: function(node)
22349     {
22350         var attrName, attrValue, sortedAttrs, i, l, elementRule,
22351             handler = this.handlers[node.nodeType];
22352             
22353         if (handler) {
22354             handler(node);
22355             return;
22356         }
22357     
22358         var name = node.nodeName;
22359         var isEmpty = node.childNodes.length < 1;
22360       
22361         var writer = this.writer;
22362         var attrs = node.attributes;
22363         // Sort attributes
22364         
22365         writer.start(node.nodeName, attrs, isEmpty, node);
22366         if (isEmpty) {
22367             return;
22368         }
22369         node = node.firstChild;
22370         if (!node) {
22371             writer.end(name);
22372             return;
22373         }
22374         while (node) {
22375             this.walk(node);
22376             node = node.nextSibling;
22377         }
22378         writer.end(name);
22379         
22380     
22381     }
22382     // Serialize element and treat all non elements as fragments
22383    
22384 }; 
22385
22386 /***
22387  * This is based loosely on tinymce 
22388  * @class Roo.htmleditor.TidyWriter
22389  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
22390  *
22391  * Known issues?
22392  * - not tested much with 'PRE' formated elements.
22393  * 
22394  *
22395  *
22396  */
22397
22398 Roo.htmleditor.TidyWriter = function(settings)
22399 {
22400     
22401     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
22402     Roo.apply(this, settings);
22403     this.html = [];
22404     this.state = [];
22405      
22406     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
22407   
22408 }
22409 Roo.htmleditor.TidyWriter.prototype = {
22410
22411  
22412     state : false,
22413     
22414     indent :  '  ',
22415     
22416     // part of state...
22417     indentstr : '',
22418     in_pre: false,
22419     in_inline : false,
22420     last_inline : false,
22421     encode : false,
22422      
22423     
22424             /**
22425     * Writes the a start element such as <p id="a">.
22426     *
22427     * @method start
22428     * @param {String} name Name of the element.
22429     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
22430     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
22431     */
22432     start: function(name, attrs, empty, node)
22433     {
22434         var i, l, attr, value;
22435         
22436         // there are some situations where adding line break && indentation will not work. will not work.
22437         // <span / b / i ... formating?
22438         
22439         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
22440         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
22441         
22442         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
22443         
22444         var add_lb = name == 'BR' ? false : in_inline;
22445         
22446         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
22447             i_inline = false;
22448         }
22449
22450         var indentstr =  this.indentstr;
22451         
22452         // e_inline = elements that can be inline, but still allow \n before and after?
22453         // only 'BR' ??? any others?
22454         
22455         // ADD LINE BEFORE tage
22456         if (!this.in_pre) {
22457             if (in_inline) {
22458                 //code
22459                 if (name == 'BR') {
22460                     this.addLine();
22461                 } else if (this.lastElementEndsWS()) {
22462                     this.addLine();
22463                 } else{
22464                     // otherwise - no new line. (and dont indent.)
22465                     indentstr = '';
22466                 }
22467                 
22468             } else {
22469                 this.addLine();
22470             }
22471         } else {
22472             indentstr = '';
22473         }
22474         
22475         this.html.push(indentstr + '<', name.toLowerCase());
22476         
22477         if (attrs) {
22478             for (i = 0, l = attrs.length; i < l; i++) {
22479                 attr = attrs[i];
22480                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
22481             }
22482         }
22483      
22484         if (empty) {
22485             if (is_short) {
22486                 this.html[this.html.length] = '/>';
22487             } else {
22488                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
22489             }
22490             var e_inline = name == 'BR' ? false : this.in_inline;
22491             
22492             if (!e_inline && !this.in_pre) {
22493                 this.addLine();
22494             }
22495             return;
22496         
22497         }
22498         // not empty..
22499         this.html[this.html.length] = '>';
22500         
22501         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
22502         /*
22503         if (!in_inline && !in_pre) {
22504             var cn = node.firstChild;
22505             while(cn) {
22506                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
22507                     in_inline = true
22508                     break;
22509                 }
22510                 cn = cn.nextSibling;
22511             }
22512              
22513         }
22514         */
22515         
22516         
22517         this.pushState({
22518             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
22519             in_pre : in_pre,
22520             in_inline :  in_inline
22521         });
22522         // add a line after if we are not in a
22523         
22524         if (!in_inline && !in_pre) {
22525             this.addLine();
22526         }
22527         
22528             
22529          
22530         
22531     },
22532     
22533     lastElementEndsWS : function()
22534     {
22535         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
22536         if (value === false) {
22537             return true;
22538         }
22539         return value.match(/\s+$/);
22540         
22541     },
22542     
22543     /**
22544      * Writes the a end element such as </p>.
22545      *
22546      * @method end
22547      * @param {String} name Name of the element.
22548      */
22549     end: function(name) {
22550         var value;
22551         this.popState();
22552         var indentstr = '';
22553         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
22554         
22555         if (!this.in_pre && !in_inline) {
22556             this.addLine();
22557             indentstr  = this.indentstr;
22558         }
22559         this.html.push(indentstr + '</', name.toLowerCase(), '>');
22560         this.last_inline = in_inline;
22561         
22562         // pop the indent state..
22563     },
22564     /**
22565      * Writes a text node.
22566      *
22567      * In pre - we should not mess with the contents.
22568      * 
22569      *
22570      * @method text
22571      * @param {String} text String to write out.
22572      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
22573      */
22574     text: function(in_text, node)
22575     {
22576         // if not in whitespace critical
22577         if (in_text.length < 1) {
22578             return;
22579         }
22580         var text = new XMLSerializer().serializeToString(document.createTextNode(in_text)); // escape it properly?
22581         
22582         if (this.in_pre) {
22583             this.html[this.html.length] =  text;
22584             return;   
22585         }
22586         
22587         if (this.in_inline) {
22588             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
22589             if (text != ' ') {
22590                 text = text.replace(/\s+/,' ');  // all white space to single white space
22591                 
22592                     
22593                 // if next tag is '<BR>', then we can trim right..
22594                 if (node.nextSibling &&
22595                     node.nextSibling.nodeType == 1 &&
22596                     node.nextSibling.nodeName == 'BR' )
22597                 {
22598                     text = text.replace(/\s+$/g,'');
22599                 }
22600                 // if previous tag was a BR, we can also trim..
22601                 if (node.previousSibling &&
22602                     node.previousSibling.nodeType == 1 &&
22603                     node.previousSibling.nodeName == 'BR' )
22604                 {
22605                     text = this.indentstr +  text.replace(/^\s+/g,'');
22606                 }
22607                 if (text.match(/\n/)) {
22608                     text = text.replace(
22609                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
22610                     );
22611                     // remoeve the last whitespace / line break.
22612                     text = text.replace(/\n\s+$/,'');
22613                 }
22614                 // repace long lines
22615                 
22616             }
22617              
22618             this.html[this.html.length] =  text;
22619             return;   
22620         }
22621         // see if previous element was a inline element.
22622         var indentstr = this.indentstr;
22623    
22624         text = text.replace(/\s+/g," "); // all whitespace into single white space.
22625         
22626         // should trim left?
22627         if (node.previousSibling &&
22628             node.previousSibling.nodeType == 1 &&
22629             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
22630         {
22631             indentstr = '';
22632             
22633         } else {
22634             this.addLine();
22635             text = text.replace(/^\s+/,''); // trim left
22636           
22637         }
22638         // should trim right?
22639         if (node.nextSibling &&
22640             node.nextSibling.nodeType == 1 &&
22641             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
22642         {
22643           // noop
22644             
22645         }  else {
22646             text = text.replace(/\s+$/,''); // trim right
22647         }
22648          
22649               
22650         
22651         
22652         
22653         if (text.length < 1) {
22654             return;
22655         }
22656         if (!text.match(/\n/)) {
22657             this.html.push(indentstr + text);
22658             return;
22659         }
22660         
22661         text = this.indentstr + text.replace(
22662             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
22663         );
22664         // remoeve the last whitespace / line break.
22665         text = text.replace(/\s+$/,''); 
22666         
22667         this.html.push(text);
22668         
22669         // split and indent..
22670         
22671         
22672     },
22673     /**
22674      * Writes a cdata node such as <![CDATA[data]]>.
22675      *
22676      * @method cdata
22677      * @param {String} text String to write out inside the cdata.
22678      */
22679     cdata: function(text) {
22680         this.html.push('<![CDATA[', text, ']]>');
22681     },
22682     /**
22683     * Writes a comment node such as <!-- Comment -->.
22684     *
22685     * @method cdata
22686     * @param {String} text String to write out inside the comment.
22687     */
22688    comment: function(text) {
22689        this.html.push('<!--', text, '-->');
22690    },
22691     /**
22692      * Writes a PI node such as <?xml attr="value" ?>.
22693      *
22694      * @method pi
22695      * @param {String} name Name of the pi.
22696      * @param {String} text String to write out inside the pi.
22697      */
22698     pi: function(name, text) {
22699         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
22700         this.indent != '' && this.html.push('\n');
22701     },
22702     /**
22703      * Writes a doctype node such as <!DOCTYPE data>.
22704      *
22705      * @method doctype
22706      * @param {String} text String to write out inside the doctype.
22707      */
22708     doctype: function(text) {
22709         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
22710     },
22711     /**
22712      * Resets the internal buffer if one wants to reuse the writer.
22713      *
22714      * @method reset
22715      */
22716     reset: function() {
22717         this.html.length = 0;
22718         this.state = [];
22719         this.pushState({
22720             indentstr : '',
22721             in_pre : false, 
22722             in_inline : false
22723         })
22724     },
22725     /**
22726      * Returns the contents that got serialized.
22727      *
22728      * @method getContent
22729      * @return {String} HTML contents that got written down.
22730      */
22731     getContent: function() {
22732         return this.html.join('').replace(/\n$/, '');
22733     },
22734     
22735     pushState : function(cfg)
22736     {
22737         this.state.push(cfg);
22738         Roo.apply(this, cfg);
22739     },
22740     
22741     popState : function()
22742     {
22743         if (this.state.length < 1) {
22744             return; // nothing to push
22745         }
22746         var cfg = {
22747             in_pre: false,
22748             indentstr : ''
22749         };
22750         this.state.pop();
22751         if (this.state.length > 0) {
22752             cfg = this.state[this.state.length-1]; 
22753         }
22754         Roo.apply(this, cfg);
22755     },
22756     
22757     addLine: function()
22758     {
22759         if (this.html.length < 1) {
22760             return;
22761         }
22762         
22763         
22764         var value = this.html[this.html.length - 1];
22765         if (value.length > 0 && '\n' !== value) {
22766             this.html.push('\n');
22767         }
22768     }
22769     
22770     
22771 //'pre script noscript style textarea video audio iframe object code'
22772 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
22773 // inline 
22774 };
22775
22776 Roo.htmleditor.TidyWriter.inline_elements = [
22777         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
22778         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP', 'A'
22779 ];
22780 Roo.htmleditor.TidyWriter.shortend_elements = [
22781     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
22782     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
22783 ];
22784
22785 Roo.htmleditor.TidyWriter.whitespace_elements = [
22786     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
22787 ];/***
22788  * This is based loosely on tinymce 
22789  * @class Roo.htmleditor.TidyEntities
22790  * @static
22791  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
22792  *
22793  * Not 100% sure this is actually used or needed.
22794  */
22795
22796 Roo.htmleditor.TidyEntities = {
22797     
22798     /**
22799      * initialize data..
22800      */
22801     init : function (){
22802      
22803         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
22804        
22805     },
22806
22807
22808     buildEntitiesLookup: function(items, radix) {
22809         var i, chr, entity, lookup = {};
22810         if (!items) {
22811             return {};
22812         }
22813         items = typeof(items) == 'string' ? items.split(',') : items;
22814         radix = radix || 10;
22815         // Build entities lookup table
22816         for (i = 0; i < items.length; i += 2) {
22817             chr = String.fromCharCode(parseInt(items[i], radix));
22818             // Only add non base entities
22819             if (!this.baseEntities[chr]) {
22820                 entity = '&' + items[i + 1] + ';';
22821                 lookup[chr] = entity;
22822                 lookup[entity] = chr;
22823             }
22824         }
22825         return lookup;
22826         
22827     },
22828     
22829     asciiMap : {
22830             128: '€',
22831             130: '‚',
22832             131: 'ƒ',
22833             132: '„',
22834             133: '…',
22835             134: '†',
22836             135: '‡',
22837             136: 'ˆ',
22838             137: '‰',
22839             138: 'Š',
22840             139: '‹',
22841             140: 'Œ',
22842             142: 'Ž',
22843             145: '‘',
22844             146: '’',
22845             147: '“',
22846             148: '”',
22847             149: '•',
22848             150: '–',
22849             151: '—',
22850             152: '˜',
22851             153: '™',
22852             154: 'š',
22853             155: '›',
22854             156: 'œ',
22855             158: 'ž',
22856             159: 'Ÿ'
22857     },
22858     // Raw entities
22859     baseEntities : {
22860         '"': '&quot;',
22861         // Needs to be escaped since the YUI compressor would otherwise break the code
22862         '\'': '&#39;',
22863         '<': '&lt;',
22864         '>': '&gt;',
22865         '&': '&amp;',
22866         '`': '&#96;'
22867     },
22868     // Reverse lookup table for raw entities
22869     reverseEntities : {
22870         '&lt;': '<',
22871         '&gt;': '>',
22872         '&amp;': '&',
22873         '&quot;': '"',
22874         '&apos;': '\''
22875     },
22876     
22877     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
22878     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
22879     rawCharsRegExp : /[<>&\"\']/g,
22880     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
22881     namedEntities  : false,
22882     namedEntitiesData : [ 
22883         '50',
22884         'nbsp',
22885         '51',
22886         'iexcl',
22887         '52',
22888         'cent',
22889         '53',
22890         'pound',
22891         '54',
22892         'curren',
22893         '55',
22894         'yen',
22895         '56',
22896         'brvbar',
22897         '57',
22898         'sect',
22899         '58',
22900         'uml',
22901         '59',
22902         'copy',
22903         '5a',
22904         'ordf',
22905         '5b',
22906         'laquo',
22907         '5c',
22908         'not',
22909         '5d',
22910         'shy',
22911         '5e',
22912         'reg',
22913         '5f',
22914         'macr',
22915         '5g',
22916         'deg',
22917         '5h',
22918         'plusmn',
22919         '5i',
22920         'sup2',
22921         '5j',
22922         'sup3',
22923         '5k',
22924         'acute',
22925         '5l',
22926         'micro',
22927         '5m',
22928         'para',
22929         '5n',
22930         'middot',
22931         '5o',
22932         'cedil',
22933         '5p',
22934         'sup1',
22935         '5q',
22936         'ordm',
22937         '5r',
22938         'raquo',
22939         '5s',
22940         'frac14',
22941         '5t',
22942         'frac12',
22943         '5u',
22944         'frac34',
22945         '5v',
22946         'iquest',
22947         '60',
22948         'Agrave',
22949         '61',
22950         'Aacute',
22951         '62',
22952         'Acirc',
22953         '63',
22954         'Atilde',
22955         '64',
22956         'Auml',
22957         '65',
22958         'Aring',
22959         '66',
22960         'AElig',
22961         '67',
22962         'Ccedil',
22963         '68',
22964         'Egrave',
22965         '69',
22966         'Eacute',
22967         '6a',
22968         'Ecirc',
22969         '6b',
22970         'Euml',
22971         '6c',
22972         'Igrave',
22973         '6d',
22974         'Iacute',
22975         '6e',
22976         'Icirc',
22977         '6f',
22978         'Iuml',
22979         '6g',
22980         'ETH',
22981         '6h',
22982         'Ntilde',
22983         '6i',
22984         'Ograve',
22985         '6j',
22986         'Oacute',
22987         '6k',
22988         'Ocirc',
22989         '6l',
22990         'Otilde',
22991         '6m',
22992         'Ouml',
22993         '6n',
22994         'times',
22995         '6o',
22996         'Oslash',
22997         '6p',
22998         'Ugrave',
22999         '6q',
23000         'Uacute',
23001         '6r',
23002         'Ucirc',
23003         '6s',
23004         'Uuml',
23005         '6t',
23006         'Yacute',
23007         '6u',
23008         'THORN',
23009         '6v',
23010         'szlig',
23011         '70',
23012         'agrave',
23013         '71',
23014         'aacute',
23015         '72',
23016         'acirc',
23017         '73',
23018         'atilde',
23019         '74',
23020         'auml',
23021         '75',
23022         'aring',
23023         '76',
23024         'aelig',
23025         '77',
23026         'ccedil',
23027         '78',
23028         'egrave',
23029         '79',
23030         'eacute',
23031         '7a',
23032         'ecirc',
23033         '7b',
23034         'euml',
23035         '7c',
23036         'igrave',
23037         '7d',
23038         'iacute',
23039         '7e',
23040         'icirc',
23041         '7f',
23042         'iuml',
23043         '7g',
23044         'eth',
23045         '7h',
23046         'ntilde',
23047         '7i',
23048         'ograve',
23049         '7j',
23050         'oacute',
23051         '7k',
23052         'ocirc',
23053         '7l',
23054         'otilde',
23055         '7m',
23056         'ouml',
23057         '7n',
23058         'divide',
23059         '7o',
23060         'oslash',
23061         '7p',
23062         'ugrave',
23063         '7q',
23064         'uacute',
23065         '7r',
23066         'ucirc',
23067         '7s',
23068         'uuml',
23069         '7t',
23070         'yacute',
23071         '7u',
23072         'thorn',
23073         '7v',
23074         'yuml',
23075         'ci',
23076         'fnof',
23077         'sh',
23078         'Alpha',
23079         'si',
23080         'Beta',
23081         'sj',
23082         'Gamma',
23083         'sk',
23084         'Delta',
23085         'sl',
23086         'Epsilon',
23087         'sm',
23088         'Zeta',
23089         'sn',
23090         'Eta',
23091         'so',
23092         'Theta',
23093         'sp',
23094         'Iota',
23095         'sq',
23096         'Kappa',
23097         'sr',
23098         'Lambda',
23099         'ss',
23100         'Mu',
23101         'st',
23102         'Nu',
23103         'su',
23104         'Xi',
23105         'sv',
23106         'Omicron',
23107         't0',
23108         'Pi',
23109         't1',
23110         'Rho',
23111         't3',
23112         'Sigma',
23113         't4',
23114         'Tau',
23115         't5',
23116         'Upsilon',
23117         't6',
23118         'Phi',
23119         't7',
23120         'Chi',
23121         't8',
23122         'Psi',
23123         't9',
23124         'Omega',
23125         'th',
23126         'alpha',
23127         'ti',
23128         'beta',
23129         'tj',
23130         'gamma',
23131         'tk',
23132         'delta',
23133         'tl',
23134         'epsilon',
23135         'tm',
23136         'zeta',
23137         'tn',
23138         'eta',
23139         'to',
23140         'theta',
23141         'tp',
23142         'iota',
23143         'tq',
23144         'kappa',
23145         'tr',
23146         'lambda',
23147         'ts',
23148         'mu',
23149         'tt',
23150         'nu',
23151         'tu',
23152         'xi',
23153         'tv',
23154         'omicron',
23155         'u0',
23156         'pi',
23157         'u1',
23158         'rho',
23159         'u2',
23160         'sigmaf',
23161         'u3',
23162         'sigma',
23163         'u4',
23164         'tau',
23165         'u5',
23166         'upsilon',
23167         'u6',
23168         'phi',
23169         'u7',
23170         'chi',
23171         'u8',
23172         'psi',
23173         'u9',
23174         'omega',
23175         'uh',
23176         'thetasym',
23177         'ui',
23178         'upsih',
23179         'um',
23180         'piv',
23181         '812',
23182         'bull',
23183         '816',
23184         'hellip',
23185         '81i',
23186         'prime',
23187         '81j',
23188         'Prime',
23189         '81u',
23190         'oline',
23191         '824',
23192         'frasl',
23193         '88o',
23194         'weierp',
23195         '88h',
23196         'image',
23197         '88s',
23198         'real',
23199         '892',
23200         'trade',
23201         '89l',
23202         'alefsym',
23203         '8cg',
23204         'larr',
23205         '8ch',
23206         'uarr',
23207         '8ci',
23208         'rarr',
23209         '8cj',
23210         'darr',
23211         '8ck',
23212         'harr',
23213         '8dl',
23214         'crarr',
23215         '8eg',
23216         'lArr',
23217         '8eh',
23218         'uArr',
23219         '8ei',
23220         'rArr',
23221         '8ej',
23222         'dArr',
23223         '8ek',
23224         'hArr',
23225         '8g0',
23226         'forall',
23227         '8g2',
23228         'part',
23229         '8g3',
23230         'exist',
23231         '8g5',
23232         'empty',
23233         '8g7',
23234         'nabla',
23235         '8g8',
23236         'isin',
23237         '8g9',
23238         'notin',
23239         '8gb',
23240         'ni',
23241         '8gf',
23242         'prod',
23243         '8gh',
23244         'sum',
23245         '8gi',
23246         'minus',
23247         '8gn',
23248         'lowast',
23249         '8gq',
23250         'radic',
23251         '8gt',
23252         'prop',
23253         '8gu',
23254         'infin',
23255         '8h0',
23256         'ang',
23257         '8h7',
23258         'and',
23259         '8h8',
23260         'or',
23261         '8h9',
23262         'cap',
23263         '8ha',
23264         'cup',
23265         '8hb',
23266         'int',
23267         '8hk',
23268         'there4',
23269         '8hs',
23270         'sim',
23271         '8i5',
23272         'cong',
23273         '8i8',
23274         'asymp',
23275         '8j0',
23276         'ne',
23277         '8j1',
23278         'equiv',
23279         '8j4',
23280         'le',
23281         '8j5',
23282         'ge',
23283         '8k2',
23284         'sub',
23285         '8k3',
23286         'sup',
23287         '8k4',
23288         'nsub',
23289         '8k6',
23290         'sube',
23291         '8k7',
23292         'supe',
23293         '8kl',
23294         'oplus',
23295         '8kn',
23296         'otimes',
23297         '8l5',
23298         'perp',
23299         '8m5',
23300         'sdot',
23301         '8o8',
23302         'lceil',
23303         '8o9',
23304         'rceil',
23305         '8oa',
23306         'lfloor',
23307         '8ob',
23308         'rfloor',
23309         '8p9',
23310         'lang',
23311         '8pa',
23312         'rang',
23313         '9ea',
23314         'loz',
23315         '9j0',
23316         'spades',
23317         '9j3',
23318         'clubs',
23319         '9j5',
23320         'hearts',
23321         '9j6',
23322         'diams',
23323         'ai',
23324         'OElig',
23325         'aj',
23326         'oelig',
23327         'b0',
23328         'Scaron',
23329         'b1',
23330         'scaron',
23331         'bo',
23332         'Yuml',
23333         'm6',
23334         'circ',
23335         'ms',
23336         'tilde',
23337         '802',
23338         'ensp',
23339         '803',
23340         'emsp',
23341         '809',
23342         'thinsp',
23343         '80c',
23344         'zwnj',
23345         '80d',
23346         'zwj',
23347         '80e',
23348         'lrm',
23349         '80f',
23350         'rlm',
23351         '80j',
23352         'ndash',
23353         '80k',
23354         'mdash',
23355         '80o',
23356         'lsquo',
23357         '80p',
23358         'rsquo',
23359         '80q',
23360         'sbquo',
23361         '80s',
23362         'ldquo',
23363         '80t',
23364         'rdquo',
23365         '80u',
23366         'bdquo',
23367         '810',
23368         'dagger',
23369         '811',
23370         'Dagger',
23371         '81g',
23372         'permil',
23373         '81p',
23374         'lsaquo',
23375         '81q',
23376         'rsaquo',
23377         '85c',
23378         'euro'
23379     ],
23380
23381          
23382     /**
23383      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
23384      *
23385      * @method encodeRaw
23386      * @param {String} text Text to encode.
23387      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
23388      * @return {String} Entity encoded text.
23389      */
23390     encodeRaw: function(text, attr)
23391     {
23392         var t = this;
23393         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
23394             return t.baseEntities[chr] || chr;
23395         });
23396     },
23397     /**
23398      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
23399      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
23400      * and is exposed as the DOMUtils.encode function.
23401      *
23402      * @method encodeAllRaw
23403      * @param {String} text Text to encode.
23404      * @return {String} Entity encoded text.
23405      */
23406     encodeAllRaw: function(text) {
23407         var t = this;
23408         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
23409             return t.baseEntities[chr] || chr;
23410         });
23411     },
23412     /**
23413      * Encodes the specified string using numeric entities. The core entities will be
23414      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
23415      *
23416      * @method encodeNumeric
23417      * @param {String} text Text to encode.
23418      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
23419      * @return {String} Entity encoded text.
23420      */
23421     encodeNumeric: function(text, attr) {
23422         var t = this;
23423         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
23424             // Multi byte sequence convert it to a single entity
23425             if (chr.length > 1) {
23426                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
23427             }
23428             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
23429         });
23430     },
23431     /**
23432      * Encodes the specified string using named entities. The core entities will be encoded
23433      * as named ones but all non lower ascii characters will be encoded into named entities.
23434      *
23435      * @method encodeNamed
23436      * @param {String} text Text to encode.
23437      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
23438      * @param {Object} entities Optional parameter with entities to use.
23439      * @return {String} Entity encoded text.
23440      */
23441     encodeNamed: function(text, attr, entities) {
23442         var t = this;
23443         entities = entities || this.namedEntities;
23444         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
23445             return t.baseEntities[chr] || entities[chr] || chr;
23446         });
23447     },
23448     /**
23449      * Returns an encode function based on the name(s) and it's optional entities.
23450      *
23451      * @method getEncodeFunc
23452      * @param {String} name Comma separated list of encoders for example named,numeric.
23453      * @param {String} entities Optional parameter with entities to use instead of the built in set.
23454      * @return {function} Encode function to be used.
23455      */
23456     getEncodeFunc: function(name, entities) {
23457         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
23458         var t = this;
23459         function encodeNamedAndNumeric(text, attr) {
23460             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
23461                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
23462             });
23463         }
23464
23465         function encodeCustomNamed(text, attr) {
23466             return t.encodeNamed(text, attr, entities);
23467         }
23468         // Replace + with , to be compatible with previous TinyMCE versions
23469         name = this.makeMap(name.replace(/\+/g, ','));
23470         // Named and numeric encoder
23471         if (name.named && name.numeric) {
23472             return this.encodeNamedAndNumeric;
23473         }
23474         // Named encoder
23475         if (name.named) {
23476             // Custom names
23477             if (entities) {
23478                 return encodeCustomNamed;
23479             }
23480             return this.encodeNamed;
23481         }
23482         // Numeric
23483         if (name.numeric) {
23484             return this.encodeNumeric;
23485         }
23486         // Raw encoder
23487         return this.encodeRaw;
23488     },
23489     /**
23490      * Decodes the specified string, this will replace entities with raw UTF characters.
23491      *
23492      * @method decode
23493      * @param {String} text Text to entity decode.
23494      * @return {String} Entity decoded string.
23495      */
23496     decode: function(text)
23497     {
23498         var  t = this;
23499         return text.replace(this.entityRegExp, function(all, numeric) {
23500             if (numeric) {
23501                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
23502                 // Support upper UTF
23503                 if (numeric > 65535) {
23504                     numeric -= 65536;
23505                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
23506                 }
23507                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
23508             }
23509             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
23510         });
23511     },
23512     nativeDecode : function (text) {
23513         return text;
23514     },
23515     makeMap : function (items, delim, map) {
23516                 var i;
23517                 items = items || [];
23518                 delim = delim || ',';
23519                 if (typeof items == "string") {
23520                         items = items.split(delim);
23521                 }
23522                 map = map || {};
23523                 i = items.length;
23524                 while (i--) {
23525                         map[items[i]] = {};
23526                 }
23527                 return map;
23528         }
23529 };
23530     
23531     
23532     
23533 Roo.htmleditor.TidyEntities.init();
23534 /**
23535  * @class Roo.htmleditor.KeyEnter
23536  * Handle Enter press..
23537  * @cfg {Roo.HtmlEditorCore} core the editor.
23538  * @constructor
23539  * Create a new Filter.
23540  * @param {Object} config Configuration options
23541  */
23542
23543
23544
23545
23546
23547 Roo.htmleditor.KeyEnter = function(cfg) {
23548     Roo.apply(this, cfg);
23549     // this does not actually call walk as it's really just a abstract class
23550  
23551     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
23552 }
23553
23554 //Roo.htmleditor.KeyEnter.i = 0;
23555
23556
23557 Roo.htmleditor.KeyEnter.prototype = {
23558     
23559     core : false,
23560     
23561     keypress : function(e)
23562     {
23563         if (e.charCode != 13 && e.charCode != 10) {
23564             Roo.log([e.charCode,e]);
23565             return true;
23566         }
23567         e.preventDefault();
23568         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
23569         var doc = this.core.doc;
23570           //add a new line
23571        
23572     
23573         var sel = this.core.getSelection();
23574         var range = sel.getRangeAt(0);
23575         var n = range.commonAncestorContainer;
23576         var pc = range.closest([ 'ol', 'ul']);
23577         var pli = range.closest('li');
23578         if (!pc || e.ctrlKey) {
23579             // on it list, or ctrl pressed.
23580             if (!e.ctrlKey) {
23581                 sel.insertNode('br', 'after'); 
23582             } else {
23583                 // only do this if we have ctrl key..
23584                 var br = doc.createElement('br');
23585                 br.className = 'clear';
23586                 br.setAttribute('style', 'clear: both');
23587                 sel.insertNode(br, 'after'); 
23588             }
23589             
23590          
23591             this.core.undoManager.addEvent();
23592             this.core.fireEditorEvent(e);
23593             return false;
23594         }
23595         
23596         // deal with <li> insetion
23597         if (pli.innerText.trim() == '' &&
23598             pli.previousSibling &&
23599             pli.previousSibling.nodeName == 'LI' &&
23600             pli.previousSibling.innerText.trim() ==  '') {
23601             pli.parentNode.removeChild(pli.previousSibling);
23602             sel.cursorAfter(pc);
23603             this.core.undoManager.addEvent();
23604             this.core.fireEditorEvent(e);
23605             return false;
23606         }
23607     
23608         var li = doc.createElement('LI');
23609         li.innerHTML = '&nbsp;';
23610         if (!pli || !pli.firstSibling) {
23611             pc.appendChild(li);
23612         } else {
23613             pli.parentNode.insertBefore(li, pli.firstSibling);
23614         }
23615         sel.cursorText (li.firstChild);
23616       
23617         this.core.undoManager.addEvent();
23618         this.core.fireEditorEvent(e);
23619
23620         return false;
23621         
23622     
23623         
23624         
23625          
23626     }
23627 };
23628      
23629 /**
23630  * @class Roo.htmleditor.Block
23631  * Base class for html editor blocks - do not use it directly .. extend it..
23632  * @cfg {DomElement} node The node to apply stuff to.
23633  * @cfg {String} friendly_name the name that appears in the context bar about this block
23634  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
23635  
23636  * @constructor
23637  * Create a new Filter.
23638  * @param {Object} config Configuration options
23639  */
23640
23641 Roo.htmleditor.Block  = function(cfg)
23642 {
23643     // do nothing .. should not be called really.
23644 }
23645 /**
23646  * factory method to get the block from an element (using cache if necessary)
23647  * @static
23648  * @param {HtmlElement} the dom element
23649  */
23650 Roo.htmleditor.Block.factory = function(node)
23651 {
23652     var cc = Roo.htmleditor.Block.cache;
23653     var id = Roo.get(node).id;
23654     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
23655         Roo.htmleditor.Block.cache[id].readElement(node);
23656         return Roo.htmleditor.Block.cache[id];
23657     }
23658     var db  = node.getAttribute('data-block');
23659     if (!db) {
23660         db = node.nodeName.toLowerCase().toUpperCaseFirst();
23661     }
23662     var cls = Roo.htmleditor['Block' + db];
23663     if (typeof(cls) == 'undefined') {
23664         //Roo.log(node.getAttribute('data-block'));
23665         Roo.log("OOps missing block : " + 'Block' + db);
23666         return false;
23667     }
23668     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
23669     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
23670 };
23671
23672 /**
23673  * initalize all Elements from content that are 'blockable'
23674  * @static
23675  * @param the body element
23676  */
23677 Roo.htmleditor.Block.initAll = function(body, type)
23678 {
23679     if (typeof(type) == 'undefined') {
23680         var ia = Roo.htmleditor.Block.initAll;
23681         ia(body,'table');
23682         ia(body,'td');
23683         ia(body,'figure');
23684         return;
23685     }
23686     Roo.each(Roo.get(body).query(type), function(e) {
23687         Roo.htmleditor.Block.factory(e);    
23688     },this);
23689 };
23690 // question goes here... do we need to clear out this cache sometimes?
23691 // or show we make it relivant to the htmleditor.
23692 Roo.htmleditor.Block.cache = {};
23693
23694 Roo.htmleditor.Block.prototype = {
23695     
23696     node : false,
23697     
23698      // used by context menu
23699     friendly_name : 'Based Block',
23700     
23701     // text for button to delete this element
23702     deleteTitle : false,
23703     
23704     context : false,
23705     /**
23706      * Update a node with values from this object
23707      * @param {DomElement} node
23708      */
23709     updateElement : function(node)
23710     {
23711         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
23712     },
23713      /**
23714      * convert to plain HTML for calling insertAtCursor..
23715      */
23716     toHTML : function()
23717     {
23718         return Roo.DomHelper.markup(this.toObject());
23719     },
23720     /**
23721      * used by readEleemnt to extract data from a node
23722      * may need improving as it's pretty basic
23723      
23724      * @param {DomElement} node
23725      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
23726      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
23727      * @param {String} style the style property - eg. text-align
23728      */
23729     getVal : function(node, tag, attr, style)
23730     {
23731         var n = node;
23732         if (tag !== true && n.tagName != tag.toUpperCase()) {
23733             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
23734             // but kiss for now.
23735             n = node.getElementsByTagName(tag).item(0);
23736         }
23737         if (!n) {
23738             return '';
23739         }
23740         if (attr === false) {
23741             return n;
23742         }
23743         if (attr == 'html') {
23744             return n.innerHTML;
23745         }
23746         if (attr == 'style') {
23747             return n.style[style]; 
23748         }
23749         
23750         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
23751             
23752     },
23753     /**
23754      * create a DomHelper friendly object - for use with 
23755      * Roo.DomHelper.markup / overwrite / etc..
23756      * (override this)
23757      */
23758     toObject : function()
23759     {
23760         return {};
23761     },
23762       /**
23763      * Read a node that has a 'data-block' property - and extract the values from it.
23764      * @param {DomElement} node - the node
23765      */
23766     readElement : function(node)
23767     {
23768         
23769     } 
23770     
23771     
23772 };
23773
23774  
23775
23776 /**
23777  * @class Roo.htmleditor.BlockFigure
23778  * Block that has an image and a figcaption
23779  * @cfg {String} image_src the url for the image
23780  * @cfg {String} align (left|right) alignment for the block default left
23781  * @cfg {String} caption the text to appear below  (and in the alt tag)
23782  * @cfg {String} caption_display (block|none) display or not the caption
23783  * @cfg {String|number} image_width the width of the image number or %?
23784  * @cfg {String|number} image_height the height of the image number or %?
23785  * 
23786  * @constructor
23787  * Create a new Filter.
23788  * @param {Object} config Configuration options
23789  */
23790
23791 Roo.htmleditor.BlockFigure = function(cfg)
23792 {
23793     if (cfg.node) {
23794         this.readElement(cfg.node);
23795         this.updateElement(cfg.node);
23796     }
23797     Roo.apply(this, cfg);
23798 }
23799 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
23800  
23801     
23802     // setable values.
23803     image_src: '',
23804     align: 'center',
23805     caption : '',
23806     caption_display : 'block',
23807     width : '100%',
23808     cls : '',
23809     href: '',
23810     video_url : '',
23811     
23812     // margin: '2%', not used
23813     
23814     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
23815
23816     
23817     // used by context menu
23818     friendly_name : 'Image with caption',
23819     deleteTitle : "Delete Image and Caption",
23820     
23821     contextMenu : function(toolbar)
23822     {
23823         
23824         var block = function() {
23825             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
23826         };
23827         
23828         
23829         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
23830         
23831         var syncValue = toolbar.editorcore.syncValue;
23832         
23833         var fields = {};
23834         
23835         return [
23836              {
23837                 xtype : 'TextItem',
23838                 text : "Source: ",
23839                 xns : rooui.Toolbar  //Boostrap?
23840             },
23841             {
23842                 xtype : 'Button',
23843                 text: 'Change Image URL',
23844                  
23845                 listeners : {
23846                     click: function (btn, state)
23847                     {
23848                         var b = block();
23849                         
23850                         Roo.MessageBox.show({
23851                             title : "Image Source URL",
23852                             msg : "Enter the url for the image",
23853                             buttons: Roo.MessageBox.OKCANCEL,
23854                             fn: function(btn, val){
23855                                 if (btn != 'ok') {
23856                                     return;
23857                                 }
23858                                 b.image_src = val;
23859                                 b.updateElement();
23860                                 syncValue();
23861                                 toolbar.editorcore.onEditorEvent();
23862                             },
23863                             minWidth:250,
23864                             prompt:true,
23865                             //multiline: multiline,
23866                             modal : true,
23867                             value : b.image_src
23868                         });
23869                     }
23870                 },
23871                 xns : rooui.Toolbar
23872             },
23873          
23874             {
23875                 xtype : 'Button',
23876                 text: 'Change Link URL',
23877                  
23878                 listeners : {
23879                     click: function (btn, state)
23880                     {
23881                         var b = block();
23882                         
23883                         Roo.MessageBox.show({
23884                             title : "Link URL",
23885                             msg : "Enter the url for the link - leave blank to have no link",
23886                             buttons: Roo.MessageBox.OKCANCEL,
23887                             fn: function(btn, val){
23888                                 if (btn != 'ok') {
23889                                     return;
23890                                 }
23891                                 b.href = val;
23892                                 b.updateElement();
23893                                 syncValue();
23894                                 toolbar.editorcore.onEditorEvent();
23895                             },
23896                             minWidth:250,
23897                             prompt:true,
23898                             //multiline: multiline,
23899                             modal : true,
23900                             value : b.href
23901                         });
23902                     }
23903                 },
23904                 xns : rooui.Toolbar
23905             },
23906             {
23907                 xtype : 'Button',
23908                 text: 'Show Video URL',
23909                  
23910                 listeners : {
23911                     click: function (btn, state)
23912                     {
23913                         Roo.MessageBox.alert("Video URL",
23914                             block().video_url == '' ? 'This image is not linked ot a video' :
23915                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
23916                     }
23917                 },
23918                 xns : rooui.Toolbar
23919             },
23920             
23921             
23922             {
23923                 xtype : 'TextItem',
23924                 text : "Width: ",
23925                 xns : rooui.Toolbar  //Boostrap?
23926             },
23927             {
23928                 xtype : 'ComboBox',
23929                 allowBlank : false,
23930                 displayField : 'val',
23931                 editable : true,
23932                 listWidth : 100,
23933                 triggerAction : 'all',
23934                 typeAhead : true,
23935                 valueField : 'val',
23936                 width : 70,
23937                 name : 'width',
23938                 listeners : {
23939                     select : function (combo, r, index)
23940                     {
23941                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23942                         var b = block();
23943                         b.width = r.get('val');
23944                         b.updateElement();
23945                         syncValue();
23946                         toolbar.editorcore.onEditorEvent();
23947                     }
23948                 },
23949                 xns : rooui.form,
23950                 store : {
23951                     xtype : 'SimpleStore',
23952                     data : [
23953                         ['100%'],
23954                         ['80%'],
23955                         ['50%'],
23956                         ['20%'],
23957                         ['10%']
23958                     ],
23959                     fields : [ 'val'],
23960                     xns : Roo.data
23961                 }
23962             },
23963             {
23964                 xtype : 'TextItem',
23965                 text : "Align: ",
23966                 xns : rooui.Toolbar  //Boostrap?
23967             },
23968             {
23969                 xtype : 'ComboBox',
23970                 allowBlank : false,
23971                 displayField : 'val',
23972                 editable : true,
23973                 listWidth : 100,
23974                 triggerAction : 'all',
23975                 typeAhead : true,
23976                 valueField : 'val',
23977                 width : 70,
23978                 name : 'align',
23979                 listeners : {
23980                     select : function (combo, r, index)
23981                     {
23982                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23983                         var b = block();
23984                         b.align = r.get('val');
23985                         b.updateElement();
23986                         syncValue();
23987                         toolbar.editorcore.onEditorEvent();
23988                     }
23989                 },
23990                 xns : rooui.form,
23991                 store : {
23992                     xtype : 'SimpleStore',
23993                     data : [
23994                         ['left'],
23995                         ['right'],
23996                         ['center']
23997                     ],
23998                     fields : [ 'val'],
23999                     xns : Roo.data
24000                 }
24001             },
24002             
24003               
24004             {
24005                 xtype : 'Button',
24006                 text: 'Hide Caption',
24007                 name : 'caption_display',
24008                 pressed : false,
24009                 enableToggle : true,
24010                 setValue : function(v) {
24011                     // this trigger toggle.
24012                      
24013                     this.setText(v ? "Hide Caption" : "Show Caption");
24014                     this.setPressed(v != 'block');
24015                 },
24016                 listeners : {
24017                     toggle: function (btn, state)
24018                     {
24019                         var b  = block();
24020                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
24021                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
24022                         b.updateElement();
24023                         syncValue();
24024                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24025                         toolbar.editorcore.onEditorEvent();
24026                     }
24027                 },
24028                 xns : rooui.Toolbar
24029             }
24030         ];
24031         
24032     },
24033     /**
24034      * create a DomHelper friendly object - for use with
24035      * Roo.DomHelper.markup / overwrite / etc..
24036      */
24037     toObject : function()
24038     {
24039         var d = document.createElement('div');
24040         d.innerHTML = this.caption;
24041         
24042         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
24043         
24044         var iw = this.align == 'center' ? this.width : '100%';
24045         var img =   {
24046             tag : 'img',
24047             contenteditable : 'false',
24048             src : this.image_src,
24049             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
24050             style: {
24051                 width : iw,
24052                 maxWidth : iw + ' !important', // this is not getting rendered?
24053                 margin : m  
24054                 
24055             }
24056         };
24057         /*
24058         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
24059                     '<a href="{2}">' + 
24060                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
24061                     '</a>' + 
24062                 '</div>',
24063         */
24064                 
24065         if (this.href.length > 0) {
24066             img = {
24067                 tag : 'a',
24068                 href: this.href,
24069                 contenteditable : 'true',
24070                 cn : [
24071                     img
24072                 ]
24073             };
24074         }
24075         
24076         
24077         if (this.video_url.length > 0) {
24078             img = {
24079                 tag : 'div',
24080                 cls : this.cls,
24081                 frameborder : 0,
24082                 allowfullscreen : true,
24083                 width : 420,  // these are for video tricks - that we replace the outer
24084                 height : 315,
24085                 src : this.video_url,
24086                 cn : [
24087                     img
24088                 ]
24089             };
24090         }
24091
24092
24093   
24094         var ret =   {
24095             tag: 'figure',
24096             'data-block' : 'Figure',
24097             'data-width' : this.width,
24098             'data-caption' : this.caption, 
24099             'data-caption-display' : this.caption_display,
24100             contenteditable : 'false',
24101             
24102             style : {
24103                 display: 'block',
24104                 float :  this.align ,
24105                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
24106                 width : this.align == 'center' ? '100%' : this.width,
24107                 margin:  '0px',
24108                 padding: this.align == 'center' ? '0' : '0 10px' ,
24109                 textAlign : this.align   // seems to work for email..
24110                 
24111             },
24112             
24113             align : this.align,
24114             cn : [
24115                 img
24116             ]
24117         };
24118
24119         // show figcaption only if caption_display is 'block'
24120         if(this.caption_display == 'block') {
24121             ret['cn'].push({
24122                 tag: 'figcaption',
24123                 style : {
24124                     textAlign : 'left',
24125                     fontSize : '16px',
24126                     lineHeight : '24px',
24127                     display : this.caption_display,
24128                     maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
24129                     margin: m,
24130                     width: this.align == 'center' ?  this.width : '100%' 
24131                 
24132                      
24133                 },
24134                 cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
24135                 cn : [
24136                     {
24137                         tag: 'div',
24138                         style  : {
24139                             marginTop : '16px',
24140                             textAlign : 'left'
24141                         },
24142                         align: 'left',
24143                         cn : [
24144                             {
24145                                 // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
24146                                 tag : 'i',
24147                                 contenteditable : Roo.htmleditor.BlockFigure.caption_edit,
24148                                 html : this.caption.length ? this.caption : "Caption" // fake caption
24149                             }
24150                             
24151                         ]
24152                     }
24153                     
24154                 ]
24155                 
24156             });
24157         }
24158         return ret;
24159          
24160     },
24161     
24162     readElement : function(node)
24163     {
24164         // this should not really come from the link...
24165         this.video_url = this.getVal(node, 'div', 'src');
24166         this.cls = this.getVal(node, 'div', 'class');
24167         this.href = this.getVal(node, 'a', 'href');
24168         
24169         
24170         this.image_src = this.getVal(node, 'img', 'src');
24171          
24172         this.align = this.getVal(node, 'figure', 'align');
24173
24174         // caption display is stored in figure
24175         this.caption_display = this.getVal(node, true, 'data-caption-display');
24176
24177         // backward compatible
24178         // it was stored in figcaption
24179         if(this.caption_display == '') {
24180             this.caption_display = this.getVal(node, 'figcaption', 'data-display');
24181         }
24182
24183         // read caption from figcaption
24184         var figcaption = this.getVal(node, 'figcaption', false);
24185
24186         if (figcaption !== '') {
24187             this.caption = this.getVal(figcaption, 'i', 'html');
24188         }
24189                 
24190
24191         // read caption from data-caption in figure if no caption from figcaption
24192         var dc = this.getVal(node, true, 'data-caption');
24193
24194         if(this.caption_display == 'none' && dc && dc.length){
24195             this.caption = dc;
24196         }
24197
24198         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
24199         this.width = this.getVal(node, true, 'data-width');
24200         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
24201         
24202     },
24203     removeNode : function()
24204     {
24205         return this.node;
24206     }
24207     
24208   
24209    
24210      
24211     
24212     
24213     
24214     
24215 });
24216
24217 Roo.apply(Roo.htmleditor.BlockFigure, {
24218     caption_edit : true
24219 });
24220
24221  
24222
24223 /**
24224  * @class Roo.htmleditor.BlockTable
24225  * Block that manages a table
24226  * 
24227  * @constructor
24228  * Create a new Filter.
24229  * @param {Object} config Configuration options
24230  */
24231
24232 Roo.htmleditor.BlockTable = function(cfg)
24233 {
24234     if (cfg.node) {
24235         this.readElement(cfg.node);
24236         this.updateElement(cfg.node);
24237     }
24238     Roo.apply(this, cfg);
24239     if (!cfg.node) {
24240         this.rows = [];
24241         for(var r = 0; r < this.no_row; r++) {
24242             this.rows[r] = [];
24243             for(var c = 0; c < this.no_col; c++) {
24244                 this.rows[r][c] = this.emptyCell();
24245             }
24246         }
24247     }
24248     
24249     
24250 }
24251 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
24252  
24253     rows : false,
24254     no_col : 1,
24255     no_row : 1,
24256     
24257     
24258     width: '100%',
24259     
24260     // used by context menu
24261     friendly_name : 'Table',
24262     deleteTitle : 'Delete Table',
24263     // context menu is drawn once..
24264     
24265     contextMenu : function(toolbar)
24266     {
24267         
24268         var block = function() {
24269             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
24270         };
24271         
24272         
24273         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
24274         
24275         var syncValue = toolbar.editorcore.syncValue;
24276         
24277         var fields = {};
24278         
24279         return [
24280             {
24281                 xtype : 'TextItem',
24282                 text : "Width: ",
24283                 xns : rooui.Toolbar  //Boostrap?
24284             },
24285             {
24286                 xtype : 'ComboBox',
24287                 allowBlank : false,
24288                 displayField : 'val',
24289                 editable : true,
24290                 listWidth : 100,
24291                 triggerAction : 'all',
24292                 typeAhead : true,
24293                 valueField : 'val',
24294                 width : 100,
24295                 name : 'width',
24296                 listeners : {
24297                     select : function (combo, r, index)
24298                     {
24299                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24300                         var b = block();
24301                         b.width = r.get('val');
24302                         b.updateElement();
24303                         syncValue();
24304                         toolbar.editorcore.onEditorEvent();
24305                     }
24306                 },
24307                 xns : rooui.form,
24308                 store : {
24309                     xtype : 'SimpleStore',
24310                     data : [
24311                         ['100%'],
24312                         ['auto']
24313                     ],
24314                     fields : [ 'val'],
24315                     xns : Roo.data
24316                 }
24317             },
24318             // -------- Cols
24319             
24320             {
24321                 xtype : 'TextItem',
24322                 text : "Columns: ",
24323                 xns : rooui.Toolbar  //Boostrap?
24324             },
24325          
24326             {
24327                 xtype : 'Button',
24328                 text: '-',
24329                 listeners : {
24330                     click : function (_self, e)
24331                     {
24332                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24333                         block().removeColumn();
24334                         syncValue();
24335                         toolbar.editorcore.onEditorEvent();
24336                     }
24337                 },
24338                 xns : rooui.Toolbar
24339             },
24340             {
24341                 xtype : 'Button',
24342                 text: '+',
24343                 listeners : {
24344                     click : function (_self, e)
24345                     {
24346                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24347                         block().addColumn();
24348                         syncValue();
24349                         toolbar.editorcore.onEditorEvent();
24350                     }
24351                 },
24352                 xns : rooui.Toolbar
24353             },
24354             // -------- ROWS
24355             {
24356                 xtype : 'TextItem',
24357                 text : "Rows: ",
24358                 xns : rooui.Toolbar  //Boostrap?
24359             },
24360          
24361             {
24362                 xtype : 'Button',
24363                 text: '-',
24364                 listeners : {
24365                     click : function (_self, e)
24366                     {
24367                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24368                         block().removeRow();
24369                         syncValue();
24370                         toolbar.editorcore.onEditorEvent();
24371                     }
24372                 },
24373                 xns : rooui.Toolbar
24374             },
24375             {
24376                 xtype : 'Button',
24377                 text: '+',
24378                 listeners : {
24379                     click : function (_self, e)
24380                     {
24381                         block().addRow();
24382                         syncValue();
24383                         toolbar.editorcore.onEditorEvent();
24384                     }
24385                 },
24386                 xns : rooui.Toolbar
24387             },
24388             // -------- ROWS
24389             {
24390                 xtype : 'Button',
24391                 text: 'Reset Column Widths',
24392                 listeners : {
24393                     
24394                     click : function (_self, e)
24395                     {
24396                         block().resetWidths();
24397                         syncValue();
24398                         toolbar.editorcore.onEditorEvent();
24399                     }
24400                 },
24401                 xns : rooui.Toolbar
24402             } 
24403             
24404             
24405             
24406         ];
24407         
24408     },
24409     
24410     
24411   /**
24412      * create a DomHelper friendly object - for use with
24413      * Roo.DomHelper.markup / overwrite / etc..
24414      * ?? should it be called with option to hide all editing features?
24415      */
24416     toObject : function()
24417     {
24418         
24419         var ret = {
24420             tag : 'table',
24421             contenteditable : 'false', // this stops cell selection from picking the table.
24422             'data-block' : 'Table',
24423             style : {
24424                 width:  this.width,
24425                 border : 'solid 1px #000', // ??? hard coded?
24426                 'border-collapse' : 'collapse' 
24427             },
24428             cn : [
24429                 { tag : 'tbody' , cn : [] }
24430             ]
24431         };
24432         
24433         // do we have a head = not really 
24434         var ncols = 0;
24435         Roo.each(this.rows, function( row ) {
24436             var tr = {
24437                 tag: 'tr',
24438                 style : {
24439                     margin: '6px',
24440                     border : 'solid 1px #000',
24441                     textAlign : 'left' 
24442                 },
24443                 cn : [ ]
24444             };
24445             
24446             ret.cn[0].cn.push(tr);
24447             // does the row have any properties? ?? height?
24448             var nc = 0;
24449             Roo.each(row, function( cell ) {
24450                 
24451                 var td = {
24452                     tag : 'td',
24453                     contenteditable :  'true',
24454                     'data-block' : 'Td',
24455                     html : cell.html,
24456                     style : cell.style
24457                 };
24458                 if (cell.colspan > 1) {
24459                     td.colspan = cell.colspan ;
24460                     nc += cell.colspan;
24461                 } else {
24462                     nc++;
24463                 }
24464                 if (cell.rowspan > 1) {
24465                     td.rowspan = cell.rowspan ;
24466                 }
24467                 
24468                 
24469                 // widths ?
24470                 tr.cn.push(td);
24471                     
24472                 
24473             }, this);
24474             ncols = Math.max(nc, ncols);
24475             
24476             
24477         }, this);
24478         // add the header row..
24479         
24480         ncols++;
24481          
24482         
24483         return ret;
24484          
24485     },
24486     
24487     readElement : function(node)
24488     {
24489         node  = node ? node : this.node ;
24490         this.width = this.getVal(node, true, 'style', 'width') || '100%';
24491         
24492         this.rows = [];
24493         this.no_row = 0;
24494         var trs = Array.from(node.rows);
24495         trs.forEach(function(tr) {
24496             var row =  [];
24497             this.rows.push(row);
24498             
24499             this.no_row++;
24500             var no_column = 0;
24501             Array.from(tr.cells).forEach(function(td) {
24502                 
24503                 var add = {
24504                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
24505                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
24506                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
24507                     html : td.innerHTML
24508                 };
24509                 no_column += add.colspan;
24510                      
24511                 
24512                 row.push(add);
24513                 
24514                 
24515             },this);
24516             this.no_col = Math.max(this.no_col, no_column);
24517             
24518             
24519         },this);
24520         
24521         
24522     },
24523     normalizeRows: function()
24524     {
24525         var ret= [];
24526         var rid = -1;
24527         this.rows.forEach(function(row) {
24528             rid++;
24529             ret[rid] = [];
24530             row = this.normalizeRow(row);
24531             var cid = 0;
24532             row.forEach(function(c) {
24533                 while (typeof(ret[rid][cid]) != 'undefined') {
24534                     cid++;
24535                 }
24536                 if (typeof(ret[rid]) == 'undefined') {
24537                     ret[rid] = [];
24538                 }
24539                 ret[rid][cid] = c;
24540                 c.row = rid;
24541                 c.col = cid;
24542                 if (c.rowspan < 2) {
24543                     return;
24544                 }
24545                 
24546                 for(var i = 1 ;i < c.rowspan; i++) {
24547                     if (typeof(ret[rid+i]) == 'undefined') {
24548                         ret[rid+i] = [];
24549                     }
24550                     ret[rid+i][cid] = c;
24551                 }
24552             });
24553         }, this);
24554         return ret;
24555     
24556     },
24557     
24558     normalizeRow: function(row)
24559     {
24560         var ret= [];
24561         row.forEach(function(c) {
24562             if (c.colspan < 2) {
24563                 ret.push(c);
24564                 return;
24565             }
24566             for(var i =0 ;i < c.colspan; i++) {
24567                 ret.push(c);
24568             }
24569         });
24570         return ret;
24571     
24572     },
24573     
24574     deleteColumn : function(sel)
24575     {
24576         if (!sel || sel.type != 'col') {
24577             return;
24578         }
24579         if (this.no_col < 2) {
24580             return;
24581         }
24582         
24583         this.rows.forEach(function(row) {
24584             var cols = this.normalizeRow(row);
24585             var col = cols[sel.col];
24586             if (col.colspan > 1) {
24587                 col.colspan --;
24588             } else {
24589                 row.remove(col);
24590             }
24591             
24592         }, this);
24593         this.no_col--;
24594         
24595     },
24596     removeColumn : function()
24597     {
24598         this.deleteColumn({
24599             type: 'col',
24600             col : this.no_col-1
24601         });
24602         this.updateElement();
24603     },
24604     
24605      
24606     addColumn : function()
24607     {
24608         
24609         this.rows.forEach(function(row) {
24610             row.push(this.emptyCell());
24611            
24612         }, this);
24613         this.updateElement();
24614     },
24615     
24616     deleteRow : function(sel)
24617     {
24618         if (!sel || sel.type != 'row') {
24619             return;
24620         }
24621         
24622         if (this.no_row < 2) {
24623             return;
24624         }
24625         
24626         var rows = this.normalizeRows();
24627         
24628         
24629         rows[sel.row].forEach(function(col) {
24630             if (col.rowspan > 1) {
24631                 col.rowspan--;
24632             } else {
24633                 col.remove = 1; // flage it as removed.
24634             }
24635             
24636         }, this);
24637         var newrows = [];
24638         this.rows.forEach(function(row) {
24639             newrow = [];
24640             row.forEach(function(c) {
24641                 if (typeof(c.remove) == 'undefined') {
24642                     newrow.push(c);
24643                 }
24644                 
24645             });
24646             if (newrow.length > 0) {
24647                 newrows.push(row);
24648             }
24649         });
24650         this.rows =  newrows;
24651         
24652         
24653         
24654         this.no_row--;
24655         this.updateElement();
24656         
24657     },
24658     removeRow : function()
24659     {
24660         this.deleteRow({
24661             type: 'row',
24662             row : this.no_row-1
24663         });
24664         
24665     },
24666     
24667      
24668     addRow : function()
24669     {
24670         
24671         var row = [];
24672         for (var i = 0; i < this.no_col; i++ ) {
24673             
24674             row.push(this.emptyCell());
24675            
24676         }
24677         this.rows.push(row);
24678         this.updateElement();
24679         
24680     },
24681      
24682     // the default cell object... at present...
24683     emptyCell : function() {
24684         return (new Roo.htmleditor.BlockTd({})).toObject();
24685         
24686      
24687     },
24688     
24689     removeNode : function()
24690     {
24691         return this.node;
24692     },
24693     
24694     
24695     
24696     resetWidths : function()
24697     {
24698         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
24699             var nn = Roo.htmleditor.Block.factory(n);
24700             nn.width = '';
24701             nn.updateElement(n);
24702         });
24703     }
24704     
24705     
24706     
24707     
24708 })
24709
24710 /**
24711  *
24712  * editing a TD?
24713  *
24714  * since selections really work on the table cell, then editing really should work from there
24715  *
24716  * The original plan was to support merging etc... - but that may not be needed yet..
24717  *
24718  * So this simple version will support:
24719  *   add/remove cols
24720  *   adjust the width +/-
24721  *   reset the width...
24722  *   
24723  *
24724  */
24725
24726
24727  
24728
24729 /**
24730  * @class Roo.htmleditor.BlockTable
24731  * Block that manages a table
24732  * 
24733  * @constructor
24734  * Create a new Filter.
24735  * @param {Object} config Configuration options
24736  */
24737
24738 Roo.htmleditor.BlockTd = function(cfg)
24739 {
24740     if (cfg.node) {
24741         this.readElement(cfg.node);
24742         this.updateElement(cfg.node);
24743     }
24744     Roo.apply(this, cfg);
24745      
24746     
24747     
24748 }
24749 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
24750  
24751     node : false,
24752     
24753     width: '',
24754     textAlign : 'left',
24755     valign : 'top',
24756     
24757     colspan : 1,
24758     rowspan : 1,
24759     
24760     
24761     // used by context menu
24762     friendly_name : 'Table Cell',
24763     deleteTitle : false, // use our customer delete
24764     
24765     // context menu is drawn once..
24766     
24767     contextMenu : function(toolbar)
24768     {
24769         
24770         var cell = function() {
24771             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
24772         };
24773         
24774         var table = function() {
24775             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
24776         };
24777         
24778         var lr = false;
24779         var saveSel = function()
24780         {
24781             lr = toolbar.editorcore.getSelection().getRangeAt(0);
24782         }
24783         var restoreSel = function()
24784         {
24785             if (lr) {
24786                 (function() {
24787                     toolbar.editorcore.focus();
24788                     var cr = toolbar.editorcore.getSelection();
24789                     cr.removeAllRanges();
24790                     cr.addRange(lr);
24791                     toolbar.editorcore.onEditorEvent();
24792                 }).defer(10, this);
24793                 
24794                 
24795             }
24796         }
24797         
24798         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
24799         
24800         var syncValue = toolbar.editorcore.syncValue;
24801         
24802         var fields = {};
24803         
24804         return [
24805             {
24806                 xtype : 'Button',
24807                 text : 'Edit Table',
24808                 listeners : {
24809                     click : function() {
24810                         var t = toolbar.tb.selectedNode.closest('table');
24811                         toolbar.editorcore.selectNode(t);
24812                         toolbar.editorcore.onEditorEvent();                        
24813                     }
24814                 }
24815                 
24816             },
24817               
24818            
24819              
24820             {
24821                 xtype : 'TextItem',
24822                 text : "Column Width: ",
24823                  xns : rooui.Toolbar 
24824                
24825             },
24826             {
24827                 xtype : 'Button',
24828                 text: '-',
24829                 listeners : {
24830                     click : function (_self, e)
24831                     {
24832                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24833                         cell().shrinkColumn();
24834                         syncValue();
24835                          toolbar.editorcore.onEditorEvent();
24836                     }
24837                 },
24838                 xns : rooui.Toolbar
24839             },
24840             {
24841                 xtype : 'Button',
24842                 text: '+',
24843                 listeners : {
24844                     click : function (_self, e)
24845                     {
24846                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24847                         cell().growColumn();
24848                         syncValue();
24849                         toolbar.editorcore.onEditorEvent();
24850                     }
24851                 },
24852                 xns : rooui.Toolbar
24853             },
24854             
24855             {
24856                 xtype : 'TextItem',
24857                 text : "Vertical Align: ",
24858                 xns : rooui.Toolbar  //Boostrap?
24859             },
24860             {
24861                 xtype : 'ComboBox',
24862                 allowBlank : false,
24863                 displayField : 'val',
24864                 editable : true,
24865                 listWidth : 100,
24866                 triggerAction : 'all',
24867                 typeAhead : true,
24868                 valueField : 'val',
24869                 width : 100,
24870                 name : 'valign',
24871                 listeners : {
24872                     select : function (combo, r, index)
24873                     {
24874                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24875                         var b = cell();
24876                         b.valign = r.get('val');
24877                         b.updateElement();
24878                         syncValue();
24879                         toolbar.editorcore.onEditorEvent();
24880                     }
24881                 },
24882                 xns : rooui.form,
24883                 store : {
24884                     xtype : 'SimpleStore',
24885                     data : [
24886                         ['top'],
24887                         ['middle'],
24888                         ['bottom'] // there are afew more... 
24889                     ],
24890                     fields : [ 'val'],
24891                     xns : Roo.data
24892                 }
24893             },
24894             
24895             {
24896                 xtype : 'TextItem',
24897                 text : "Merge Cells: ",
24898                  xns : rooui.Toolbar 
24899                
24900             },
24901             
24902             
24903             {
24904                 xtype : 'Button',
24905                 text: 'Right',
24906                 listeners : {
24907                     click : function (_self, e)
24908                     {
24909                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24910                         cell().mergeRight();
24911                         //block().growColumn();
24912                         syncValue();
24913                         toolbar.editorcore.onEditorEvent();
24914                     }
24915                 },
24916                 xns : rooui.Toolbar
24917             },
24918              
24919             {
24920                 xtype : 'Button',
24921                 text: 'Below',
24922                 listeners : {
24923                     click : function (_self, e)
24924                     {
24925                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24926                         cell().mergeBelow();
24927                         //block().growColumn();
24928                         syncValue();
24929                         toolbar.editorcore.onEditorEvent();
24930                     }
24931                 },
24932                 xns : rooui.Toolbar
24933             },
24934             {
24935                 xtype : 'TextItem',
24936                 text : "| ",
24937                  xns : rooui.Toolbar 
24938                
24939             },
24940             
24941             {
24942                 xtype : 'Button',
24943                 text: 'Split',
24944                 listeners : {
24945                     click : function (_self, e)
24946                     {
24947                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24948                         cell().split();
24949                         syncValue();
24950                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24951                         toolbar.editorcore.onEditorEvent();
24952                                              
24953                     }
24954                 },
24955                 xns : rooui.Toolbar
24956             },
24957             {
24958                 xtype : 'Fill',
24959                 xns : rooui.Toolbar 
24960                
24961             },
24962         
24963           
24964             {
24965                 xtype : 'Button',
24966                 text: 'Delete',
24967                  
24968                 xns : rooui.Toolbar,
24969                 menu : {
24970                     xtype : 'Menu',
24971                     xns : rooui.menu,
24972                     items : [
24973                         {
24974                             xtype : 'Item',
24975                             html: 'Column',
24976                             listeners : {
24977                                 click : function (_self, e)
24978                                 {
24979                                     var t = table();
24980                                     
24981                                     cell().deleteColumn();
24982                                     syncValue();
24983                                     toolbar.editorcore.selectNode(t.node);
24984                                     toolbar.editorcore.onEditorEvent();   
24985                                 }
24986                             },
24987                             xns : rooui.menu
24988                         },
24989                         {
24990                             xtype : 'Item',
24991                             html: 'Row',
24992                             listeners : {
24993                                 click : function (_self, e)
24994                                 {
24995                                     var t = table();
24996                                     cell().deleteRow();
24997                                     syncValue();
24998                                     
24999                                     toolbar.editorcore.selectNode(t.node);
25000                                     toolbar.editorcore.onEditorEvent();   
25001                                                          
25002                                 }
25003                             },
25004                             xns : rooui.menu
25005                         },
25006                        {
25007                             xtype : 'Separator',
25008                             xns : rooui.menu
25009                         },
25010                         {
25011                             xtype : 'Item',
25012                             html: 'Table',
25013                             listeners : {
25014                                 click : function (_self, e)
25015                                 {
25016                                     var t = table();
25017                                     var nn = t.node.nextSibling || t.node.previousSibling;
25018                                     t.node.parentNode.removeChild(t.node);
25019                                     if (nn) { 
25020                                         toolbar.editorcore.selectNode(nn, true);
25021                                     }
25022                                     toolbar.editorcore.onEditorEvent();   
25023                                                          
25024                                 }
25025                             },
25026                             xns : rooui.menu
25027                         }
25028                     ]
25029                 }
25030             }
25031             
25032             // align... << fixme
25033             
25034         ];
25035         
25036     },
25037     
25038     
25039   /**
25040      * create a DomHelper friendly object - for use with
25041      * Roo.DomHelper.markup / overwrite / etc..
25042      * ?? should it be called with option to hide all editing features?
25043      */
25044  /**
25045      * create a DomHelper friendly object - for use with
25046      * Roo.DomHelper.markup / overwrite / etc..
25047      * ?? should it be called with option to hide all editing features?
25048      */
25049     toObject : function()
25050     {
25051         var ret = {
25052             tag : 'td',
25053             contenteditable : 'true', // this stops cell selection from picking the table.
25054             'data-block' : 'Td',
25055             valign : this.valign,
25056             style : {  
25057                 'text-align' :  this.textAlign,
25058                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
25059                 'border-collapse' : 'collapse',
25060                 padding : '6px', // 8 for desktop / 4 for mobile
25061                 'vertical-align': this.valign
25062             },
25063             html : this.html
25064         };
25065         if (this.width != '') {
25066             ret.width = this.width;
25067             ret.style.width = this.width;
25068         }
25069         
25070         
25071         if (this.colspan > 1) {
25072             ret.colspan = this.colspan ;
25073         } 
25074         if (this.rowspan > 1) {
25075             ret.rowspan = this.rowspan ;
25076         }
25077         
25078            
25079         
25080         return ret;
25081          
25082     },
25083     
25084     readElement : function(node)
25085     {
25086         node  = node ? node : this.node ;
25087         this.width = node.style.width;
25088         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
25089         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
25090         this.html = node.innerHTML;
25091         if (node.style.textAlign != '') {
25092             this.textAlign = node.style.textAlign;
25093         }
25094         
25095         
25096     },
25097      
25098     // the default cell object... at present...
25099     emptyCell : function() {
25100         return {
25101             colspan :  1,
25102             rowspan :  1,
25103             textAlign : 'left',
25104             html : "&nbsp;" // is this going to be editable now?
25105         };
25106      
25107     },
25108     
25109     removeNode : function()
25110     {
25111         return this.node.closest('table');
25112          
25113     },
25114     
25115     cellData : false,
25116     
25117     colWidths : false,
25118     
25119     toTableArray  : function()
25120     {
25121         var ret = [];
25122         var tab = this.node.closest('tr').closest('table');
25123         Array.from(tab.rows).forEach(function(r, ri){
25124             ret[ri] = [];
25125         });
25126         var rn = 0;
25127         this.colWidths = [];
25128         var all_auto = true;
25129         Array.from(tab.rows).forEach(function(r, ri){
25130             
25131             var cn = 0;
25132             Array.from(r.cells).forEach(function(ce, ci){
25133                 var c =  {
25134                     cell : ce,
25135                     row : rn,
25136                     col: cn,
25137                     colspan : ce.colSpan,
25138                     rowspan : ce.rowSpan
25139                 };
25140                 if (ce.isEqualNode(this.node)) {
25141                     this.cellData = c;
25142                 }
25143                 // if we have been filled up by a row?
25144                 if (typeof(ret[rn][cn]) != 'undefined') {
25145                     while(typeof(ret[rn][cn]) != 'undefined') {
25146                         cn++;
25147                     }
25148                     c.col = cn;
25149                 }
25150                 
25151                 if (typeof(this.colWidths[cn]) == 'undefined' && c.colspan < 2) {
25152                     this.colWidths[cn] =   ce.style.width;
25153                     if (this.colWidths[cn] != '') {
25154                         all_auto = false;
25155                     }
25156                 }
25157                 
25158                 
25159                 if (c.colspan < 2 && c.rowspan < 2 ) {
25160                     ret[rn][cn] = c;
25161                     cn++;
25162                     return;
25163                 }
25164                 for(var j = 0; j < c.rowspan; j++) {
25165                     if (typeof(ret[rn+j]) == 'undefined') {
25166                         continue; // we have a problem..
25167                     }
25168                     ret[rn+j][cn] = c;
25169                     for(var i = 0; i < c.colspan; i++) {
25170                         ret[rn+j][cn+i] = c;
25171                     }
25172                 }
25173                 
25174                 cn += c.colspan;
25175             }, this);
25176             rn++;
25177         }, this);
25178         
25179         // initalize widths.?
25180         // either all widths or no widths..
25181         if (all_auto) {
25182             this.colWidths[0] = false; // no widths flag.
25183         }
25184         
25185         
25186         return ret;
25187         
25188     },
25189     
25190     
25191     
25192     
25193     mergeRight: function()
25194     {
25195          
25196         // get the contents of the next cell along..
25197         var tr = this.node.closest('tr');
25198         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
25199         if (i >= tr.childNodes.length - 1) {
25200             return; // no cells on right to merge with.
25201         }
25202         var table = this.toTableArray();
25203         
25204         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
25205             return; // nothing right?
25206         }
25207         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
25208         // right cell - must be same rowspan and on the same row.
25209         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
25210             return; // right hand side is not same rowspan.
25211         }
25212         
25213         
25214         
25215         this.node.innerHTML += ' ' + rc.cell.innerHTML;
25216         tr.removeChild(rc.cell);
25217         this.colspan += rc.colspan;
25218         this.node.setAttribute('colspan', this.colspan);
25219
25220         var table = this.toTableArray();
25221         this.normalizeWidths(table);
25222         this.updateWidths(table);
25223     },
25224     
25225     
25226     mergeBelow : function()
25227     {
25228         var table = this.toTableArray();
25229         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
25230             return; // no row below
25231         }
25232         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
25233             return; // nothing right?
25234         }
25235         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
25236         
25237         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
25238             return; // right hand side is not same rowspan.
25239         }
25240         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
25241         rc.cell.parentNode.removeChild(rc.cell);
25242         this.rowspan += rc.rowspan;
25243         this.node.setAttribute('rowspan', this.rowspan);
25244     },
25245     
25246     split: function()
25247     {
25248         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
25249             return;
25250         }
25251         var table = this.toTableArray();
25252         var cd = this.cellData;
25253         this.rowspan = 1;
25254         this.colspan = 1;
25255         
25256         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
25257              
25258             
25259             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
25260                 if (r == cd.row && c == cd.col) {
25261                     this.node.removeAttribute('rowspan');
25262                     this.node.removeAttribute('colspan');
25263                 }
25264                  
25265                 var ntd = this.node.cloneNode(); // which col/row should be 0..
25266                 ntd.removeAttribute('id'); 
25267                 ntd.style.width  = this.colWidths[c];
25268                 ntd.innerHTML = '';
25269                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
25270             }
25271             
25272         }
25273         this.redrawAllCells(table);
25274         
25275     },
25276     
25277     
25278     
25279     redrawAllCells: function(table)
25280     {
25281         
25282          
25283         var tab = this.node.closest('tr').closest('table');
25284         var ctr = tab.rows[0].parentNode;
25285         Array.from(tab.rows).forEach(function(r, ri){
25286             
25287             Array.from(r.cells).forEach(function(ce, ci){
25288                 ce.parentNode.removeChild(ce);
25289             });
25290             r.parentNode.removeChild(r);
25291         });
25292         for(var r = 0 ; r < table.length; r++) {
25293             var re = tab.rows[r];
25294             
25295             var re = tab.ownerDocument.createElement('tr');
25296             ctr.appendChild(re);
25297             for(var c = 0 ; c < table[r].length; c++) {
25298                 if (table[r][c].cell === false) {
25299                     continue;
25300                 }
25301                 
25302                 re.appendChild(table[r][c].cell);
25303                  
25304                 table[r][c].cell = false;
25305             }
25306         }
25307         
25308     },
25309     updateWidths : function(table)
25310     {
25311         for(var r = 0 ; r < table.length; r++) {
25312            
25313             for(var c = 0 ; c < table[r].length; c++) {
25314                 if (table[r][c].cell === false) {
25315                     continue;
25316                 }
25317                 
25318                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
25319                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
25320                     el.width = Math.floor(this.colWidths[c])  +'%';
25321                     el.updateElement(el.node);
25322                 }
25323                 if (this.colWidths[0] != false && table[r][c].colspan > 1) {
25324                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
25325                     var width = 0;
25326                     for(var i = 0; i < table[r][c].colspan; i ++) {
25327                         width += Math.floor(this.colWidths[c + i]);
25328                     }
25329                     el.width = width  +'%';
25330                     el.updateElement(el.node);
25331                 }
25332                 table[r][c].cell = false; // done
25333             }
25334         }
25335     },
25336     normalizeWidths : function(table)
25337     {
25338         if (this.colWidths[0] === false) {
25339             var nw = 100.0 / this.colWidths.length;
25340             this.colWidths.forEach(function(w,i) {
25341                 this.colWidths[i] = nw;
25342             },this);
25343             return;
25344         }
25345     
25346         var t = 0, missing = [];
25347         
25348         this.colWidths.forEach(function(w,i) {
25349             //if you mix % and
25350             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
25351             var add =  this.colWidths[i];
25352             if (add > 0) {
25353                 t+=add;
25354                 return;
25355             }
25356             missing.push(i);
25357             
25358             
25359         },this);
25360         var nc = this.colWidths.length;
25361         if (missing.length) {
25362             var mult = (nc - missing.length) / (1.0 * nc);
25363             var t = mult * t;
25364             var ew = (100 -t) / (1.0 * missing.length);
25365             this.colWidths.forEach(function(w,i) {
25366                 if (w > 0) {
25367                     this.colWidths[i] = w * mult;
25368                     return;
25369                 }
25370                 
25371                 this.colWidths[i] = ew;
25372             }, this);
25373             // have to make up numbers..
25374              
25375         }
25376         // now we should have all the widths..
25377         
25378     
25379     },
25380     
25381     shrinkColumn : function()
25382     {
25383         var table = this.toTableArray();
25384         this.normalizeWidths(table);
25385         var col = this.cellData.col;
25386         var nw = this.colWidths[col] * 0.8;
25387         if (nw < 5) {
25388             return;
25389         }
25390         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
25391         this.colWidths.forEach(function(w,i) {
25392             if (i == col) {
25393                  this.colWidths[i] = nw;
25394                 return;
25395             }
25396             this.colWidths[i] += otherAdd
25397         }, this);
25398         this.updateWidths(table);
25399          
25400     },
25401     growColumn : function()
25402     {
25403         var table = this.toTableArray();
25404         this.normalizeWidths(table);
25405         var col = this.cellData.col;
25406         var nw = this.colWidths[col] * 1.2;
25407         if (nw > 90) {
25408             return;
25409         }
25410         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
25411         this.colWidths.forEach(function(w,i) {
25412             if (i == col) {
25413                 this.colWidths[i] = nw;
25414                 return;
25415             }
25416             this.colWidths[i] -= otherSub
25417         }, this);
25418         this.updateWidths(table);
25419          
25420     },
25421     deleteRow : function()
25422     {
25423         // delete this rows 'tr'
25424         // if any of the cells in this row have a rowspan > 1 && row!= this row..
25425         // then reduce the rowspan.
25426         var table = this.toTableArray();
25427         // this.cellData.row;
25428         for (var i =0;i< table[this.cellData.row].length ; i++) {
25429             var c = table[this.cellData.row][i];
25430             if (c.row != this.cellData.row) {
25431                 
25432                 c.rowspan--;
25433                 c.cell.setAttribute('rowspan', c.rowspan);
25434                 continue;
25435             }
25436             if (c.rowspan > 1) {
25437                 c.rowspan--;
25438                 c.cell.setAttribute('rowspan', c.rowspan);
25439             }
25440         }
25441         table.splice(this.cellData.row,1);
25442         this.redrawAllCells(table);
25443         
25444     },
25445     deleteColumn : function()
25446     {
25447         var table = this.toTableArray();
25448         
25449         for (var i =0;i< table.length ; i++) {
25450             var c = table[i][this.cellData.col];
25451             if (c.col != this.cellData.col) {
25452                 table[i][this.cellData.col].colspan--;
25453             } else if (c.colspan > 1) {
25454                 c.colspan--;
25455                 c.cell.setAttribute('colspan', c.colspan);
25456             }
25457             table[i].splice(this.cellData.col,1);
25458         }
25459         
25460         this.redrawAllCells(table);
25461     }
25462     
25463     
25464     
25465     
25466 })
25467
25468 //<script type="text/javascript">
25469
25470 /*
25471  * Based  Ext JS Library 1.1.1
25472  * Copyright(c) 2006-2007, Ext JS, LLC.
25473  * LGPL
25474  *
25475  */
25476  
25477 /**
25478  * @class Roo.HtmlEditorCore
25479  * @extends Roo.Component
25480  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
25481  *
25482  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
25483  */
25484
25485 Roo.HtmlEditorCore = function(config){
25486     
25487     
25488     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
25489     
25490     
25491     this.addEvents({
25492         /**
25493          * @event initialize
25494          * Fires when the editor is fully initialized (including the iframe)
25495          * @param {Roo.HtmlEditorCore} this
25496          */
25497         initialize: true,
25498         /**
25499          * @event activate
25500          * Fires when the editor is first receives the focus. Any insertion must wait
25501          * until after this event.
25502          * @param {Roo.HtmlEditorCore} this
25503          */
25504         activate: true,
25505          /**
25506          * @event beforesync
25507          * Fires before the textarea is updated with content from the editor iframe. Return false
25508          * to cancel the sync.
25509          * @param {Roo.HtmlEditorCore} this
25510          * @param {String} html
25511          */
25512         beforesync: true,
25513          /**
25514          * @event beforepush
25515          * Fires before the iframe editor is updated with content from the textarea. Return false
25516          * to cancel the push.
25517          * @param {Roo.HtmlEditorCore} this
25518          * @param {String} html
25519          */
25520         beforepush: true,
25521          /**
25522          * @event sync
25523          * Fires when the textarea is updated with content from the editor iframe.
25524          * @param {Roo.HtmlEditorCore} this
25525          * @param {String} html
25526          */
25527         sync: true,
25528          /**
25529          * @event push
25530          * Fires when the iframe editor is updated with content from the textarea.
25531          * @param {Roo.HtmlEditorCore} this
25532          * @param {String} html
25533          */
25534         push: true,
25535         
25536         /**
25537          * @event editorevent
25538          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
25539          * @param {Roo.HtmlEditorCore} this
25540          */
25541         editorevent: true 
25542         
25543         
25544     });
25545     
25546     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
25547     
25548     // defaults : white / black...
25549     this.applyBlacklists();
25550     
25551     
25552     
25553 };
25554
25555
25556 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
25557
25558
25559      /**
25560      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
25561      */
25562     
25563     owner : false,
25564     
25565      /**
25566      * @cfg {String} css styling for resizing. (used on bootstrap only)
25567      */
25568     resize : false,
25569      /**
25570      * @cfg {Number} height (in pixels)
25571      */   
25572     height: 300,
25573    /**
25574      * @cfg {Number} width (in pixels)
25575      */   
25576     width: 500,
25577      /**
25578      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
25579      *         if you are doing an email editor, this probably needs disabling, it's designed
25580      */
25581     autoClean: true,
25582     
25583     /**
25584      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
25585      */
25586     enableBlocks : true,
25587     /**
25588      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
25589      * 
25590      */
25591     stylesheets: false,
25592      /**
25593      * @cfg {String} language default en - language of text (usefull for rtl languages)
25594      * 
25595      */
25596     language: 'en',
25597     
25598     /**
25599      * @cfg {boolean} allowComments - default false - allow comments in HTML source
25600      *          - by default they are stripped - if you are editing email you may need this.
25601      */
25602     allowComments: false,
25603     // id of frame..
25604     frameId: false,
25605     
25606     // private properties
25607     validationEvent : false,
25608     deferHeight: true,
25609     initialized : false,
25610     activated : false,
25611     sourceEditMode : false,
25612     onFocus : Roo.emptyFn,
25613     iframePad:3,
25614     hideMode:'offsets',
25615     
25616     clearUp: true,
25617     
25618     // blacklist + whitelisted elements..
25619     black: false,
25620     white: false,
25621      
25622     bodyCls : '',
25623
25624     
25625     undoManager : false,
25626     /**
25627      * Protected method that will not generally be called directly. It
25628      * is called when the editor initializes the iframe with HTML contents. Override this method if you
25629      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
25630      */
25631     getDocMarkup : function(){
25632         // body styles..
25633         var st = '';
25634         
25635         // inherit styels from page...?? 
25636         if (this.stylesheets === false) {
25637             
25638             Roo.get(document.head).select('style').each(function(node) {
25639                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
25640             });
25641             
25642             Roo.get(document.head).select('link').each(function(node) { 
25643                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
25644             });
25645             
25646         } else if (!this.stylesheets.length) {
25647                 // simple..
25648                 st = '<style type="text/css">' +
25649                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
25650                    '</style>';
25651         } else {
25652             for (var i in this.stylesheets) {
25653                 if (typeof(this.stylesheets[i]) != 'string') {
25654                     continue;
25655                 }
25656                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
25657             }
25658             
25659         }
25660         
25661         st +=  '<style type="text/css">' +
25662             'IMG { cursor: pointer } ' +
25663         '</style>';
25664         
25665         st += '<meta name="google" content="notranslate">';
25666         
25667         var cls = 'notranslate roo-htmleditor-body';
25668         
25669         if(this.bodyCls.length){
25670             cls += ' ' + this.bodyCls;
25671         }
25672         
25673         return '<html  class="notranslate" translate="no"><head>' + st  +
25674             //<style type="text/css">' +
25675             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
25676             //'</style>' +
25677             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
25678     },
25679
25680     // private
25681     onRender : function(ct, position)
25682     {
25683         var _t = this;
25684         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
25685         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
25686         
25687         
25688         this.el.dom.style.border = '0 none';
25689         this.el.dom.setAttribute('tabIndex', -1);
25690         this.el.addClass('x-hidden hide');
25691         
25692         
25693         
25694         if(Roo.isIE){ // fix IE 1px bogus margin
25695             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
25696         }
25697        
25698         
25699         this.frameId = Roo.id();
25700         
25701         var ifcfg = {
25702             tag: 'iframe',
25703             cls: 'form-control', // bootstrap..
25704             id: this.frameId,
25705             name: this.frameId,
25706             frameBorder : 'no',
25707             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
25708         };
25709         if (this.resize) {
25710             ifcfg.style = { resize : this.resize };
25711         }
25712         
25713         var iframe = this.owner.wrap.createChild(ifcfg, this.el); 
25714         
25715         
25716         this.iframe = iframe.dom;
25717
25718         this.assignDocWin();
25719         
25720         this.doc.designMode = 'on';
25721        
25722         this.doc.open();
25723         this.doc.write(this.getDocMarkup());
25724         this.doc.close();
25725
25726         
25727         var task = { // must defer to wait for browser to be ready
25728             run : function(){
25729                 //console.log("run task?" + this.doc.readyState);
25730                 this.assignDocWin();
25731                 if(this.doc.body || this.doc.readyState == 'complete'){
25732                     try {
25733                         this.doc.designMode="on";
25734                         
25735                     } catch (e) {
25736                         return;
25737                     }
25738                     Roo.TaskMgr.stop(task);
25739                     this.initEditor.defer(10, this);
25740                 }
25741             },
25742             interval : 10,
25743             duration: 10000,
25744             scope: this
25745         };
25746         Roo.TaskMgr.start(task);
25747
25748     },
25749
25750     // private
25751     onResize : function(w, h)
25752     {
25753          Roo.log('resize: ' +w + ',' + h );
25754         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
25755         if(!this.iframe){
25756             return;
25757         }
25758         if(typeof w == 'number'){
25759             
25760             this.iframe.style.width = w + 'px';
25761         }
25762         if(typeof h == 'number'){
25763             
25764             this.iframe.style.height = h + 'px';
25765             if(this.doc){
25766                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
25767             }
25768         }
25769         
25770     },
25771
25772     /**
25773      * Toggles the editor between standard and source edit mode.
25774      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
25775      */
25776     toggleSourceEdit : function(sourceEditMode){
25777         
25778         this.sourceEditMode = sourceEditMode === true;
25779         
25780         if(this.sourceEditMode){
25781  
25782             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
25783             
25784         }else{
25785             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
25786             //this.iframe.className = '';
25787             this.deferFocus();
25788         }
25789         //this.setSize(this.owner.wrap.getSize());
25790         //this.fireEvent('editmodechange', this, this.sourceEditMode);
25791     },
25792
25793     
25794   
25795
25796     /**
25797      * Protected method that will not generally be called directly. If you need/want
25798      * custom HTML cleanup, this is the method you should override.
25799      * @param {String} html The HTML to be cleaned
25800      * return {String} The cleaned HTML
25801      */
25802     cleanHtml : function(html)
25803     {
25804         html = String(html);
25805         if(html.length > 5){
25806             if(Roo.isSafari){ // strip safari nonsense
25807                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
25808             }
25809         }
25810         if(html == '&nbsp;'){
25811             html = '';
25812         }
25813         return html;
25814     },
25815
25816     /**
25817      * HTML Editor -> Textarea
25818      * Protected method that will not generally be called directly. Syncs the contents
25819      * of the editor iframe with the textarea.
25820      */
25821     syncValue : function()
25822     {
25823         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
25824         if(this.initialized){
25825             
25826             if (this.undoManager) {
25827                 this.undoManager.addEvent();
25828             }
25829
25830             
25831             var bd = (this.doc.body || this.doc.documentElement);
25832            
25833             
25834             var sel = this.win.getSelection();
25835             
25836             var div = document.createElement('div');
25837             div.innerHTML = bd.innerHTML;
25838             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
25839             if (gtx.length > 0) {
25840                 var rm = gtx.item(0).parentNode;
25841                 rm.parentNode.removeChild(rm);
25842             }
25843             
25844            
25845             if (this.enableBlocks) {
25846                 new Roo.htmleditor.FilterBlock({ node : div });
25847             }
25848             
25849             var html = div.innerHTML;
25850             
25851             //?? tidy?
25852             if (this.autoClean) {
25853                 
25854                 new Roo.htmleditor.FilterAttributes({
25855                     node : div,
25856                     attrib_white : [
25857                             'href',
25858                             'src',
25859                             'name',
25860                             'align',
25861                             'colspan',
25862                             'rowspan',
25863                             'data-display',
25864                             'data-caption-display',
25865                             'data-width',
25866                             'data-caption',
25867                             'start' ,
25868                             'style',
25869                             // youtube embed.
25870                             'class',
25871                             'allowfullscreen',
25872                             'frameborder',
25873                             'width',
25874                             'height',
25875                             'alt'
25876                             ],
25877                     attrib_clean : ['href', 'src' ] 
25878                 });
25879                 
25880                 var tidy = new Roo.htmleditor.TidySerializer({
25881                     inner:  true
25882                 });
25883                 html  = tidy.serialize(div);
25884                 
25885             }
25886             
25887             
25888             if(Roo.isSafari){
25889                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
25890                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
25891                 if(m && m[1]){
25892                     html = '<div style="'+m[0]+'">' + html + '</div>';
25893                 }
25894             }
25895             html = this.cleanHtml(html);
25896             // fix up the special chars.. normaly like back quotes in word...
25897             // however we do not want to do this with chinese..
25898             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
25899                 
25900                 var cc = match.charCodeAt();
25901
25902                 // Get the character value, handling surrogate pairs
25903                 if (match.length == 2) {
25904                     // It's a surrogate pair, calculate the Unicode code point
25905                     var high = match.charCodeAt(0) - 0xD800;
25906                     var low  = match.charCodeAt(1) - 0xDC00;
25907                     cc = (high * 0x400) + low + 0x10000;
25908                 }  else if (
25909                     (cc >= 0x4E00 && cc < 0xA000 ) ||
25910                     (cc >= 0x3400 && cc < 0x4E00 ) ||
25911                     (cc >= 0xf900 && cc < 0xfb00 )
25912                 ) {
25913                         return match;
25914                 }  
25915          
25916                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
25917                 return "&#" + cc + ";";
25918                 
25919                 
25920             });
25921             
25922             
25923              
25924             if(this.owner.fireEvent('beforesync', this, html) !== false){
25925                 this.el.dom.value = html;
25926                 this.owner.fireEvent('sync', this, html);
25927             }
25928         }
25929     },
25930
25931     /**
25932      * TEXTAREA -> EDITABLE
25933      * Protected method that will not generally be called directly. Pushes the value of the textarea
25934      * into the iframe editor.
25935      */
25936     pushValue : function()
25937     {
25938         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
25939         if(this.initialized){
25940             var v = this.el.dom.value.trim();
25941             
25942             
25943             if(this.owner.fireEvent('beforepush', this, v) !== false){
25944                 var d = (this.doc.body || this.doc.documentElement);
25945                 d.innerHTML = v;
25946                  
25947                 this.el.dom.value = d.innerHTML;
25948                 this.owner.fireEvent('push', this, v);
25949             }
25950             if (this.autoClean) {
25951                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
25952                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
25953             }
25954             if (this.enableBlocks) {
25955                 Roo.htmleditor.Block.initAll(this.doc.body);
25956             }
25957             
25958             this.updateLanguage();
25959             
25960             var lc = this.doc.body.lastChild;
25961             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
25962                 // add an extra line at the end.
25963                 this.doc.body.appendChild(this.doc.createElement('br'));
25964             }
25965             
25966             
25967         }
25968     },
25969
25970     // private
25971     deferFocus : function(){
25972         this.focus.defer(10, this);
25973     },
25974
25975     // doc'ed in Field
25976     focus : function(){
25977         if(this.win && !this.sourceEditMode){
25978             this.win.focus();
25979         }else{
25980             this.el.focus();
25981         }
25982     },
25983     
25984     assignDocWin: function()
25985     {
25986         var iframe = this.iframe;
25987         
25988          if(Roo.isIE){
25989             this.doc = iframe.contentWindow.document;
25990             this.win = iframe.contentWindow;
25991         } else {
25992 //            if (!Roo.get(this.frameId)) {
25993 //                return;
25994 //            }
25995 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
25996 //            this.win = Roo.get(this.frameId).dom.contentWindow;
25997             
25998             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
25999                 return;
26000             }
26001             
26002             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
26003             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
26004         }
26005     },
26006     
26007     // private
26008     initEditor : function(){
26009         //console.log("INIT EDITOR");
26010         this.assignDocWin();
26011         
26012         
26013         
26014         this.doc.designMode="on";
26015         this.doc.open();
26016         this.doc.write(this.getDocMarkup());
26017         this.doc.close();
26018         
26019         var dbody = (this.doc.body || this.doc.documentElement);
26020         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
26021         // this copies styles from the containing element into thsi one..
26022         // not sure why we need all of this..
26023         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
26024         
26025         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
26026         //ss['background-attachment'] = 'fixed'; // w3c
26027         dbody.bgProperties = 'fixed'; // ie
26028         dbody.setAttribute("translate", "no");
26029         
26030         //Roo.DomHelper.applyStyles(dbody, ss);
26031         Roo.EventManager.on(this.doc, {
26032              
26033             'mouseup': this.onEditorEvent,
26034             'dblclick': this.onEditorEvent,
26035             'click': this.onEditorEvent,
26036             'keyup': this.onEditorEvent,
26037             
26038             buffer:100,
26039             scope: this
26040         });
26041         Roo.EventManager.on(this.doc, {
26042             'paste': this.onPasteEvent,
26043             scope : this
26044         });
26045         if(Roo.isGecko){
26046             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
26047         }
26048         //??? needed???
26049         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
26050             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
26051         }
26052         this.initialized = true;
26053
26054         
26055         // initialize special key events - enter
26056         new Roo.htmleditor.KeyEnter({core : this});
26057         
26058          
26059         
26060         this.owner.fireEvent('initialize', this);
26061         this.pushValue();
26062     },
26063     // this is to prevent a href clicks resulting in a redirect?
26064    
26065     onPasteEvent : function(e,v)
26066     {
26067         // I think we better assume paste is going to be a dirty load of rubish from word..
26068         
26069         // even pasting into a 'email version' of this widget will have to clean up that mess.
26070         var cd = (e.browserEvent.clipboardData || window.clipboardData);
26071         
26072         // check what type of paste - if it's an image, then handle it differently.
26073         if (cd.files && cd.files.length > 0 && cd.types.indexOf('text/html') < 0) {
26074             // pasting images? 
26075             var urlAPI = (window.createObjectURL && window) || 
26076                 (window.URL && URL.revokeObjectURL && URL) || 
26077                 (window.webkitURL && webkitURL);
26078             
26079             var r = new FileReader();
26080             var t = this;
26081             r.addEventListener('load',function()
26082             {
26083                 
26084                 var d = (new DOMParser().parseFromString('<img src="' + r.result+ '">', 'text/html')).body;
26085                 // is insert asycn?
26086                 if (t.enableBlocks) {
26087                     
26088                     Array.from(d.getElementsByTagName('img')).forEach(function(img) {
26089                         if (img.closest('figure')) { // assume!! that it's aready
26090                             return;
26091                         }
26092                         var fig  = new Roo.htmleditor.BlockFigure({
26093                             image_src  : img.src
26094                         });
26095                         fig.updateElement(img); // replace it..
26096                         
26097                     });
26098                 }
26099                 t.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
26100                 t.owner.fireEvent('paste', this);
26101             });
26102             r.readAsDataURL(cd.files[0]);
26103             
26104             e.preventDefault();
26105             
26106             return false;
26107         }
26108         if (cd.types.indexOf('text/html') < 0 ) {
26109             return false;
26110         }
26111         var images = [];
26112         var html = cd.getData('text/html'); // clipboard event
26113         if (cd.types.indexOf('text/rtf') > -1) {
26114             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
26115             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
26116         }
26117         // Roo.log(images);
26118         // Roo.log(imgs);
26119         // fixme..
26120         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
26121                        .map(function(g) { return g.toDataURL(); })
26122                        .filter(function(g) { return g != 'about:blank'; });
26123         
26124         //Roo.log(html);
26125         html = this.cleanWordChars(html);
26126         
26127         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
26128         
26129         
26130         var sn = this.getParentElement();
26131         // check if d contains a table, and prevent nesting??
26132         //Roo.log(d.getElementsByTagName('table'));
26133         //Roo.log(sn);
26134         //Roo.log(sn.closest('table'));
26135         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
26136             e.preventDefault();
26137             this.insertAtCursor("You can not nest tables");
26138             //Roo.log("prevent?"); // fixme - 
26139             return false;
26140         }
26141         
26142         
26143         
26144         if (images.length > 0) {
26145             // replace all v:imagedata - with img.
26146             var ar = Array.from(d.getElementsByTagName('v:imagedata'));
26147             Roo.each(ar, function(node) {
26148                 node.parentNode.insertBefore(d.ownerDocument.createElement('img'), node );
26149                 node.parentNode.removeChild(node);
26150             });
26151             
26152             
26153             Roo.each(d.getElementsByTagName('img'), function(img, i) {
26154                 img.setAttribute('src', images[i]);
26155             });
26156         }
26157         if (this.autoClean) {
26158             new Roo.htmleditor.FilterWord({ node : d });
26159             
26160             new Roo.htmleditor.FilterStyleToTag({ node : d });
26161             new Roo.htmleditor.FilterAttributes({
26162                 node : d,
26163                 attrib_white : [
26164                     'href',
26165                     'src',
26166                     'name',
26167                     'align',
26168                     'colspan',
26169                     'rowspan',
26170                     'data-display',
26171                     'data-caption-display',
26172                     'data-width',
26173                     'data-caption',
26174                     'start' ,
26175                     'style',
26176                     // youtube embed.
26177                     'class',
26178                     'allowfullscreen',
26179                     'frameborder',
26180                     'width',
26181                     'height',
26182                     'alt'
26183                     ],
26184                 attrib_clean : ['href', 'src' ] 
26185             });
26186             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
26187             // should be fonts..
26188             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', ':' ]} );
26189             new Roo.htmleditor.FilterParagraph({ node : d });
26190             new Roo.htmleditor.FilterSpan({ node : d });
26191             new Roo.htmleditor.FilterLongBr({ node : d });
26192             new Roo.htmleditor.FilterComment({ node : d });
26193             
26194             
26195         }
26196         if (this.enableBlocks) {
26197                 
26198             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
26199                 if (img.closest('figure')) { // assume!! that it's aready
26200                     return;
26201                 }
26202                 var fig  = new Roo.htmleditor.BlockFigure({
26203                     image_src  : img.src
26204                 });
26205                 fig.updateElement(img); // replace it..
26206                 
26207             });
26208         }
26209         
26210         
26211         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
26212         if (this.enableBlocks) {
26213             Roo.htmleditor.Block.initAll(this.doc.body);
26214         }
26215          
26216         
26217         e.preventDefault();
26218         this.owner.fireEvent('paste', this);
26219         return false;
26220         // default behaveiour should be our local cleanup paste? (optional?)
26221         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
26222         //this.owner.fireEvent('paste', e, v);
26223     },
26224     // private
26225     onDestroy : function(){
26226         
26227         
26228         
26229         if(this.rendered){
26230             
26231             //for (var i =0; i < this.toolbars.length;i++) {
26232             //    // fixme - ask toolbars for heights?
26233             //    this.toolbars[i].onDestroy();
26234            // }
26235             
26236             //this.wrap.dom.innerHTML = '';
26237             //this.wrap.remove();
26238         }
26239     },
26240
26241     // private
26242     onFirstFocus : function(){
26243         
26244         this.assignDocWin();
26245         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
26246         
26247         this.activated = true;
26248          
26249     
26250         if(Roo.isGecko){ // prevent silly gecko errors
26251             this.win.focus();
26252             var s = this.win.getSelection();
26253             if(!s.focusNode || s.focusNode.nodeType != 3){
26254                 var r = s.getRangeAt(0);
26255                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
26256                 r.collapse(true);
26257                 this.deferFocus();
26258             }
26259             try{
26260                 this.execCmd('useCSS', true);
26261                 this.execCmd('styleWithCSS', false);
26262             }catch(e){}
26263         }
26264         this.owner.fireEvent('activate', this);
26265     },
26266
26267     // private
26268     adjustFont: function(btn){
26269         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
26270         //if(Roo.isSafari){ // safari
26271         //    adjust *= 2;
26272        // }
26273         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
26274         if(Roo.isSafari){ // safari
26275             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
26276             v =  (v < 10) ? 10 : v;
26277             v =  (v > 48) ? 48 : v;
26278             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
26279             
26280         }
26281         
26282         
26283         v = Math.max(1, v+adjust);
26284         
26285         this.execCmd('FontSize', v  );
26286     },
26287
26288     onEditorEvent : function(e)
26289     {
26290          
26291         
26292         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
26293             return; // we do not handle this.. (undo manager does..)
26294         }
26295         // clicking a 'block'?
26296         
26297         // in theory this detects if the last element is not a br, then we try and do that.
26298         // its so clicking in space at bottom triggers adding a br and moving the cursor.
26299         if (e &&
26300             e.target.nodeName == 'BODY' &&
26301             e.type == "mouseup" &&
26302             this.doc.body.lastChild
26303            ) {
26304             var lc = this.doc.body.lastChild;
26305             // gtx-trans is google translate plugin adding crap.
26306             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
26307                 lc = lc.previousSibling;
26308             }
26309             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
26310             // if last element is <BR> - then dont do anything.
26311             
26312                 var ns = this.doc.createElement('br');
26313                 this.doc.body.appendChild(ns);
26314                 range = this.doc.createRange();
26315                 range.setStartAfter(ns);
26316                 range.collapse(true);
26317                 var sel = this.win.getSelection();
26318                 sel.removeAllRanges();
26319                 sel.addRange(range);
26320             }
26321         }
26322         
26323         
26324         
26325         this.fireEditorEvent(e);
26326       //  this.updateToolbar();
26327         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
26328     },
26329     
26330     fireEditorEvent: function(e)
26331     {
26332         this.owner.fireEvent('editorevent', this, e);
26333     },
26334
26335     insertTag : function(tg)
26336     {
26337         // could be a bit smarter... -> wrap the current selected tRoo..
26338         if (tg.toLowerCase() == 'span' ||
26339             tg.toLowerCase() == 'code' ||
26340             tg.toLowerCase() == 'sup' ||
26341             tg.toLowerCase() == 'sub' 
26342             ) {
26343             
26344             range = this.createRange(this.getSelection());
26345             var wrappingNode = this.doc.createElement(tg.toLowerCase());
26346             wrappingNode.appendChild(range.extractContents());
26347             range.insertNode(wrappingNode);
26348
26349             return;
26350             
26351             
26352             
26353         }
26354         this.execCmd("formatblock",   tg);
26355         this.undoManager.addEvent(); 
26356     },
26357     
26358     insertText : function(txt)
26359     {
26360         
26361         
26362         var range = this.createRange();
26363         range.deleteContents();
26364                //alert(Sender.getAttribute('label'));
26365                
26366         range.insertNode(this.doc.createTextNode(txt));
26367         this.undoManager.addEvent();
26368     } ,
26369     
26370      
26371
26372     /**
26373      * Executes a Midas editor command on the editor document and performs necessary focus and
26374      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
26375      * @param {String} cmd The Midas command
26376      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
26377      */
26378     relayCmd : function(cmd, value)
26379     {
26380         
26381         switch (cmd) {
26382             case 'justifyleft':
26383             case 'justifyright':
26384             case 'justifycenter':
26385                 // if we are in a cell, then we will adjust the
26386                 var n = this.getParentElement();
26387                 var td = n.closest('td');
26388                 if (td) {
26389                     var bl = Roo.htmleditor.Block.factory(td);
26390                     bl.textAlign = cmd.replace('justify','');
26391                     bl.updateElement();
26392                     this.owner.fireEvent('editorevent', this);
26393                     return;
26394                 }
26395                 this.execCmd('styleWithCSS', true); // 
26396                 break;
26397             case 'bold':
26398             case 'italic':
26399             case 'underline':                
26400                 // if there is no selection, then we insert, and set the curson inside it..
26401                 this.execCmd('styleWithCSS', false); 
26402                 break;
26403                 
26404         
26405             default:
26406                 break;
26407         }
26408         
26409         
26410         this.win.focus();
26411         this.execCmd(cmd, value);
26412         this.owner.fireEvent('editorevent', this);
26413         //this.updateToolbar();
26414         this.owner.deferFocus();
26415     },
26416
26417     /**
26418      * Executes a Midas editor command directly on the editor document.
26419      * For visual commands, you should use {@link #relayCmd} instead.
26420      * <b>This should only be called after the editor is initialized.</b>
26421      * @param {String} cmd The Midas command
26422      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
26423      */
26424     execCmd : function(cmd, value){
26425         this.doc.execCommand(cmd, false, value === undefined ? null : value);
26426         this.syncValue();
26427     },
26428  
26429  
26430    
26431     /**
26432      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
26433      * to insert tRoo.
26434      * @param {String} text | dom node.. 
26435      */
26436     insertAtCursor : function(text)
26437     {
26438         
26439         if(!this.activated){
26440             return;
26441         }
26442          
26443         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
26444             this.win.focus();
26445             
26446             
26447             // from jquery ui (MIT licenced)
26448             var range, node;
26449             var win = this.win;
26450             
26451             if (win.getSelection && win.getSelection().getRangeAt) {
26452                 
26453                 // delete the existing?
26454                 
26455                 this.createRange(this.getSelection()).deleteContents();
26456                 range = win.getSelection().getRangeAt(0);
26457                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
26458                 range.insertNode(node);
26459                 range = range.cloneRange();
26460                 range.collapse(false);
26461                  
26462                 win.getSelection().removeAllRanges();
26463                 win.getSelection().addRange(range);
26464                 
26465                 
26466                 
26467             } else if (win.document.selection && win.document.selection.createRange) {
26468                 // no firefox support
26469                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
26470                 win.document.selection.createRange().pasteHTML(txt);
26471             
26472             } else {
26473                 // no firefox support
26474                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
26475                 this.execCmd('InsertHTML', txt);
26476             } 
26477             this.syncValue();
26478             
26479             this.deferFocus();
26480         }
26481     },
26482  // private
26483     mozKeyPress : function(e){
26484         if(e.ctrlKey){
26485             var c = e.getCharCode(), cmd;
26486           
26487             if(c > 0){
26488                 c = String.fromCharCode(c).toLowerCase();
26489                 switch(c){
26490                     case 'b':
26491                         cmd = 'bold';
26492                         break;
26493                     case 'i':
26494                         cmd = 'italic';
26495                         break;
26496                     
26497                     case 'u':
26498                         cmd = 'underline';
26499                         break;
26500                     
26501                     //case 'v':
26502                       //  this.cleanUpPaste.defer(100, this);
26503                       //  return;
26504                         
26505                 }
26506                 if(cmd){
26507                     
26508                     this.relayCmd(cmd);
26509                     //this.win.focus();
26510                     //this.execCmd(cmd);
26511                     //this.deferFocus();
26512                     e.preventDefault();
26513                 }
26514                 
26515             }
26516         }
26517     },
26518
26519     // private
26520     fixKeys : function(){ // load time branching for fastest keydown performance
26521         
26522         
26523         if(Roo.isIE){
26524             return function(e){
26525                 var k = e.getKey(), r;
26526                 if(k == e.TAB){
26527                     e.stopEvent();
26528                     r = this.doc.selection.createRange();
26529                     if(r){
26530                         r.collapse(true);
26531                         r.pasteHTML('&#160;&#160;&#160;&#160;');
26532                         this.deferFocus();
26533                     }
26534                     return;
26535                 }
26536                 /// this is handled by Roo.htmleditor.KeyEnter
26537                  /*
26538                 if(k == e.ENTER){
26539                     r = this.doc.selection.createRange();
26540                     if(r){
26541                         var target = r.parentElement();
26542                         if(!target || target.tagName.toLowerCase() != 'li'){
26543                             e.stopEvent();
26544                             r.pasteHTML('<br/>');
26545                             r.collapse(false);
26546                             r.select();
26547                         }
26548                     }
26549                 }
26550                 */
26551                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
26552                 //    this.cleanUpPaste.defer(100, this);
26553                 //    return;
26554                 //}
26555                 
26556                 
26557             };
26558         }else if(Roo.isOpera){
26559             return function(e){
26560                 var k = e.getKey();
26561                 if(k == e.TAB){
26562                     e.stopEvent();
26563                     this.win.focus();
26564                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
26565                     this.deferFocus();
26566                 }
26567                
26568                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
26569                 //    this.cleanUpPaste.defer(100, this);
26570                  //   return;
26571                 //}
26572                 
26573             };
26574         }else if(Roo.isSafari){
26575             return function(e){
26576                 var k = e.getKey();
26577                 
26578                 if(k == e.TAB){
26579                     e.stopEvent();
26580                     this.execCmd('InsertText','\t');
26581                     this.deferFocus();
26582                     return;
26583                 }
26584                  this.mozKeyPress(e);
26585                 
26586                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
26587                  //   this.cleanUpPaste.defer(100, this);
26588                  //   return;
26589                // }
26590                 
26591              };
26592         }
26593     }(),
26594     
26595     getAllAncestors: function()
26596     {
26597         var p = this.getSelectedNode();
26598         var a = [];
26599         if (!p) {
26600             a.push(p); // push blank onto stack..
26601             p = this.getParentElement();
26602         }
26603         
26604         
26605         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
26606             a.push(p);
26607             p = p.parentNode;
26608         }
26609         a.push(this.doc.body);
26610         return a;
26611     },
26612     lastSel : false,
26613     lastSelNode : false,
26614     
26615     
26616     getSelection : function() 
26617     {
26618         this.assignDocWin();
26619         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
26620     },
26621     /**
26622      * Select a dom node
26623      * @param {DomElement} node the node to select
26624      */
26625     selectNode : function(node, collapse)
26626     {
26627         var nodeRange = node.ownerDocument.createRange();
26628         try {
26629             nodeRange.selectNode(node);
26630         } catch (e) {
26631             nodeRange.selectNodeContents(node);
26632         }
26633         if (collapse === true) {
26634             nodeRange.collapse(true);
26635         }
26636         //
26637         var s = this.win.getSelection();
26638         s.removeAllRanges();
26639         s.addRange(nodeRange);
26640     },
26641     
26642     getSelectedNode: function() 
26643     {
26644         // this may only work on Gecko!!!
26645         
26646         // should we cache this!!!!
26647         
26648          
26649          
26650         var range = this.createRange(this.getSelection()).cloneRange();
26651         
26652         if (Roo.isIE) {
26653             var parent = range.parentElement();
26654             while (true) {
26655                 var testRange = range.duplicate();
26656                 testRange.moveToElementText(parent);
26657                 if (testRange.inRange(range)) {
26658                     break;
26659                 }
26660                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
26661                     break;
26662                 }
26663                 parent = parent.parentElement;
26664             }
26665             return parent;
26666         }
26667         
26668         // is ancestor a text element.
26669         var ac =  range.commonAncestorContainer;
26670         if (ac.nodeType == 3) {
26671             ac = ac.parentNode;
26672         }
26673         
26674         var ar = ac.childNodes;
26675          
26676         var nodes = [];
26677         var other_nodes = [];
26678         var has_other_nodes = false;
26679         for (var i=0;i<ar.length;i++) {
26680             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
26681                 continue;
26682             }
26683             // fullly contained node.
26684             
26685             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
26686                 nodes.push(ar[i]);
26687                 continue;
26688             }
26689             
26690             // probably selected..
26691             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
26692                 other_nodes.push(ar[i]);
26693                 continue;
26694             }
26695             // outer..
26696             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
26697                 continue;
26698             }
26699             
26700             
26701             has_other_nodes = true;
26702         }
26703         if (!nodes.length && other_nodes.length) {
26704             nodes= other_nodes;
26705         }
26706         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
26707             return false;
26708         }
26709         
26710         return nodes[0];
26711     },
26712     
26713     
26714     createRange: function(sel)
26715     {
26716         // this has strange effects when using with 
26717         // top toolbar - not sure if it's a great idea.
26718         //this.editor.contentWindow.focus();
26719         if (typeof sel != "undefined") {
26720             try {
26721                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
26722             } catch(e) {
26723                 return this.doc.createRange();
26724             }
26725         } else {
26726             return this.doc.createRange();
26727         }
26728     },
26729     getParentElement: function()
26730     {
26731         
26732         this.assignDocWin();
26733         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
26734         
26735         var range = this.createRange(sel);
26736          
26737         try {
26738             var p = range.commonAncestorContainer;
26739             while (p.nodeType == 3) { // text node
26740                 p = p.parentNode;
26741             }
26742             return p;
26743         } catch (e) {
26744             return null;
26745         }
26746     
26747     },
26748     /***
26749      *
26750      * Range intersection.. the hard stuff...
26751      *  '-1' = before
26752      *  '0' = hits..
26753      *  '1' = after.
26754      *         [ -- selected range --- ]
26755      *   [fail]                        [fail]
26756      *
26757      *    basically..
26758      *      if end is before start or  hits it. fail.
26759      *      if start is after end or hits it fail.
26760      *
26761      *   if either hits (but other is outside. - then it's not 
26762      *   
26763      *    
26764      **/
26765     
26766     
26767     // @see http://www.thismuchiknow.co.uk/?p=64.
26768     rangeIntersectsNode : function(range, node)
26769     {
26770         var nodeRange = node.ownerDocument.createRange();
26771         try {
26772             nodeRange.selectNode(node);
26773         } catch (e) {
26774             nodeRange.selectNodeContents(node);
26775         }
26776     
26777         var rangeStartRange = range.cloneRange();
26778         rangeStartRange.collapse(true);
26779     
26780         var rangeEndRange = range.cloneRange();
26781         rangeEndRange.collapse(false);
26782     
26783         var nodeStartRange = nodeRange.cloneRange();
26784         nodeStartRange.collapse(true);
26785     
26786         var nodeEndRange = nodeRange.cloneRange();
26787         nodeEndRange.collapse(false);
26788     
26789         return rangeStartRange.compareBoundaryPoints(
26790                  Range.START_TO_START, nodeEndRange) == -1 &&
26791                rangeEndRange.compareBoundaryPoints(
26792                  Range.START_TO_START, nodeStartRange) == 1;
26793         
26794          
26795     },
26796     rangeCompareNode : function(range, node)
26797     {
26798         var nodeRange = node.ownerDocument.createRange();
26799         try {
26800             nodeRange.selectNode(node);
26801         } catch (e) {
26802             nodeRange.selectNodeContents(node);
26803         }
26804         
26805         
26806         range.collapse(true);
26807     
26808         nodeRange.collapse(true);
26809      
26810         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
26811         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
26812          
26813         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
26814         
26815         var nodeIsBefore   =  ss == 1;
26816         var nodeIsAfter    = ee == -1;
26817         
26818         if (nodeIsBefore && nodeIsAfter) {
26819             return 0; // outer
26820         }
26821         if (!nodeIsBefore && nodeIsAfter) {
26822             return 1; //right trailed.
26823         }
26824         
26825         if (nodeIsBefore && !nodeIsAfter) {
26826             return 2;  // left trailed.
26827         }
26828         // fully contined.
26829         return 3;
26830     },
26831  
26832     cleanWordChars : function(input) {// change the chars to hex code
26833         
26834        var swapCodes  = [ 
26835             [    8211, "&#8211;" ], 
26836             [    8212, "&#8212;" ], 
26837             [    8216,  "'" ],  
26838             [    8217, "'" ],  
26839             [    8220, '"' ],  
26840             [    8221, '"' ],  
26841             [    8226, "*" ],  
26842             [    8230, "..." ]
26843         ]; 
26844         var output = input;
26845         Roo.each(swapCodes, function(sw) { 
26846             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
26847             
26848             output = output.replace(swapper, sw[1]);
26849         });
26850         
26851         return output;
26852     },
26853     
26854      
26855     
26856         
26857     
26858     cleanUpChild : function (node)
26859     {
26860         
26861         new Roo.htmleditor.FilterComment({node : node});
26862         new Roo.htmleditor.FilterAttributes({
26863                 node : node,
26864                 attrib_black : this.ablack,
26865                 attrib_clean : this.aclean,
26866                 style_white : this.cwhite,
26867                 style_black : this.cblack
26868         });
26869         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
26870         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
26871          
26872         
26873     },
26874     
26875     /**
26876      * Clean up MS wordisms...
26877      * @deprecated - use filter directly
26878      */
26879     cleanWord : function(node)
26880     {
26881         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
26882         new Roo.htmleditor.FilterKeepChildren({node : node ? node : this.doc.body, tag : [ 'FONT', ':' ]} );
26883         
26884     },
26885    
26886     
26887     /**
26888
26889      * @deprecated - use filters
26890      */
26891     cleanTableWidths : function(node)
26892     {
26893         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
26894         
26895  
26896     },
26897     
26898      
26899         
26900     applyBlacklists : function()
26901     {
26902         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
26903         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
26904         
26905         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
26906         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
26907         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
26908         
26909         this.white = [];
26910         this.black = [];
26911         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
26912             if (b.indexOf(tag) > -1) {
26913                 return;
26914             }
26915             this.white.push(tag);
26916             
26917         }, this);
26918         
26919         Roo.each(w, function(tag) {
26920             if (b.indexOf(tag) > -1) {
26921                 return;
26922             }
26923             if (this.white.indexOf(tag) > -1) {
26924                 return;
26925             }
26926             this.white.push(tag);
26927             
26928         }, this);
26929         
26930         
26931         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
26932             if (w.indexOf(tag) > -1) {
26933                 return;
26934             }
26935             this.black.push(tag);
26936             
26937         }, this);
26938         
26939         Roo.each(b, function(tag) {
26940             if (w.indexOf(tag) > -1) {
26941                 return;
26942             }
26943             if (this.black.indexOf(tag) > -1) {
26944                 return;
26945             }
26946             this.black.push(tag);
26947             
26948         }, this);
26949         
26950         
26951         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
26952         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
26953         
26954         this.cwhite = [];
26955         this.cblack = [];
26956         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
26957             if (b.indexOf(tag) > -1) {
26958                 return;
26959             }
26960             this.cwhite.push(tag);
26961             
26962         }, this);
26963         
26964         Roo.each(w, function(tag) {
26965             if (b.indexOf(tag) > -1) {
26966                 return;
26967             }
26968             if (this.cwhite.indexOf(tag) > -1) {
26969                 return;
26970             }
26971             this.cwhite.push(tag);
26972             
26973         }, this);
26974         
26975         
26976         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
26977             if (w.indexOf(tag) > -1) {
26978                 return;
26979             }
26980             this.cblack.push(tag);
26981             
26982         }, this);
26983         
26984         Roo.each(b, function(tag) {
26985             if (w.indexOf(tag) > -1) {
26986                 return;
26987             }
26988             if (this.cblack.indexOf(tag) > -1) {
26989                 return;
26990             }
26991             this.cblack.push(tag);
26992             
26993         }, this);
26994     },
26995     
26996     setStylesheets : function(stylesheets)
26997     {
26998         if(typeof(stylesheets) == 'string'){
26999             Roo.get(this.iframe.contentDocument.head).createChild({
27000                 tag : 'link',
27001                 rel : 'stylesheet',
27002                 type : 'text/css',
27003                 href : stylesheets
27004             });
27005             
27006             return;
27007         }
27008         var _this = this;
27009      
27010         Roo.each(stylesheets, function(s) {
27011             if(!s.length){
27012                 return;
27013             }
27014             
27015             Roo.get(_this.iframe.contentDocument.head).createChild({
27016                 tag : 'link',
27017                 rel : 'stylesheet',
27018                 type : 'text/css',
27019                 href : s
27020             });
27021         });
27022
27023         
27024     },
27025     
27026     
27027     updateLanguage : function()
27028     {
27029         if (!this.iframe || !this.iframe.contentDocument) {
27030             return;
27031         }
27032         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
27033     },
27034     
27035     
27036     removeStylesheets : function()
27037     {
27038         var _this = this;
27039         
27040         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
27041             s.remove();
27042         });
27043     },
27044     
27045     setStyle : function(style)
27046     {
27047         Roo.get(this.iframe.contentDocument.head).createChild({
27048             tag : 'style',
27049             type : 'text/css',
27050             html : style
27051         });
27052
27053         return;
27054     }
27055     
27056     // hide stuff that is not compatible
27057     /**
27058      * @event blur
27059      * @hide
27060      */
27061     /**
27062      * @event change
27063      * @hide
27064      */
27065     /**
27066      * @event focus
27067      * @hide
27068      */
27069     /**
27070      * @event specialkey
27071      * @hide
27072      */
27073     /**
27074      * @cfg {String} fieldClass @hide
27075      */
27076     /**
27077      * @cfg {String} focusClass @hide
27078      */
27079     /**
27080      * @cfg {String} autoCreate @hide
27081      */
27082     /**
27083      * @cfg {String} inputType @hide
27084      */
27085     /**
27086      * @cfg {String} invalidClass @hide
27087      */
27088     /**
27089      * @cfg {String} invalidText @hide
27090      */
27091     /**
27092      * @cfg {String} msgFx @hide
27093      */
27094     /**
27095      * @cfg {String} validateOnBlur @hide
27096      */
27097 });
27098
27099 Roo.HtmlEditorCore.white = [
27100         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
27101         
27102        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
27103        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
27104        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
27105        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
27106        'TABLE',   'UL',         'XMP', 
27107        
27108        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
27109       'THEAD',   'TR', 
27110      
27111       'DIR', 'MENU', 'OL', 'UL', 'DL',
27112        
27113       'EMBED',  'OBJECT'
27114 ];
27115
27116
27117 Roo.HtmlEditorCore.black = [
27118     //    'embed',  'object', // enable - backend responsiblity to clean thiese
27119         'APPLET', // 
27120         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
27121         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
27122         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
27123         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
27124         //'FONT' // CLEAN LATER..
27125         'COLGROUP', 'COL'   // messy tables.
27126         
27127         
27128 ];
27129 Roo.HtmlEditorCore.clean = [ // ?? needed???
27130      'SCRIPT', 'STYLE', 'TITLE', 'XML'
27131 ];
27132 Roo.HtmlEditorCore.tag_remove = [
27133     'FONT', 'TBODY'  
27134 ];
27135 // attributes..
27136
27137 Roo.HtmlEditorCore.ablack = [
27138     'on'
27139 ];
27140     
27141 Roo.HtmlEditorCore.aclean = [ 
27142     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
27143 ];
27144
27145 // protocols..
27146 Roo.HtmlEditorCore.pwhite= [
27147         'http',  'https',  'mailto'
27148 ];
27149
27150 // white listed style attributes.
27151 Roo.HtmlEditorCore.cwhite= [
27152       //  'text-align', /// default is to allow most things..
27153       
27154          
27155 //        'font-size'//??
27156 ];
27157
27158 // black listed style attributes.
27159 Roo.HtmlEditorCore.cblack= [
27160       //  'font-size' -- this can be set by the project 
27161 ];
27162
27163
27164
27165
27166     //<script type="text/javascript">
27167
27168 /*
27169  * Ext JS Library 1.1.1
27170  * Copyright(c) 2006-2007, Ext JS, LLC.
27171  * Licence LGPL
27172  * 
27173  */
27174  
27175  
27176 Roo.form.HtmlEditor = function(config){
27177     
27178     
27179     
27180     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
27181     
27182     if (!this.toolbars) {
27183         this.toolbars = [];
27184     }
27185     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
27186     
27187     
27188 };
27189
27190 /**
27191  * @class Roo.form.HtmlEditor
27192  * @extends Roo.form.Field
27193  * Provides a lightweight HTML Editor component.
27194  *
27195  * This has been tested on Fireforx / Chrome.. IE may not be so great..
27196  * 
27197  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
27198  * supported by this editor.</b><br/><br/>
27199  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
27200  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
27201  */
27202 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
27203     /**
27204      * @cfg {Boolean} clearUp
27205      */
27206     clearUp : true,
27207       /**
27208      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
27209      */
27210     toolbars : false,
27211    
27212      /**
27213      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
27214      *                        Roo.resizable.
27215      */
27216     resizable : false,
27217      /**
27218      * @cfg {Number} height (in pixels)
27219      */   
27220     height: 300,
27221    /**
27222      * @cfg {Number} width (in pixels)
27223      */   
27224     width: 500,
27225     
27226     /**
27227      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets - this is usally a good idea  rootURL + '/roojs1/css/undoreset.css',   .
27228      * 
27229      */
27230     stylesheets: false,
27231     
27232     
27233      /**
27234      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
27235      * 
27236      */
27237     cblack: false,
27238     /**
27239      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
27240      * 
27241      */
27242     cwhite: false,
27243     
27244      /**
27245      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
27246      * 
27247      */
27248     black: false,
27249     /**
27250      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
27251      * 
27252      */
27253     white: false,
27254     /**
27255      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
27256      */
27257     allowComments: false,
27258     /**
27259      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
27260      */
27261     enableBlocks : true,
27262     
27263     /**
27264      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
27265      *         if you are doing an email editor, this probably needs disabling, it's designed
27266      */
27267     autoClean: true,
27268     /**
27269      * @cfg {string} bodyCls default '' default classes to add to body of editable area - usually undoreset is a good start..
27270      */
27271     bodyCls : '',
27272     /**
27273      * @cfg {String} language default en - language of text (usefull for rtl languages)
27274      * 
27275      */
27276     language: 'en',
27277     
27278      
27279     // id of frame..
27280     frameId: false,
27281     
27282     // private properties
27283     validationEvent : false,
27284     deferHeight: true,
27285     initialized : false,
27286     activated : false,
27287     
27288     onFocus : Roo.emptyFn,
27289     iframePad:3,
27290     hideMode:'offsets',
27291     
27292     actionMode : 'container', // defaults to hiding it...
27293     
27294     defaultAutoCreate : { // modified by initCompnoent..
27295         tag: "textarea",
27296         style:"width:500px;height:300px;",
27297         autocomplete: "new-password"
27298     },
27299
27300     // private
27301     initComponent : function(){
27302         this.addEvents({
27303             /**
27304              * @event initialize
27305              * Fires when the editor is fully initialized (including the iframe)
27306              * @param {HtmlEditor} this
27307              */
27308             initialize: true,
27309             /**
27310              * @event activate
27311              * Fires when the editor is first receives the focus. Any insertion must wait
27312              * until after this event.
27313              * @param {HtmlEditor} this
27314              */
27315             activate: true,
27316              /**
27317              * @event beforesync
27318              * Fires before the textarea is updated with content from the editor iframe. Return false
27319              * to cancel the sync.
27320              * @param {HtmlEditor} this
27321              * @param {String} html
27322              */
27323             beforesync: true,
27324              /**
27325              * @event beforepush
27326              * Fires before the iframe editor is updated with content from the textarea. Return false
27327              * to cancel the push.
27328              * @param {HtmlEditor} this
27329              * @param {String} html
27330              */
27331             beforepush: true,
27332              /**
27333              * @event sync
27334              * Fires when the textarea is updated with content from the editor iframe.
27335              * @param {HtmlEditor} this
27336              * @param {String} html
27337              */
27338             sync: true,
27339              /**
27340              * @event push
27341              * Fires when the iframe editor is updated with content from the textarea.
27342              * @param {HtmlEditor} this
27343              * @param {String} html
27344              */
27345             push: true,
27346              /**
27347              * @event editmodechange
27348              * Fires when the editor switches edit modes
27349              * @param {HtmlEditor} this
27350              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
27351              */
27352             editmodechange: true,
27353             /**
27354              * @event editorevent
27355              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
27356              * @param {HtmlEditor} this
27357              */
27358             editorevent: true,
27359             /**
27360              * @event firstfocus
27361              * Fires when on first focus - needed by toolbars..
27362              * @param {HtmlEditor} this
27363              */
27364             firstfocus: true,
27365             /**
27366              * @event autosave
27367              * Auto save the htmlEditor value as a file into Events
27368              * @param {HtmlEditor} this
27369              */
27370             autosave: true,
27371             /**
27372              * @event savedpreview
27373              * preview the saved version of htmlEditor
27374              * @param {HtmlEditor} this
27375              */
27376             savedpreview: true,
27377             
27378             /**
27379             * @event stylesheetsclick
27380             * Fires when press the Sytlesheets button
27381             * @param {Roo.HtmlEditorCore} this
27382             */
27383             stylesheetsclick: true,
27384             /**
27385             * @event paste
27386             * Fires when press user pastes into the editor
27387             * @param {Roo.HtmlEditorCore} this
27388             */
27389             paste: true 
27390             
27391         });
27392         this.defaultAutoCreate =  {
27393             tag: "textarea",
27394             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
27395             autocomplete: "new-password"
27396         };
27397     },
27398
27399     /**
27400      * Protected method that will not generally be called directly. It
27401      * is called when the editor creates its toolbar. Override this method if you need to
27402      * add custom toolbar buttons.
27403      * @param {HtmlEditor} editor
27404      */
27405     createToolbar : function(editor){
27406         Roo.log("create toolbars");
27407         if (!editor.toolbars || !editor.toolbars.length) {
27408             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
27409         }
27410         
27411         for (var i =0 ; i < editor.toolbars.length;i++) {
27412             editor.toolbars[i] = Roo.factory(
27413                     typeof(editor.toolbars[i]) == 'string' ?
27414                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
27415                 Roo.form.HtmlEditor);
27416             editor.toolbars[i].init(editor);
27417         }
27418          
27419         
27420     },
27421     /**
27422      * get the Context selected node
27423      * @returns {DomElement|boolean} selected node if active or false if none
27424      * 
27425      */
27426     getSelectedNode : function()
27427     {
27428         if (this.toolbars.length < 2 || !this.toolbars[1].tb) {
27429             return false;
27430         }
27431         return this.toolbars[1].tb.selectedNode;
27432     
27433     },
27434     // private
27435     onRender : function(ct, position)
27436     {
27437         var _t = this;
27438         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
27439         
27440         this.wrap = this.el.wrap({
27441             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
27442         });
27443         
27444         this.editorcore.onRender(ct, position);
27445          
27446         if (this.resizable) {
27447             this.resizeEl = new Roo.Resizable(this.wrap, {
27448                 pinned : true,
27449                 wrap: true,
27450                 dynamic : true,
27451                 minHeight : this.height,
27452                 height: this.height,
27453                 handles : this.resizable,
27454                 width: this.width,
27455                 listeners : {
27456                     resize : function(r, w, h) {
27457                         _t.onResize(w,h); // -something
27458                     }
27459                 }
27460             });
27461             
27462         }
27463         this.createToolbar(this);
27464        
27465         
27466         if(!this.width){
27467             this.setSize(this.wrap.getSize());
27468         }
27469         if (this.resizeEl) {
27470             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
27471             // should trigger onReize..
27472         }
27473         
27474         this.keyNav = new Roo.KeyNav(this.el, {
27475             
27476             "tab" : function(e){
27477                 e.preventDefault();
27478                 
27479                 var value = this.getValue();
27480                 
27481                 var start = this.el.dom.selectionStart;
27482                 var end = this.el.dom.selectionEnd;
27483                 
27484                 if(!e.shiftKey){
27485                     
27486                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
27487                     this.el.dom.setSelectionRange(end + 1, end + 1);
27488                     return;
27489                 }
27490                 
27491                 var f = value.substring(0, start).split("\t");
27492                 
27493                 if(f.pop().length != 0){
27494                     return;
27495                 }
27496                 
27497                 this.setValue(f.join("\t") + value.substring(end));
27498                 this.el.dom.setSelectionRange(start - 1, start - 1);
27499                 
27500             },
27501             
27502             "home" : function(e){
27503                 e.preventDefault();
27504                 
27505                 var curr = this.el.dom.selectionStart;
27506                 var lines = this.getValue().split("\n");
27507                 
27508                 if(!lines.length){
27509                     return;
27510                 }
27511                 
27512                 if(e.ctrlKey){
27513                     this.el.dom.setSelectionRange(0, 0);
27514                     return;
27515                 }
27516                 
27517                 var pos = 0;
27518                 
27519                 for (var i = 0; i < lines.length;i++) {
27520                     pos += lines[i].length;
27521                     
27522                     if(i != 0){
27523                         pos += 1;
27524                     }
27525                     
27526                     if(pos < curr){
27527                         continue;
27528                     }
27529                     
27530                     pos -= lines[i].length;
27531                     
27532                     break;
27533                 }
27534                 
27535                 if(!e.shiftKey){
27536                     this.el.dom.setSelectionRange(pos, pos);
27537                     return;
27538                 }
27539                 
27540                 this.el.dom.selectionStart = pos;
27541                 this.el.dom.selectionEnd = curr;
27542             },
27543             
27544             "end" : function(e){
27545                 e.preventDefault();
27546                 
27547                 var curr = this.el.dom.selectionStart;
27548                 var lines = this.getValue().split("\n");
27549                 
27550                 if(!lines.length){
27551                     return;
27552                 }
27553                 
27554                 if(e.ctrlKey){
27555                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
27556                     return;
27557                 }
27558                 
27559                 var pos = 0;
27560                 
27561                 for (var i = 0; i < lines.length;i++) {
27562                     
27563                     pos += lines[i].length;
27564                     
27565                     if(i != 0){
27566                         pos += 1;
27567                     }
27568                     
27569                     if(pos < curr){
27570                         continue;
27571                     }
27572                     
27573                     break;
27574                 }
27575                 
27576                 if(!e.shiftKey){
27577                     this.el.dom.setSelectionRange(pos, pos);
27578                     return;
27579                 }
27580                 
27581                 this.el.dom.selectionStart = curr;
27582                 this.el.dom.selectionEnd = pos;
27583             },
27584
27585             scope : this,
27586
27587             doRelay : function(foo, bar, hname){
27588                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
27589             },
27590
27591             forceKeyDown: true
27592         });
27593         
27594 //        if(this.autosave && this.w){
27595 //            this.autoSaveFn = setInterval(this.autosave, 1000);
27596 //        }
27597     },
27598
27599     // private
27600     onResize : function(w, h)
27601     {
27602         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
27603         var ew = false;
27604         var eh = false;
27605         
27606         if(this.el ){
27607             if(typeof w == 'number'){
27608                 var aw = w - this.wrap.getFrameWidth('lr');
27609                 this.el.setWidth(this.adjustWidth('textarea', aw));
27610                 ew = aw;
27611             }
27612             if(typeof h == 'number'){
27613                 var tbh = 0;
27614                 for (var i =0; i < this.toolbars.length;i++) {
27615                     // fixme - ask toolbars for heights?
27616                     tbh += this.toolbars[i].tb.el.getHeight();
27617                     if (this.toolbars[i].footer) {
27618                         tbh += this.toolbars[i].footer.el.getHeight();
27619                     }
27620                 }
27621                 
27622                 
27623                 
27624                 
27625                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
27626                 ah -= 5; // knock a few pixes off for look..
27627 //                Roo.log(ah);
27628                 this.el.setHeight(this.adjustWidth('textarea', ah));
27629                 var eh = ah;
27630             }
27631         }
27632         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
27633         this.editorcore.onResize(ew,eh);
27634         
27635     },
27636
27637     /**
27638      * Toggles the editor between standard and source edit mode.
27639      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
27640      */
27641     toggleSourceEdit : function(sourceEditMode)
27642     {
27643         this.editorcore.toggleSourceEdit(sourceEditMode);
27644         
27645         if(this.editorcore.sourceEditMode){
27646             Roo.log('editor - showing textarea');
27647             
27648 //            Roo.log('in');
27649 //            Roo.log(this.syncValue());
27650             this.editorcore.syncValue();
27651             this.el.removeClass('x-hidden');
27652             this.el.dom.removeAttribute('tabIndex');
27653             this.el.focus();
27654             this.el.dom.scrollTop = 0;
27655             
27656             
27657             for (var i = 0; i < this.toolbars.length; i++) {
27658                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
27659                     this.toolbars[i].tb.hide();
27660                     this.toolbars[i].footer.hide();
27661                 }
27662             }
27663             
27664         }else{
27665             Roo.log('editor - hiding textarea');
27666 //            Roo.log('out')
27667 //            Roo.log(this.pushValue()); 
27668             this.editorcore.pushValue();
27669             
27670             this.el.addClass('x-hidden');
27671             this.el.dom.setAttribute('tabIndex', -1);
27672             
27673             for (var i = 0; i < this.toolbars.length; i++) {
27674                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
27675                     this.toolbars[i].tb.show();
27676                     this.toolbars[i].footer.show();
27677                 }
27678             }
27679             
27680             //this.deferFocus();
27681         }
27682         
27683         this.setSize(this.wrap.getSize());
27684         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
27685         
27686         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
27687     },
27688  
27689     // private (for BoxComponent)
27690     adjustSize : Roo.BoxComponent.prototype.adjustSize,
27691
27692     // private (for BoxComponent)
27693     getResizeEl : function(){
27694         return this.wrap;
27695     },
27696
27697     // private (for BoxComponent)
27698     getPositionEl : function(){
27699         return this.wrap;
27700     },
27701
27702     // private
27703     initEvents : function(){
27704         this.originalValue = this.getValue();
27705     },
27706
27707     /**
27708      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
27709      * @method
27710      */
27711     markInvalid : Roo.emptyFn,
27712     /**
27713      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
27714      * @method
27715      */
27716     clearInvalid : Roo.emptyFn,
27717
27718     setValue : function(v){
27719         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
27720         this.editorcore.pushValue();
27721     },
27722
27723     /**
27724      * update the language in the body - really done by core
27725      * @param {String} language - eg. en / ar / zh-CN etc..
27726      */
27727     updateLanguage : function(lang)
27728     {
27729         this.language = lang;
27730         this.editorcore.language = lang;
27731         this.editorcore.updateLanguage();
27732      
27733     },
27734     // private
27735     deferFocus : function(){
27736         this.focus.defer(10, this);
27737     },
27738
27739     // doc'ed in Field
27740     focus : function(){
27741         this.editorcore.focus();
27742         
27743     },
27744       
27745
27746     // private
27747     onDestroy : function(){
27748         
27749         
27750         
27751         if(this.rendered){
27752             
27753             for (var i =0; i < this.toolbars.length;i++) {
27754                 // fixme - ask toolbars for heights?
27755                 this.toolbars[i].onDestroy();
27756             }
27757             
27758             this.wrap.dom.innerHTML = '';
27759             this.wrap.remove();
27760         }
27761     },
27762
27763     // private
27764     onFirstFocus : function(){
27765         //Roo.log("onFirstFocus");
27766         this.editorcore.onFirstFocus();
27767          for (var i =0; i < this.toolbars.length;i++) {
27768             this.toolbars[i].onFirstFocus();
27769         }
27770         
27771     },
27772     
27773     // private
27774     syncValue : function()
27775     {
27776         this.editorcore.syncValue();
27777     },
27778     
27779     pushValue : function()
27780     {
27781         this.editorcore.pushValue();
27782     },
27783     
27784     setStylesheets : function(stylesheets)
27785     {
27786         this.editorcore.setStylesheets(stylesheets);
27787     },
27788     
27789     removeStylesheets : function()
27790     {
27791         this.editorcore.removeStylesheets();
27792     }
27793      
27794     
27795     // hide stuff that is not compatible
27796     /**
27797      * @event blur
27798      * @hide
27799      */
27800     /**
27801      * @event change
27802      * @hide
27803      */
27804     /**
27805      * @event focus
27806      * @hide
27807      */
27808     /**
27809      * @event specialkey
27810      * @hide
27811      */
27812     /**
27813      * @cfg {String} fieldClass @hide
27814      */
27815     /**
27816      * @cfg {String} focusClass @hide
27817      */
27818     /**
27819      * @cfg {String} autoCreate @hide
27820      */
27821     /**
27822      * @cfg {String} inputType @hide
27823      */
27824     /**
27825      * @cfg {String} invalidClass @hide
27826      */
27827     /**
27828      * @cfg {String} invalidText @hide
27829      */
27830     /**
27831      * @cfg {String} msgFx @hide
27832      */
27833     /**
27834      * @cfg {String} validateOnBlur @hide
27835      */
27836 });
27837  
27838     /*
27839  * Based on
27840  * Ext JS Library 1.1.1
27841  * Copyright(c) 2006-2007, Ext JS, LLC.
27842  *  
27843  
27844  */
27845
27846 /**
27847  * @class Roo.form.HtmlEditor.ToolbarStandard
27848  * Basic Toolbar
27849
27850  * Usage:
27851  *
27852  new Roo.form.HtmlEditor({
27853     ....
27854     toolbars : [
27855         new Roo.form.HtmlEditorToolbar1({
27856             disable : { fonts: 1 , format: 1, ..., ... , ...],
27857             btns : [ .... ]
27858         })
27859     }
27860      
27861  * 
27862  * @cfg {Object} disable List of elements to disable..
27863  * @cfg {Roo.Toolbar.Item|Roo.Toolbar.Button|Roo.Toolbar.SplitButton|Roo.form.Field} btns[] List of additional buttons.
27864  * 
27865  * 
27866  * NEEDS Extra CSS? 
27867  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
27868  */
27869  
27870 Roo.form.HtmlEditor.ToolbarStandard = function(config)
27871 {
27872     
27873     Roo.apply(this, config);
27874     
27875     // default disabled, based on 'good practice'..
27876     this.disable = this.disable || {};
27877     Roo.applyIf(this.disable, {
27878         fontSize : true,
27879         colors : true,
27880         specialElements : true
27881     });
27882     
27883     
27884     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
27885     // dont call parent... till later.
27886 }
27887
27888 Roo.form.HtmlEditor.ToolbarStandard.prototype = {
27889     
27890     tb: false,
27891     
27892     rendered: false,
27893     
27894     editor : false,
27895     editorcore : false,
27896     /**
27897      * @cfg {Object} disable  List of toolbar elements to disable
27898          
27899      */
27900     disable : false,
27901     
27902     
27903      /**
27904      * @cfg {String} createLinkText The default text for the create link prompt
27905      */
27906     createLinkText : 'Please enter the URL for the link:',
27907     /**
27908      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
27909      */
27910     defaultLinkValue : 'http:/'+'/',
27911    
27912     
27913       /**
27914      * @cfg {Array} fontFamilies An array of available font families
27915      */
27916     fontFamilies : [
27917         'Arial',
27918         'Courier New',
27919         'Tahoma',
27920         'Times New Roman',
27921         'Verdana'
27922     ],
27923     
27924     specialChars : [
27925            "&#169;",
27926           "&#174;",     
27927           "&#8482;",    
27928           "&#163;" ,    
27929          // "&#8212;",    
27930           "&#8230;",    
27931           "&#247;" ,    
27932         //  "&#225;" ,     ?? a acute?
27933            "&#8364;"    , //Euro
27934        //   "&#8220;"    ,
27935         //  "&#8221;"    ,
27936         //  "&#8226;"    ,
27937           "&#176;"  //   , // degrees
27938
27939          // "&#233;"     , // e ecute
27940          // "&#250;"     , // u ecute?
27941     ],
27942     
27943     specialElements : [
27944         {
27945             text: "Insert Table",
27946             xtype: 'MenuItem',
27947             xns : Roo.Menu,
27948             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
27949                 
27950         },
27951         {    
27952             text: "Insert Image",
27953             xtype: 'MenuItem',
27954             xns : Roo.Menu,
27955             ihtml : '<img src="about:blank"/>'
27956             
27957         }
27958         
27959          
27960     ],
27961     
27962     
27963     inputElements : [ 
27964             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
27965             "input:submit", "input:button", "select", "textarea", "label" ],
27966     formats : [
27967         ["p"] ,  
27968         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
27969         ["pre"],[ "code"], 
27970         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
27971         ['div'],['span'],
27972         ['sup'],['sub']
27973     ],
27974     
27975     cleanStyles : [
27976         "font-size"
27977     ],
27978      /**
27979      * @cfg {String} defaultFont default font to use.
27980      */
27981     defaultFont: 'tahoma',
27982    
27983     fontSelect : false,
27984     
27985     
27986     formatCombo : false,
27987     
27988     init : function(editor)
27989     {
27990         this.editor = editor;
27991         this.editorcore = editor.editorcore ? editor.editorcore : editor;
27992         var editorcore = this.editorcore;
27993         
27994         var _t = this;
27995         
27996         var fid = editorcore.frameId;
27997         var etb = this;
27998         function btn(id, toggle, handler){
27999             var xid = fid + '-'+ id ;
28000             return {
28001                 id : xid,
28002                 cmd : id,
28003                 cls : 'x-btn-icon x-edit-'+id,
28004                 enableToggle:toggle !== false,
28005                 scope: _t, // was editor...
28006                 handler:handler||_t.relayBtnCmd,
28007                 clickEvent:'mousedown',
28008                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
28009                 tabIndex:-1
28010             };
28011         }
28012         
28013         
28014         
28015         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
28016         this.tb = tb;
28017          // stop form submits
28018         tb.el.on('click', function(e){
28019             e.preventDefault(); // what does this do?
28020         });
28021
28022         if(!this.disable.font) { // && !Roo.isSafari){
28023             /* why no safari for fonts 
28024             editor.fontSelect = tb.el.createChild({
28025                 tag:'select',
28026                 tabIndex: -1,
28027                 cls:'x-font-select',
28028                 html: this.createFontOptions()
28029             });
28030             
28031             editor.fontSelect.on('change', function(){
28032                 var font = editor.fontSelect.dom.value;
28033                 editor.relayCmd('fontname', font);
28034                 editor.deferFocus();
28035             }, editor);
28036             
28037             tb.add(
28038                 editor.fontSelect.dom,
28039                 '-'
28040             );
28041             */
28042             
28043         };
28044         if(!this.disable.formats){
28045             this.formatCombo = new Roo.form.ComboBox({
28046                 store: new Roo.data.SimpleStore({
28047                     id : 'tag',
28048                     fields: ['tag'],
28049                     data : this.formats // from states.js
28050                 }),
28051                 blockFocus : true,
28052                 name : '',
28053                 //autoCreate : {tag: "div",  size: "20"},
28054                 displayField:'tag',
28055                 typeAhead: false,
28056                 mode: 'local',
28057                 editable : false,
28058                 triggerAction: 'all',
28059                 emptyText:'Add tag',
28060                 selectOnFocus:true,
28061                 width:135,
28062                 listeners : {
28063                     'select': function(c, r, i) {
28064                         editorcore.insertTag(r.get('tag'));
28065                         editor.focus();
28066                     }
28067                 }
28068
28069             });
28070             tb.addField(this.formatCombo);
28071             
28072         }
28073         
28074         if(!this.disable.format){
28075             tb.add(
28076                 btn('bold'),
28077                 btn('italic'),
28078                 btn('underline'),
28079                 btn('strikethrough')
28080             );
28081         };
28082         if(!this.disable.fontSize){
28083             tb.add(
28084                 '-',
28085                 
28086                 
28087                 btn('increasefontsize', false, editorcore.adjustFont),
28088                 btn('decreasefontsize', false, editorcore.adjustFont)
28089             );
28090         };
28091         
28092         
28093         if(!this.disable.colors){
28094             tb.add(
28095                 '-', {
28096                     id:editorcore.frameId +'-forecolor',
28097                     cls:'x-btn-icon x-edit-forecolor',
28098                     clickEvent:'mousedown',
28099                     tooltip: this.buttonTips['forecolor'] || undefined,
28100                     tabIndex:-1,
28101                     menu : new Roo.menu.ColorMenu({
28102                         allowReselect: true,
28103                         focus: Roo.emptyFn,
28104                         value:'000000',
28105                         plain:true,
28106                         selectHandler: function(cp, color){
28107                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
28108                             editor.deferFocus();
28109                         },
28110                         scope: editorcore,
28111                         clickEvent:'mousedown'
28112                     })
28113                 }, {
28114                     id:editorcore.frameId +'backcolor',
28115                     cls:'x-btn-icon x-edit-backcolor',
28116                     clickEvent:'mousedown',
28117                     tooltip: this.buttonTips['backcolor'] || undefined,
28118                     tabIndex:-1,
28119                     menu : new Roo.menu.ColorMenu({
28120                         focus: Roo.emptyFn,
28121                         value:'FFFFFF',
28122                         plain:true,
28123                         allowReselect: true,
28124                         selectHandler: function(cp, color){
28125                             if(Roo.isGecko){
28126                                 editorcore.execCmd('useCSS', false);
28127                                 editorcore.execCmd('hilitecolor', color);
28128                                 editorcore.execCmd('useCSS', true);
28129                                 editor.deferFocus();
28130                             }else{
28131                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
28132                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
28133                                 editor.deferFocus();
28134                             }
28135                         },
28136                         scope:editorcore,
28137                         clickEvent:'mousedown'
28138                     })
28139                 }
28140             );
28141         };
28142         // now add all the items...
28143         
28144
28145         if(!this.disable.alignments){
28146             tb.add(
28147                 '-',
28148                 btn('justifyleft'),
28149                 btn('justifycenter'),
28150                 btn('justifyright')
28151             );
28152         };
28153
28154         //if(!Roo.isSafari){
28155             if(!this.disable.links){
28156                 tb.add(
28157                     '-',
28158                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
28159                 );
28160             };
28161
28162             if(!this.disable.lists){
28163                 tb.add(
28164                     '-',
28165                     btn('insertorderedlist'),
28166                     btn('insertunorderedlist')
28167                 );
28168             }
28169             if(!this.disable.sourceEdit){
28170                 tb.add(
28171                     '-',
28172                     btn('sourceedit', true, function(btn){
28173                         this.toggleSourceEdit(btn.pressed);
28174                     })
28175                 );
28176             }
28177         //}
28178         
28179         var smenu = { };
28180         // special menu.. - needs to be tidied up..
28181         if (!this.disable.special) {
28182             smenu = {
28183                 text: "&#169;",
28184                 cls: 'x-edit-none',
28185                 
28186                 menu : {
28187                     items : []
28188                 }
28189             };
28190             for (var i =0; i < this.specialChars.length; i++) {
28191                 smenu.menu.items.push({
28192                     
28193                     html: this.specialChars[i],
28194                     handler: function(a,b) {
28195                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
28196                         //editor.insertAtCursor(a.html);
28197                         
28198                     },
28199                     tabIndex:-1
28200                 });
28201             }
28202             
28203             
28204             tb.add(smenu);
28205             
28206             
28207         }
28208         
28209         var cmenu = { };
28210         if (!this.disable.cleanStyles) {
28211             cmenu = {
28212                 cls: 'x-btn-icon x-btn-clear',
28213                 
28214                 menu : {
28215                     items : []
28216                 }
28217             };
28218             for (var i =0; i < this.cleanStyles.length; i++) {
28219                 cmenu.menu.items.push({
28220                     actiontype : this.cleanStyles[i],
28221                     html: 'Remove ' + this.cleanStyles[i],
28222                     handler: function(a,b) {
28223 //                        Roo.log(a);
28224 //                        Roo.log(b);
28225                         var c = Roo.get(editorcore.doc.body);
28226                         c.select('[style]').each(function(s) {
28227                             s.dom.style.removeProperty(a.actiontype);
28228                         });
28229                         editorcore.syncValue();
28230                     },
28231                     tabIndex:-1
28232                 });
28233             }
28234             cmenu.menu.items.push({
28235                 actiontype : 'tablewidths',
28236                 html: 'Remove Table Widths',
28237                 handler: function(a,b) {
28238                     editorcore.cleanTableWidths();
28239                     editorcore.syncValue();
28240                 },
28241                 tabIndex:-1
28242             });
28243             cmenu.menu.items.push({
28244                 actiontype : 'word',
28245                 html: 'Remove MS Word Formating',
28246                 handler: function(a,b) {
28247                     editorcore.cleanWord();
28248                     editorcore.syncValue();
28249                 },
28250                 tabIndex:-1
28251             });
28252             
28253             cmenu.menu.items.push({
28254                 actiontype : 'all',
28255                 html: 'Remove All Styles',
28256                 handler: function(a,b) {
28257                     
28258                     var c = Roo.get(editorcore.doc.body);
28259                     c.select('[style]').each(function(s) {
28260                         s.dom.removeAttribute('style');
28261                     });
28262                     editorcore.syncValue();
28263                 },
28264                 tabIndex:-1
28265             });
28266             
28267             cmenu.menu.items.push({
28268                 actiontype : 'all',
28269                 html: 'Remove All CSS Classes',
28270                 handler: function(a,b) {
28271                     
28272                     var c = Roo.get(editorcore.doc.body);
28273                     c.select('[class]').each(function(s) {
28274                         s.dom.removeAttribute('class');
28275                     });
28276                     editorcore.cleanWord();
28277                     editorcore.syncValue();
28278                 },
28279                 tabIndex:-1
28280             });
28281             
28282              cmenu.menu.items.push({
28283                 actiontype : 'tidy',
28284                 html: 'Tidy HTML Source',
28285                 handler: function(a,b) {
28286                     new Roo.htmleditor.Tidy(editorcore.doc.body);
28287                     editorcore.syncValue();
28288                 },
28289                 tabIndex:-1
28290             });
28291             
28292             
28293             tb.add(cmenu);
28294         }
28295          
28296         if (!this.disable.specialElements) {
28297             var semenu = {
28298                 text: "Other;",
28299                 cls: 'x-edit-none',
28300                 menu : {
28301                     items : []
28302                 }
28303             };
28304             for (var i =0; i < this.specialElements.length; i++) {
28305                 semenu.menu.items.push(
28306                     Roo.apply({ 
28307                         handler: function(a,b) {
28308                             editor.insertAtCursor(this.ihtml);
28309                         }
28310                     }, this.specialElements[i])
28311                 );
28312                     
28313             }
28314             
28315             tb.add(semenu);
28316             
28317             
28318         }
28319          
28320         
28321         if (this.btns) {
28322             for(var i =0; i< this.btns.length;i++) {
28323                 var b = Roo.factory(this.btns[i],this.btns[i].xns || Roo.form);
28324                 b.cls =  'x-edit-none';
28325                 
28326                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
28327                     b.cls += ' x-init-enable';
28328                 }
28329                 
28330                 b.scope = editorcore;
28331                 tb.add(b);
28332             }
28333         
28334         }
28335         
28336         
28337         
28338         // disable everything...
28339         
28340         this.tb.items.each(function(item){
28341             
28342            if(
28343                 item.id != editorcore.frameId+ '-sourceedit' && 
28344                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
28345             ){
28346                 
28347                 item.disable();
28348             }
28349         });
28350         this.rendered = true;
28351         
28352         // the all the btns;
28353         editor.on('editorevent', this.updateToolbar, this);
28354         // other toolbars need to implement this..
28355         //editor.on('editmodechange', this.updateToolbar, this);
28356     },
28357     
28358     
28359     relayBtnCmd : function(btn) {
28360         this.editorcore.relayCmd(btn.cmd);
28361     },
28362     // private used internally
28363     createLink : function(){
28364         //Roo.log("create link?");
28365         var ec = this.editorcore;
28366         var ar = ec.getAllAncestors();
28367         var n = false;
28368         for(var i = 0;i< ar.length;i++) {
28369             if (ar[i] && ar[i].nodeName == 'A') {
28370                 n = ar[i];
28371                 break;
28372             }
28373         }
28374         
28375         (function() {
28376             
28377             Roo.MessageBox.show({
28378                 title : "Add / Edit Link URL",
28379                 msg : "Enter the url for the link",
28380                 buttons: Roo.MessageBox.OKCANCEL,
28381                 fn: function(btn, url){
28382                     if (btn != 'ok') {
28383                         return;
28384                     }
28385                     if(url && url != 'http:/'+'/'){
28386                         if (n) {
28387                             n.setAttribute('href', url);
28388                         } else {
28389                             ec.relayCmd('createlink', url);
28390                         }
28391                     }
28392                 },
28393                 minWidth:250,
28394                 prompt:true,
28395                 //multiline: multiline,
28396                 modal : true,
28397                 value :  n  ? n.getAttribute('href') : '' 
28398             });
28399             
28400              
28401         }).defer(100, this); // we have to defer this , otherwise the mouse click gives focus to the main window.
28402         
28403     },
28404
28405     
28406     /**
28407      * Protected method that will not generally be called directly. It triggers
28408      * a toolbar update by reading the markup state of the current selection in the editor.
28409      */
28410     updateToolbar: function(){
28411
28412         if(!this.editorcore.activated){
28413             this.editor.onFirstFocus();
28414             return;
28415         }
28416
28417         var btns = this.tb.items.map, 
28418             doc = this.editorcore.doc,
28419             frameId = this.editorcore.frameId;
28420
28421         if(!this.disable.font && !Roo.isSafari){
28422             /*
28423             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
28424             if(name != this.fontSelect.dom.value){
28425                 this.fontSelect.dom.value = name;
28426             }
28427             */
28428         }
28429         if(!this.disable.format){
28430             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
28431             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
28432             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
28433             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
28434         }
28435         if(!this.disable.alignments){
28436             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
28437             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
28438             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
28439         }
28440         if(!Roo.isSafari && !this.disable.lists){
28441             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
28442             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
28443         }
28444         
28445         var ans = this.editorcore.getAllAncestors();
28446         if (this.formatCombo) {
28447             
28448             
28449             var store = this.formatCombo.store;
28450             this.formatCombo.setValue("");
28451             for (var i =0; i < ans.length;i++) {
28452                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
28453                     // select it..
28454                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
28455                     break;
28456                 }
28457             }
28458         }
28459         
28460         
28461         
28462         // hides menus... - so this cant be on a menu...
28463         Roo.menu.MenuMgr.hideAll();
28464
28465         //this.editorsyncValue();
28466     },
28467    
28468     
28469     createFontOptions : function(){
28470         var buf = [], fs = this.fontFamilies, ff, lc;
28471         
28472         
28473         
28474         for(var i = 0, len = fs.length; i< len; i++){
28475             ff = fs[i];
28476             lc = ff.toLowerCase();
28477             buf.push(
28478                 '<option value="',lc,'" style="font-family:',ff,';"',
28479                     (this.defaultFont == lc ? ' selected="true">' : '>'),
28480                     ff,
28481                 '</option>'
28482             );
28483         }
28484         return buf.join('');
28485     },
28486     
28487     toggleSourceEdit : function(sourceEditMode){
28488         
28489         Roo.log("toolbar toogle");
28490         if(sourceEditMode === undefined){
28491             sourceEditMode = !this.sourceEditMode;
28492         }
28493         this.sourceEditMode = sourceEditMode === true;
28494         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
28495         // just toggle the button?
28496         if(btn.pressed !== this.sourceEditMode){
28497             btn.toggle(this.sourceEditMode);
28498             return;
28499         }
28500         
28501         if(sourceEditMode){
28502             Roo.log("disabling buttons");
28503             this.tb.items.each(function(item){
28504                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
28505                     item.disable();
28506                 }
28507             });
28508           
28509         }else{
28510             Roo.log("enabling buttons");
28511             if(this.editorcore.initialized){
28512                 this.tb.items.each(function(item){
28513                     item.enable();
28514                 });
28515                 // initialize 'blocks'
28516                 Roo.each(Roo.get(this.editorcore.doc.body).query('*[data-block]'), function(e) {
28517                     Roo.htmleditor.Block.factory(e).updateElement(e);
28518                 },this);
28519             
28520             }
28521             
28522         }
28523         Roo.log("calling toggole on editor");
28524         // tell the editor that it's been pressed..
28525         this.editor.toggleSourceEdit(sourceEditMode);
28526        
28527     },
28528      /**
28529      * Object collection of toolbar tooltips for the buttons in the editor. The key
28530      * is the command id associated with that button and the value is a valid QuickTips object.
28531      * For example:
28532 <pre><code>
28533 {
28534     bold : {
28535         title: 'Bold (Ctrl+B)',
28536         text: 'Make the selected text bold.',
28537         cls: 'x-html-editor-tip'
28538     },
28539     italic : {
28540         title: 'Italic (Ctrl+I)',
28541         text: 'Make the selected text italic.',
28542         cls: 'x-html-editor-tip'
28543     },
28544     ...
28545 </code></pre>
28546     * @type Object
28547      */
28548     buttonTips : {
28549         bold : {
28550             title: 'Bold (Ctrl+B)',
28551             text: 'Make the selected text bold.',
28552             cls: 'x-html-editor-tip'
28553         },
28554         italic : {
28555             title: 'Italic (Ctrl+I)',
28556             text: 'Make the selected text italic.',
28557             cls: 'x-html-editor-tip'
28558         },
28559         underline : {
28560             title: 'Underline (Ctrl+U)',
28561             text: 'Underline the selected text.',
28562             cls: 'x-html-editor-tip'
28563         },
28564         strikethrough : {
28565             title: 'Strikethrough',
28566             text: 'Strikethrough the selected text.',
28567             cls: 'x-html-editor-tip'
28568         },
28569         increasefontsize : {
28570             title: 'Grow Text',
28571             text: 'Increase the font size.',
28572             cls: 'x-html-editor-tip'
28573         },
28574         decreasefontsize : {
28575             title: 'Shrink Text',
28576             text: 'Decrease the font size.',
28577             cls: 'x-html-editor-tip'
28578         },
28579         backcolor : {
28580             title: 'Text Highlight Color',
28581             text: 'Change the background color of the selected text.',
28582             cls: 'x-html-editor-tip'
28583         },
28584         forecolor : {
28585             title: 'Font Color',
28586             text: 'Change the color of the selected text.',
28587             cls: 'x-html-editor-tip'
28588         },
28589         justifyleft : {
28590             title: 'Align Text Left',
28591             text: 'Align text to the left.',
28592             cls: 'x-html-editor-tip'
28593         },
28594         justifycenter : {
28595             title: 'Center Text',
28596             text: 'Center text in the editor.',
28597             cls: 'x-html-editor-tip'
28598         },
28599         justifyright : {
28600             title: 'Align Text Right',
28601             text: 'Align text to the right.',
28602             cls: 'x-html-editor-tip'
28603         },
28604         insertunorderedlist : {
28605             title: 'Bullet List',
28606             text: 'Start a bulleted list.',
28607             cls: 'x-html-editor-tip'
28608         },
28609         insertorderedlist : {
28610             title: 'Numbered List',
28611             text: 'Start a numbered list.',
28612             cls: 'x-html-editor-tip'
28613         },
28614         createlink : {
28615             title: 'Hyperlink',
28616             text: 'Make the selected text a hyperlink.',
28617             cls: 'x-html-editor-tip'
28618         },
28619         sourceedit : {
28620             title: 'Source Edit',
28621             text: 'Switch to source editing mode.',
28622             cls: 'x-html-editor-tip'
28623         }
28624     },
28625     // private
28626     onDestroy : function(){
28627         if(this.rendered){
28628             
28629             this.tb.items.each(function(item){
28630                 if(item.menu){
28631                     item.menu.removeAll();
28632                     if(item.menu.el){
28633                         item.menu.el.destroy();
28634                     }
28635                 }
28636                 item.destroy();
28637             });
28638              
28639         }
28640     },
28641     onFirstFocus: function() {
28642         this.tb.items.each(function(item){
28643            item.enable();
28644         });
28645     }
28646 };
28647
28648
28649
28650
28651 // <script type="text/javascript">
28652 /*
28653  * Based on
28654  * Ext JS Library 1.1.1
28655  * Copyright(c) 2006-2007, Ext JS, LLC.
28656  *  
28657  
28658  */
28659
28660  
28661 /**
28662  * @class Roo.form.HtmlEditor.ToolbarContext
28663  * Context Toolbar
28664  * 
28665  * Usage:
28666  *
28667  new Roo.form.HtmlEditor({
28668     ....
28669     toolbars : [
28670         { xtype: 'ToolbarStandard', styles : {} }
28671         { xtype: 'ToolbarContext', disable : {} }
28672     ]
28673 })
28674
28675      
28676  * 
28677  * @config : {Object} disable List of elements to disable.. (not done yet.)
28678  * @config : {Object} styles  Map of styles available.
28679  * 
28680  */
28681
28682 Roo.form.HtmlEditor.ToolbarContext = function(config)
28683 {
28684     
28685     Roo.apply(this, config);
28686     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
28687     // dont call parent... till later.
28688     this.styles = this.styles || {};
28689 }
28690
28691  
28692
28693 Roo.form.HtmlEditor.ToolbarContext.types = {
28694     'IMG' : [
28695         {
28696             name : 'width',
28697             title: "Width",
28698             width: 40
28699         },
28700         {
28701             name : 'height',
28702             title: "Height",
28703             width: 40
28704         },
28705         {
28706             name : 'align',
28707             title: "Align",
28708             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
28709             width : 80
28710             
28711         },
28712         {
28713             name : 'border',
28714             title: "Border",
28715             width: 40
28716         },
28717         {
28718             name : 'alt',
28719             title: "Alt",
28720             width: 120
28721         },
28722         {
28723             name : 'src',
28724             title: "Src",
28725             width: 220
28726         }
28727         
28728     ],
28729     
28730     'FIGURE' : [
28731         {
28732             name : 'align',
28733             title: "Align",
28734             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
28735             width : 80  
28736         }
28737     ],
28738     'A' : [
28739         {
28740             name : 'name',
28741             title: "Name",
28742             width: 50
28743         },
28744         {
28745             name : 'target',
28746             title: "Target",
28747             width: 120
28748         },
28749         {
28750             name : 'href',
28751             title: "Href",
28752             width: 220
28753         } // border?
28754         
28755     ],
28756     
28757     'INPUT' : [
28758         {
28759             name : 'name',
28760             title: "name",
28761             width: 120
28762         },
28763         {
28764             name : 'value',
28765             title: "Value",
28766             width: 120
28767         },
28768         {
28769             name : 'width',
28770             title: "Width",
28771             width: 40
28772         }
28773     ],
28774     'LABEL' : [
28775          {
28776             name : 'for',
28777             title: "For",
28778             width: 120
28779         }
28780     ],
28781     'TEXTAREA' : [
28782         {
28783             name : 'name',
28784             title: "name",
28785             width: 120
28786         },
28787         {
28788             name : 'rows',
28789             title: "Rows",
28790             width: 20
28791         },
28792         {
28793             name : 'cols',
28794             title: "Cols",
28795             width: 20
28796         }
28797     ],
28798     'SELECT' : [
28799         {
28800             name : 'name',
28801             title: "name",
28802             width: 120
28803         },
28804         {
28805             name : 'selectoptions',
28806             title: "Options",
28807             width: 200
28808         }
28809     ],
28810     
28811     // should we really allow this??
28812     // should this just be 
28813     'BODY' : [
28814         
28815         {
28816             name : 'title',
28817             title: "Title",
28818             width: 200,
28819             disabled : true
28820         }
28821     ],
28822  
28823     '*' : [
28824         // empty.
28825     ]
28826
28827 };
28828
28829 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
28830 Roo.form.HtmlEditor.ToolbarContext.stores = false;
28831
28832 Roo.form.HtmlEditor.ToolbarContext.options = {
28833         'font-family'  : [ 
28834                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
28835                 [ 'Courier New', 'Courier New'],
28836                 [ 'Tahoma', 'Tahoma'],
28837                 [ 'Times New Roman,serif', 'Times'],
28838                 [ 'Verdana','Verdana' ]
28839         ]
28840 };
28841
28842 // fixme - these need to be configurable..
28843  
28844
28845 //Roo.form.HtmlEditor.ToolbarContext.types
28846
28847
28848 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
28849     
28850     tb: false,
28851     
28852     rendered: false,
28853     
28854     editor : false,
28855     editorcore : false,
28856     /**
28857      * @cfg {Object} disable  List of toolbar elements to disable
28858          
28859      */
28860     disable : false,
28861     /**
28862      * @cfg {Object} styles List of styles 
28863      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
28864      *
28865      * These must be defined in the page, so they get rendered correctly..
28866      * .headline { }
28867      * TD.underline { }
28868      * 
28869      */
28870     styles : false,
28871     
28872     options: false,
28873     
28874     toolbars : false,
28875     
28876     init : function(editor)
28877     {
28878         this.editor = editor;
28879         this.editorcore = editor.editorcore ? editor.editorcore : editor;
28880         var editorcore = this.editorcore;
28881         
28882         var fid = editorcore.frameId;
28883         var etb = this;
28884         function btn(id, toggle, handler){
28885             var xid = fid + '-'+ id ;
28886             return {
28887                 id : xid,
28888                 cmd : id,
28889                 cls : 'x-btn-icon x-edit-'+id,
28890                 enableToggle:toggle !== false,
28891                 scope: editorcore, // was editor...
28892                 handler:handler||editorcore.relayBtnCmd,
28893                 clickEvent:'mousedown',
28894                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
28895                 tabIndex:-1
28896             };
28897         }
28898         // create a new element.
28899         var wdiv = editor.wrap.createChild({
28900                 tag: 'div'
28901             }, editor.wrap.dom.firstChild.nextSibling, true);
28902         
28903         // can we do this more than once??
28904         
28905          // stop form submits
28906       
28907  
28908         // disable everything...
28909         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
28910         this.toolbars = {};
28911         // block toolbars are built in updateToolbar when needed.
28912         for (var i in  ty) {
28913             
28914             this.toolbars[i] = this.buildToolbar(ty[i],i);
28915         }
28916         this.tb = this.toolbars.BODY;
28917         this.tb.el.show();
28918         this.buildFooter();
28919         this.footer.show();
28920         editor.on('hide', function( ) { this.footer.hide() }, this);
28921         editor.on('show', function( ) { this.footer.show() }, this);
28922         
28923          
28924         this.rendered = true;
28925         
28926         // the all the btns;
28927         editor.on('editorevent', this.updateToolbar, this);
28928         // other toolbars need to implement this..
28929         //editor.on('editmodechange', this.updateToolbar, this);
28930     },
28931     
28932     
28933     
28934     /**
28935      * Protected method that will not generally be called directly. It triggers
28936      * a toolbar update by reading the markup state of the current selection in the editor.
28937      *
28938      * Note you can force an update by calling on('editorevent', scope, false)
28939      */
28940     updateToolbar: function(editor ,ev, sel)
28941     {
28942         
28943         if (ev) {
28944             ev.stopEvent(); // se if we can stop this looping with mutiple events.
28945         }
28946         
28947         //Roo.log(ev);
28948         // capture mouse up - this is handy for selecting images..
28949         // perhaps should go somewhere else...
28950         if(!this.editorcore.activated){
28951              this.editor.onFirstFocus();
28952             return;
28953         }
28954         //Roo.log(ev ? ev.target : 'NOTARGET');
28955         
28956         
28957         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
28958         // selectNode - might want to handle IE?
28959         
28960         
28961         
28962         if (ev &&
28963             (ev.type == 'mouseup' || ev.type == 'click' ) &&
28964             ev.target && ev.target.tagName != 'BODY' ) { // && ev.target.tagName == 'IMG') {
28965             // they have click on an image...
28966             // let's see if we can change the selection...
28967             sel = ev.target;
28968             
28969             // this triggers looping?
28970             //this.editorcore.selectNode(sel);
28971              
28972         }
28973         
28974         // this forces an id..
28975         Array.from(this.editorcore.doc.body.querySelectorAll('.roo-ed-selection')).forEach(function(e) {
28976              e.classList.remove('roo-ed-selection');
28977         });
28978         //Roo.select('.roo-ed-selection', false, this.editorcore.doc).removeClass('roo-ed-selection');
28979         //Roo.get(node).addClass('roo-ed-selection');
28980       
28981         //var updateFooter = sel ? false : true; 
28982         
28983         
28984         var ans = this.editorcore.getAllAncestors();
28985         
28986         // pick
28987         var ty = Roo.form.HtmlEditor.ToolbarContext.types;
28988         
28989         if (!sel) { 
28990             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
28991             sel = sel ? sel : this.editorcore.doc.body;
28992             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
28993             
28994         }
28995         
28996         var tn = sel.tagName.toUpperCase();
28997         var lastSel = this.tb.selectedNode;
28998         this.tb.selectedNode = sel;
28999         var left_label = tn;
29000         
29001         // ok see if we are editing a block?
29002         
29003         var db = false;
29004         // you are not actually selecting the block.
29005         if (sel && sel.hasAttribute('data-block')) {
29006             db = sel;
29007         } else if (sel && sel.closest('[data-block]')) {
29008             
29009             db = sel.closest('[data-block]');
29010             //var cepar = sel.closest('[contenteditable=true]');
29011             //if (db && cepar && cepar.tagName != 'BODY') {
29012             //   db = false; // we are inside an editable block.. = not sure how we are going to handle nested blocks!?
29013             //}   
29014         }
29015         
29016         
29017         var block = false;
29018         //if (db && !sel.hasAttribute('contenteditable') && sel.getAttribute('contenteditable') != 'true' ) {
29019         if (db && this.editorcore.enableBlocks) {
29020             block = Roo.htmleditor.Block.factory(db);
29021             
29022             
29023             if (block) {
29024                  db.className = (
29025                         db.classList.length > 0  ? db.className + ' ' : ''
29026                     )  + 'roo-ed-selection';
29027                  
29028                  // since we removed it earlier... its not there..
29029                 tn = 'BLOCK.' + db.getAttribute('data-block');
29030                 
29031                 //this.editorcore.selectNode(db);
29032                 if (typeof(this.toolbars[tn]) == 'undefined') {
29033                    this.toolbars[tn] = this.buildToolbar( false  ,tn ,block.friendly_name, block);
29034                 }
29035                 this.toolbars[tn].selectedNode = db;
29036                 left_label = block.friendly_name;
29037                 ans = this.editorcore.getAllAncestors();
29038             }
29039             
29040                 
29041             
29042         }
29043         
29044         
29045         if (this.tb.name == tn && lastSel == this.tb.selectedNode && ev !== false) {
29046             return; // no change?
29047         }
29048         
29049         
29050           
29051         this.tb.el.hide();
29052         ///console.log("show: " + tn);
29053         this.tb =  typeof(this.toolbars[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
29054         
29055         this.tb.el.show();
29056         // update name
29057         this.tb.items.first().el.innerHTML = left_label + ':&nbsp;';
29058         
29059         
29060         // update attributes
29061         if (block && this.tb.fields) {
29062              
29063             this.tb.fields.each(function(e) {
29064                 e.setValue(block[e.name]);
29065             });
29066             
29067             
29068         } else  if (this.tb.fields && this.tb.selectedNode) {
29069             this.tb.fields.each( function(e) {
29070                 if (e.stylename) {
29071                     e.setValue(this.tb.selectedNode.style[e.stylename]);
29072                     return;
29073                 } 
29074                 e.setValue(this.tb.selectedNode.getAttribute(e.attrname));
29075             }, this);
29076             this.updateToolbarStyles(this.tb.selectedNode);  
29077         }
29078         
29079         
29080        
29081         Roo.menu.MenuMgr.hideAll();
29082
29083         
29084         
29085     
29086         // update the footer
29087         //
29088         this.updateFooter(ans);
29089              
29090     },
29091     
29092     updateToolbarStyles : function(sel)
29093     {
29094         var hasStyles = false;
29095         for(var i in this.styles) {
29096             hasStyles = true;
29097             break;
29098         }
29099         
29100         // update styles
29101         if (hasStyles && this.tb.hasStyles) { 
29102             var st = this.tb.fields.item(0);
29103             
29104             st.store.removeAll();
29105             var cn = sel.className.split(/\s+/);
29106             
29107             var avs = [];
29108             if (this.styles['*']) {
29109                 
29110                 Roo.each(this.styles['*'], function(v) {
29111                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
29112                 });
29113             }
29114             if (this.styles[tn]) { 
29115                 Roo.each(this.styles[tn], function(v) {
29116                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
29117                 });
29118             }
29119             
29120             st.store.loadData(avs);
29121             st.collapse();
29122             st.setValue(cn);
29123         }
29124     },
29125     
29126      
29127     updateFooter : function(ans)
29128     {
29129         var html = '';
29130         if (ans === false) {
29131             this.footDisp.dom.innerHTML = '';
29132             return;
29133         }
29134         
29135         this.footerEls = ans.reverse();
29136         Roo.each(this.footerEls, function(a,i) {
29137             if (!a) { return; }
29138             html += html.length ? ' &gt; '  :  '';
29139             
29140             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
29141             
29142         });
29143        
29144         // 
29145         var sz = this.footDisp.up('td').getSize();
29146         this.footDisp.dom.style.width = (sz.width -10) + 'px';
29147         this.footDisp.dom.style.marginLeft = '5px';
29148         
29149         this.footDisp.dom.style.overflow = 'hidden';
29150         
29151         this.footDisp.dom.innerHTML = html;
29152             
29153         
29154     },
29155    
29156        
29157     // private
29158     onDestroy : function(){
29159         if(this.rendered){
29160             
29161             this.tb.items.each(function(item){
29162                 if(item.menu){
29163                     item.menu.removeAll();
29164                     if(item.menu.el){
29165                         item.menu.el.destroy();
29166                     }
29167                 }
29168                 item.destroy();
29169             });
29170              
29171         }
29172     },
29173     onFirstFocus: function() {
29174         // need to do this for all the toolbars..
29175         this.tb.items.each(function(item){
29176            item.enable();
29177         });
29178     },
29179     buildToolbar: function(tlist, nm, friendly_name, block)
29180     {
29181         var editor = this.editor;
29182         var editorcore = this.editorcore;
29183          // create a new element.
29184         var wdiv = editor.wrap.createChild({
29185                 tag: 'div'
29186             }, editor.wrap.dom.firstChild.nextSibling, true);
29187         
29188        
29189         var tb = new Roo.Toolbar(wdiv);
29190         ///this.tb = tb; // << this sets the active toolbar..
29191         if (tlist === false && block) {
29192             tlist = block.contextMenu(this);
29193         }
29194         
29195         tb.hasStyles = false;
29196         tb.name = nm;
29197         
29198         tb.add((typeof(friendly_name) == 'undefined' ? nm : friendly_name) + ":&nbsp;");
29199         
29200         var styles = Array.from(this.styles);
29201         
29202         
29203         // styles...
29204         if (styles && styles.length) {
29205             tb.hasStyles = true;
29206             // this needs a multi-select checkbox...
29207             tb.addField( new Roo.form.ComboBox({
29208                 store: new Roo.data.SimpleStore({
29209                     id : 'val',
29210                     fields: ['val', 'selected'],
29211                     data : [] 
29212                 }),
29213                 name : '-roo-edit-className',
29214                 attrname : 'className',
29215                 displayField: 'val',
29216                 typeAhead: false,
29217                 mode: 'local',
29218                 editable : false,
29219                 triggerAction: 'all',
29220                 emptyText:'Select Style',
29221                 selectOnFocus:true,
29222                 width: 130,
29223                 listeners : {
29224                     'select': function(c, r, i) {
29225                         // initial support only for on class per el..
29226                         tb.selectedNode.className =  r ? r.get('val') : '';
29227                         editorcore.syncValue();
29228                     }
29229                 }
29230     
29231             }));
29232         }
29233         
29234         var tbc = Roo.form.HtmlEditor.ToolbarContext;
29235         
29236         
29237         for (var i = 0; i < tlist.length; i++) {
29238             
29239             // newer versions will use xtype cfg to create menus.
29240             if (typeof(tlist[i].xtype) != 'undefined') {
29241                 
29242                 tb[typeof(tlist[i].name)== 'undefined' ? 'add' : 'addField'](Roo.factory(tlist[i]));
29243                 
29244                 
29245                 continue;
29246             }
29247             
29248             var item = tlist[i];
29249             tb.add(item.title + ":&nbsp;");
29250             
29251             
29252             //optname == used so you can configure the options available..
29253             var opts = item.opts ? item.opts : false;
29254             if (item.optname) { // use the b
29255                 opts = Roo.form.HtmlEditor.ToolbarContext.options[item.optname];
29256            
29257             }
29258             
29259             if (opts) {
29260                 // opts == pulldown..
29261                 tb.addField( new Roo.form.ComboBox({
29262                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
29263                         id : 'val',
29264                         fields: ['val', 'display'],
29265                         data : opts  
29266                     }),
29267                     name : '-roo-edit-' + tlist[i].name,
29268                     
29269                     attrname : tlist[i].name,
29270                     stylename : item.style ? item.style : false,
29271                     
29272                     displayField: item.displayField ? item.displayField : 'val',
29273                     valueField :  'val',
29274                     typeAhead: false,
29275                     mode: typeof(tbc.stores[tlist[i].name]) != 'undefined'  ? 'remote' : 'local',
29276                     editable : false,
29277                     triggerAction: 'all',
29278                     emptyText:'Select',
29279                     selectOnFocus:true,
29280                     width: item.width ? item.width  : 130,
29281                     listeners : {
29282                         'select': function(c, r, i) {
29283                              
29284                             
29285                             if (c.stylename) {
29286                                 tb.selectedNode.style[c.stylename] =  r.get('val');
29287                                 editorcore.syncValue();
29288                                 return;
29289                             }
29290                             if (r === false) {
29291                                 tb.selectedNode.removeAttribute(c.attrname);
29292                                 editorcore.syncValue();
29293                                 return;
29294                             }
29295                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
29296                             editorcore.syncValue();
29297                         }
29298                     }
29299
29300                 }));
29301                 continue;
29302                     
29303                  
29304                 /*
29305                 tb.addField( new Roo.form.TextField({
29306                     name: i,
29307                     width: 100,
29308                     //allowBlank:false,
29309                     value: ''
29310                 }));
29311                 continue;
29312                 */
29313             }
29314             tb.addField( new Roo.form.TextField({
29315                 name: '-roo-edit-' + tlist[i].name,
29316                 attrname : tlist[i].name,
29317                 
29318                 width: item.width,
29319                 //allowBlank:true,
29320                 value: '',
29321                 listeners: {
29322                     'change' : function(f, nv, ov) {
29323                         
29324                          
29325                         tb.selectedNode.setAttribute(f.attrname, nv);
29326                         editorcore.syncValue();
29327                     }
29328                 }
29329             }));
29330              
29331         }
29332         
29333         var _this = this;
29334         var show_delete = !block || block.deleteTitle !== false;
29335         if(nm == 'BODY'){
29336             show_delete = false;
29337             tb.addSeparator();
29338         
29339             tb.addButton( {
29340                 text: 'Stylesheets',
29341
29342                 listeners : {
29343                     click : function ()
29344                     {
29345                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
29346                     }
29347                 }
29348             });
29349         }
29350         
29351         tb.addFill();
29352         if (show_delete) {
29353             tb.addButton({
29354                 text: block && block.deleteTitle ? block.deleteTitle  : 'Remove Block or Formating', // remove the tag, and puts the children outside...
29355         
29356                 listeners : {
29357                     click : function ()
29358                     {
29359                         var sn = tb.selectedNode;
29360                         if (block) {
29361                             sn = Roo.htmleditor.Block.factory(tb.selectedNode).removeNode();
29362                             
29363                         }
29364                         if (!sn) {
29365                             return;
29366                         }
29367                         var stn =  sn.childNodes[0] || sn.nextSibling || sn.previousSibling || sn.parentNode;
29368                         if (sn.hasAttribute('data-block')) {
29369                             stn =  sn.nextSibling || sn.previousSibling || sn.parentNode;
29370                             sn.parentNode.removeChild(sn);
29371                             
29372                         } else if (sn && sn.tagName != 'BODY') {
29373                             // remove and keep parents.
29374                             a = new Roo.htmleditor.FilterKeepChildren({tag : false});
29375                             a.replaceTag(sn);
29376                         }
29377                         
29378                         
29379                         var range = editorcore.createRange();
29380             
29381                         range.setStart(stn,0);
29382                         range.setEnd(stn,0); 
29383                         var selection = editorcore.getSelection();
29384                         selection.removeAllRanges();
29385                         selection.addRange(range);
29386                         
29387                         
29388                         //_this.updateToolbar(null, null, pn);
29389                         _this.updateToolbar(null, null, null);
29390                         _this.updateFooter(false);
29391                         
29392                     }
29393                 }
29394                 
29395                         
29396                     
29397                 
29398             });
29399         }    
29400         
29401         tb.el.on('click', function(e){
29402             e.preventDefault(); // what does this do?
29403         });
29404         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
29405         tb.el.hide();
29406         
29407         // dont need to disable them... as they will get hidden
29408         return tb;
29409          
29410         
29411     },
29412     buildFooter : function()
29413     {
29414         
29415         var fel = this.editor.wrap.createChild();
29416         this.footer = new Roo.Toolbar(fel);
29417         // toolbar has scrolly on left / right?
29418         var footDisp= new Roo.Toolbar.Fill();
29419         var _t = this;
29420         this.footer.add(
29421             {
29422                 text : '&lt;',
29423                 xtype: 'Button',
29424                 handler : function() {
29425                     _t.footDisp.scrollTo('left',0,true)
29426                 }
29427             }
29428         );
29429         this.footer.add( footDisp );
29430         this.footer.add( 
29431             {
29432                 text : '&gt;',
29433                 xtype: 'Button',
29434                 handler : function() {
29435                     // no animation..
29436                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
29437                 }
29438             }
29439         );
29440         var fel = Roo.get(footDisp.el);
29441         fel.addClass('x-editor-context');
29442         this.footDispWrap = fel; 
29443         this.footDispWrap.overflow  = 'hidden';
29444         
29445         this.footDisp = fel.createChild();
29446         this.footDispWrap.on('click', this.onContextClick, this)
29447         
29448         
29449     },
29450     // when the footer contect changes
29451     onContextClick : function (ev,dom)
29452     {
29453         ev.preventDefault();
29454         var  cn = dom.className;
29455         //Roo.log(cn);
29456         if (!cn.match(/x-ed-loc-/)) {
29457             return;
29458         }
29459         var n = cn.split('-').pop();
29460         var ans = this.footerEls;
29461         var sel = ans[n];
29462         
29463         this.editorcore.selectNode(sel);
29464         
29465         
29466         this.updateToolbar(null, null, sel);
29467         
29468         
29469     }
29470     
29471     
29472     
29473     
29474     
29475 });
29476
29477
29478
29479
29480
29481 /*
29482  * Based on:
29483  * Ext JS Library 1.1.1
29484  * Copyright(c) 2006-2007, Ext JS, LLC.
29485  *
29486  * Originally Released Under LGPL - original licence link has changed is not relivant.
29487  *
29488  * Fork - LGPL
29489  * <script type="text/javascript">
29490  */
29491  
29492 /**
29493  * @class Roo.form.BasicForm
29494  * @extends Roo.util.Observable
29495  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
29496  * @constructor
29497  * @param {String/HTMLElement/Roo.Element} el The form element or its id
29498  * @param {Object} config Configuration options
29499  */
29500 Roo.form.BasicForm = function(el, config){
29501     this.allItems = [];
29502     this.childForms = [];
29503     Roo.apply(this, config);
29504     /*
29505      * The Roo.form.Field items in this form.
29506      * @type MixedCollection
29507      */
29508      
29509      
29510     this.items = new Roo.util.MixedCollection(false, function(o){
29511         return o.id || (o.id = Roo.id());
29512     });
29513     this.addEvents({
29514         /**
29515          * @event beforeaction
29516          * Fires before any action is performed. Return false to cancel the action.
29517          * @param {Form} this
29518          * @param {Action} action The action to be performed
29519          */
29520         beforeaction: true,
29521         /**
29522          * @event actionfailed
29523          * Fires when an action fails.
29524          * @param {Form} this
29525          * @param {Action} action The action that failed
29526          */
29527         actionfailed : true,
29528         /**
29529          * @event actioncomplete
29530          * Fires when an action is completed.
29531          * @param {Form} this
29532          * @param {Action} action The action that completed
29533          */
29534         actioncomplete : true
29535     });
29536     if(el){
29537         this.initEl(el);
29538     }
29539     Roo.form.BasicForm.superclass.constructor.call(this);
29540     
29541     Roo.form.BasicForm.popover.apply();
29542 };
29543
29544 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
29545     /**
29546      * @cfg {String} method
29547      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
29548      */
29549     /**
29550      * @cfg {DataReader} reader
29551      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
29552      * This is optional as there is built-in support for processing JSON.
29553      */
29554     /**
29555      * @cfg {DataReader} errorReader
29556      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
29557      * This is completely optional as there is built-in support for processing JSON.
29558      */
29559     /**
29560      * @cfg {String} url
29561      * The URL to use for form actions if one isn't supplied in the action options.
29562      */
29563     /**
29564      * @cfg {Boolean} fileUpload
29565      * Set to true if this form is a file upload.
29566      */
29567      
29568     /**
29569      * @cfg {Object} baseParams
29570      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
29571      */
29572      /**
29573      
29574     /**
29575      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
29576      */
29577     timeout: 30,
29578
29579     // private
29580     activeAction : null,
29581
29582     /**
29583      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
29584      * or setValues() data instead of when the form was first created.
29585      */
29586     trackResetOnLoad : false,
29587     
29588     
29589     /**
29590      * childForms - used for multi-tab forms
29591      * @type {Array}
29592      */
29593     childForms : false,
29594     
29595     /**
29596      * allItems - full list of fields.
29597      * @type {Array}
29598      */
29599     allItems : false,
29600     
29601     /**
29602      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
29603      * element by passing it or its id or mask the form itself by passing in true.
29604      * @type Mixed
29605      */
29606     waitMsgTarget : false,
29607     
29608     /**
29609      * @type Boolean
29610      */
29611     disableMask : false,
29612     
29613     /**
29614      * @cfg {Boolean} errorMask (true|false) default false
29615      */
29616     errorMask : false,
29617     
29618     /**
29619      * @cfg {Number} maskOffset Default 100
29620      */
29621     maskOffset : 100,
29622
29623     // private
29624     initEl : function(el){
29625         this.el = Roo.get(el);
29626         this.id = this.el.id || Roo.id();
29627         this.el.on('submit', this.onSubmit, this);
29628         this.el.addClass('x-form');
29629     },
29630
29631     // private
29632     onSubmit : function(e){
29633         e.stopEvent();
29634     },
29635
29636     /**
29637      * Returns true if client-side validation on the form is successful.
29638      * @return Boolean
29639      */
29640     isValid : function(){
29641         var valid = true;
29642         var target = false;
29643         this.items.each(function(f){
29644             if(f.validate()){
29645                 return;
29646             }
29647             
29648             valid = false;
29649                 
29650             if(!target && f.el.isVisible(true)){
29651                 target = f;
29652             }
29653         });
29654         
29655         if(this.errorMask && !valid){
29656             Roo.form.BasicForm.popover.mask(this, target);
29657         }
29658         
29659         return valid;
29660     },
29661     /**
29662      * Returns array of invalid form fields.
29663      * @return Array
29664      */
29665     
29666     invalidFields : function()
29667     {
29668         var ret = [];
29669         this.items.each(function(f){
29670             if(f.validate()){
29671                 return;
29672             }
29673             ret.push(f);
29674             
29675         });
29676         
29677         return ret;
29678     },
29679     
29680     
29681     /**
29682      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
29683      * @return Boolean
29684      */
29685     isDirty : function(){
29686         var dirty = false;
29687         this.items.each(function(f){
29688            if(f.isDirty()){
29689                dirty = true;
29690                return false;
29691            }
29692         });
29693         return dirty;
29694     },
29695     
29696     /**
29697      * Returns true if any fields in this form have changed since their original load. (New version)
29698      * @return Boolean
29699      */
29700     
29701     hasChanged : function()
29702     {
29703         var dirty = false;
29704         this.items.each(function(f){
29705            if(f.hasChanged()){
29706                dirty = true;
29707                return false;
29708            }
29709         });
29710         return dirty;
29711         
29712     },
29713     /**
29714      * Resets all hasChanged to 'false' -
29715      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
29716      * So hasChanged storage is only to be used for this purpose
29717      * @return Boolean
29718      */
29719     resetHasChanged : function()
29720     {
29721         this.items.each(function(f){
29722            f.resetHasChanged();
29723         });
29724         
29725     },
29726     
29727     
29728     /**
29729      * Performs a predefined action (submit or load) or custom actions you define on this form.
29730      * @param {String} actionName The name of the action type
29731      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
29732      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
29733      * accept other config options):
29734      * <pre>
29735 Property          Type             Description
29736 ----------------  ---------------  ----------------------------------------------------------------------------------
29737 url               String           The url for the action (defaults to the form's url)
29738 method            String           The form method to use (defaults to the form's method, or POST if not defined)
29739 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
29740 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
29741                                    validate the form on the client (defaults to false)
29742      * </pre>
29743      * @return {BasicForm} this
29744      */
29745     doAction : function(action, options){
29746         if(typeof action == 'string'){
29747             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
29748         }
29749         if(this.fireEvent('beforeaction', this, action) !== false){
29750             this.beforeAction(action);
29751             action.run.defer(100, action);
29752         }
29753         return this;
29754     },
29755
29756     /**
29757      * Shortcut to do a submit action.
29758      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
29759      * @return {BasicForm} this
29760      */
29761     submit : function(options){
29762         this.doAction('submit', options);
29763         return this;
29764     },
29765
29766     /**
29767      * Shortcut to do a load action.
29768      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
29769      * @return {BasicForm} this
29770      */
29771     load : function(options){
29772         this.doAction('load', options);
29773         return this;
29774     },
29775
29776     /**
29777      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
29778      * @param {Record} record The record to edit
29779      * @return {BasicForm} this
29780      */
29781     updateRecord : function(record){
29782         record.beginEdit();
29783         var fs = record.fields;
29784         fs.each(function(f){
29785             var field = this.findField(f.name);
29786             if(field){
29787                 record.set(f.name, field.getValue());
29788             }
29789         }, this);
29790         record.endEdit();
29791         return this;
29792     },
29793
29794     /**
29795      * Loads an Roo.data.Record into this form.
29796      * @param {Record} record The record to load
29797      * @return {BasicForm} this
29798      */
29799     loadRecord : function(record){
29800         this.setValues(record.data);
29801         return this;
29802     },
29803
29804     // private
29805     beforeAction : function(action){
29806         var o = action.options;
29807         
29808         if(!this.disableMask) {
29809             if(this.waitMsgTarget === true){
29810                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
29811             }else if(this.waitMsgTarget){
29812                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
29813                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
29814             }else {
29815                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
29816             }
29817         }
29818         
29819          
29820     },
29821
29822     // private
29823     afterAction : function(action, success){
29824         this.activeAction = null;
29825         var o = action.options;
29826         
29827         if(!this.disableMask) {
29828             if(this.waitMsgTarget === true){
29829                 this.el.unmask();
29830             }else if(this.waitMsgTarget){
29831                 this.waitMsgTarget.unmask();
29832             }else{
29833                 Roo.MessageBox.updateProgress(1);
29834                 Roo.MessageBox.hide();
29835             }
29836         }
29837         
29838         if(success){
29839             if(o.reset){
29840                 this.reset();
29841             }
29842             Roo.callback(o.success, o.scope, [this, action]);
29843             this.fireEvent('actioncomplete', this, action);
29844             
29845         }else{
29846             
29847             // failure condition..
29848             // we have a scenario where updates need confirming.
29849             // eg. if a locking scenario exists..
29850             // we look for { errors : { needs_confirm : true }} in the response.
29851             if (
29852                 (typeof(action.result) != 'undefined')  &&
29853                 (typeof(action.result.errors) != 'undefined')  &&
29854                 (typeof(action.result.errors.needs_confirm) != 'undefined')
29855            ){
29856                 var _t = this;
29857                 Roo.MessageBox.confirm(
29858                     "Change requires confirmation",
29859                     action.result.errorMsg,
29860                     function(r) {
29861                         if (r != 'yes') {
29862                             return;
29863                         }
29864                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
29865                     }
29866                     
29867                 );
29868                 
29869                 
29870                 
29871                 return;
29872             }
29873             
29874             Roo.callback(o.failure, o.scope, [this, action]);
29875             // show an error message if no failed handler is set..
29876             if (!this.hasListener('actionfailed')) {
29877                 Roo.MessageBox.alert("Error",
29878                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
29879                         action.result.errorMsg :
29880                         "Saving Failed, please check your entries or try again"
29881                 );
29882             }
29883             
29884             this.fireEvent('actionfailed', this, action);
29885         }
29886         
29887     },
29888
29889     /**
29890      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
29891      * @param {String} id The value to search for
29892      * @return Field
29893      */
29894     findField : function(id){
29895         var field = this.items.get(id);
29896         if(!field){
29897             this.items.each(function(f){
29898                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
29899                     field = f;
29900                     return false;
29901                 }
29902             });
29903         }
29904         return field || null;
29905     },
29906
29907     /**
29908      * Add a secondary form to this one, 
29909      * Used to provide tabbed forms. One form is primary, with hidden values 
29910      * which mirror the elements from the other forms.
29911      * 
29912      * @param {Roo.form.Form} form to add.
29913      * 
29914      */
29915     addForm : function(form)
29916     {
29917        
29918         if (this.childForms.indexOf(form) > -1) {
29919             // already added..
29920             return;
29921         }
29922         this.childForms.push(form);
29923         var n = '';
29924         Roo.each(form.allItems, function (fe) {
29925             
29926             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
29927             if (this.findField(n)) { // already added..
29928                 return;
29929             }
29930             var add = new Roo.form.Hidden({
29931                 name : n
29932             });
29933             add.render(this.el);
29934             
29935             this.add( add );
29936         }, this);
29937         
29938     },
29939     /**
29940      * Mark fields in this form invalid in bulk.
29941      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
29942      * @return {BasicForm} this
29943      */
29944     markInvalid : function(errors){
29945         if(errors instanceof Array){
29946             for(var i = 0, len = errors.length; i < len; i++){
29947                 var fieldError = errors[i];
29948                 var f = this.findField(fieldError.id);
29949                 if(f){
29950                     f.markInvalid(fieldError.msg);
29951                 }
29952             }
29953         }else{
29954             var field, id;
29955             for(id in errors){
29956                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
29957                     field.markInvalid(errors[id]);
29958                 }
29959             }
29960         }
29961         Roo.each(this.childForms || [], function (f) {
29962             f.markInvalid(errors);
29963         });
29964         
29965         return this;
29966     },
29967
29968     /**
29969      * Set values for fields in this form in bulk.
29970      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
29971      * @return {BasicForm} this
29972      */
29973     setValues : function(values){
29974         if(values instanceof Array){ // array of objects
29975             for(var i = 0, len = values.length; i < len; i++){
29976                 var v = values[i];
29977                 var f = this.findField(v.id);
29978                 if(f){
29979                     f.setValue(v.value);
29980                     if(this.trackResetOnLoad){
29981                         f.originalValue = f.getValue();
29982                     }
29983                 }
29984             }
29985         }else{ // object hash
29986             var field, id;
29987             for(id in values){
29988                 if(typeof values[id] != 'function' && (field = this.findField(id))){
29989                     
29990                     
29991                     
29992                     
29993                     if (field.setFromData && 
29994                         field.valueField && 
29995                         field.displayField &&
29996                         // combos' with local stores can 
29997                         // be queried via setValue()
29998                         // to set their value..
29999                         (field.store && !field.store.isLocal)
30000                         ) {
30001                         // it's a combo
30002                         var sd = { };
30003                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
30004                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
30005                         field.setFromData(sd);
30006                         
30007                     } else if (field.inputType && field.inputType == 'radio') {
30008                         
30009                         field.setValue(values[id]);
30010                     } else {
30011                         field.setValue(values[id]);
30012                     }
30013                     
30014                     
30015                     if(this.trackResetOnLoad){
30016                         field.originalValue = field.getValue();
30017                     }
30018                 }
30019             }
30020         }
30021         this.resetHasChanged();
30022         
30023         
30024         Roo.each(this.childForms || [], function (f) {
30025             f.setValues(values);
30026             f.resetHasChanged();
30027         });
30028                 
30029         return this;
30030     },
30031  
30032     /**
30033      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
30034      * they are returned as an array.
30035      * @param {Boolean} asString (def)
30036      * @return {Object}
30037      */
30038     getValues : function(asString)
30039     {
30040         if (this.childForms) {
30041             // copy values from the child forms
30042             Roo.each(this.childForms, function (f) {
30043                 this.setValues(f.getFieldValues()); // get the full set of data, as we might be copying comboboxes from external into this one.
30044             }, this);
30045         }
30046         
30047         // use formdata
30048         if (typeof(FormData) != 'undefined' && asString !== true) {
30049             // this relies on a 'recent' version of chrome apparently...
30050             try {
30051                 var fd = (new FormData(this.el.dom)).entries();
30052                 var ret = {};
30053                 var ent = fd.next();
30054                 while (!ent.done) {
30055                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
30056                     ent = fd.next();
30057                 };
30058                 return ret;
30059             } catch(e) {
30060                 
30061             }
30062             
30063         }
30064         
30065         
30066         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
30067         if(asString === true){
30068             return fs;
30069         }
30070         return Roo.urlDecode(fs);
30071     },
30072     
30073     /**
30074      * Returns the fields in this form as an object with key/value pairs. 
30075      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
30076      * Normally this will not return readOnly data 
30077      * @param {Boolean} with_readonly return readonly field data.
30078      * @return {Object}
30079      */
30080     getFieldValues : function(with_readonly)
30081     {
30082         if (this.childForms) {
30083             // copy values from the child forms
30084             // should this call getFieldValues - probably not as we do not currently copy
30085             // hidden fields when we generate..
30086             Roo.each(this.childForms, function (f) {
30087                 this.setValues(f.getFieldValues());
30088             }, this);
30089         }
30090         
30091         var ret = {};
30092         this.items.each(function(f){
30093             
30094             if (f.readOnly && with_readonly !== true) {
30095                 return; // skip read only values. - this is in theory to stop 'old' values being copied over new ones
30096                         // if a subform contains a copy of them.
30097                         // if you have subforms with the same editable data, you will need to copy the data back
30098                         // and forth.
30099             }
30100             
30101             if (!f.getName()) {
30102                 return;
30103             }
30104             var v = f.getValue();
30105             if (f.inputType =='radio') {
30106                 if (typeof(ret[f.getName()]) == 'undefined') {
30107                     ret[f.getName()] = ''; // empty..
30108                 }
30109                 
30110                 if (!f.el.dom.checked) {
30111                     return;
30112                     
30113                 }
30114                 v = f.el.dom.value;
30115                 
30116             }
30117             
30118             // not sure if this supported any more..
30119             if ((typeof(v) == 'object') && f.getRawValue) {
30120                 v = f.getRawValue() ; // dates..
30121             }
30122             // combo boxes where name != hiddenName...
30123             if (f.name != f.getName()) {
30124                 ret[f.name] = f.getRawValue();
30125             }
30126             ret[f.getName()] = v;
30127         });
30128         
30129         return ret;
30130     },
30131
30132     /**
30133      * Clears all invalid messages in this form.
30134      * @return {BasicForm} this
30135      */
30136     clearInvalid : function(){
30137         this.items.each(function(f){
30138            f.clearInvalid();
30139         });
30140         
30141         Roo.each(this.childForms || [], function (f) {
30142             f.clearInvalid();
30143         });
30144         
30145         
30146         return this;
30147     },
30148
30149     /**
30150      * Resets this form.
30151      * @return {BasicForm} this
30152      */
30153     reset : function(){
30154         this.items.each(function(f){
30155             f.reset();
30156         });
30157         
30158         Roo.each(this.childForms || [], function (f) {
30159             f.reset();
30160         });
30161         this.resetHasChanged();
30162         
30163         return this;
30164     },
30165
30166     /**
30167      * Add Roo.form components to this form.
30168      * @param {Field} field1
30169      * @param {Field} field2 (optional)
30170      * @param {Field} etc (optional)
30171      * @return {BasicForm} this
30172      */
30173     add : function(){
30174         this.items.addAll(Array.prototype.slice.call(arguments, 0));
30175         return this;
30176     },
30177
30178
30179     /**
30180      * Removes a field from the items collection (does NOT remove its markup).
30181      * @param {Field} field
30182      * @return {BasicForm} this
30183      */
30184     remove : function(field){
30185         this.items.remove(field);
30186         return this;
30187     },
30188
30189     /**
30190      * Looks at the fields in this form, checks them for an id attribute,
30191      * and calls applyTo on the existing dom element with that id.
30192      * @return {BasicForm} this
30193      */
30194     render : function(){
30195         this.items.each(function(f){
30196             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
30197                 f.applyTo(f.id);
30198             }
30199         });
30200         return this;
30201     },
30202
30203     /**
30204      * Calls {@link Ext#apply} for all fields in this form with the passed object.
30205      * @param {Object} values
30206      * @return {BasicForm} this
30207      */
30208     applyToFields : function(o){
30209         this.items.each(function(f){
30210            Roo.apply(f, o);
30211         });
30212         return this;
30213     },
30214
30215     /**
30216      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
30217      * @param {Object} values
30218      * @return {BasicForm} this
30219      */
30220     applyIfToFields : function(o){
30221         this.items.each(function(f){
30222            Roo.applyIf(f, o);
30223         });
30224         return this;
30225     }
30226 });
30227
30228 // back compat
30229 Roo.BasicForm = Roo.form.BasicForm;
30230
30231 Roo.apply(Roo.form.BasicForm, {
30232     
30233     popover : {
30234         
30235         padding : 5,
30236         
30237         isApplied : false,
30238         
30239         isMasked : false,
30240         
30241         form : false,
30242         
30243         target : false,
30244         
30245         intervalID : false,
30246         
30247         maskEl : false,
30248         
30249         apply : function()
30250         {
30251             if(this.isApplied){
30252                 return;
30253             }
30254             
30255             this.maskEl = {
30256                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
30257                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
30258                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
30259                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
30260             };
30261             
30262             this.maskEl.top.enableDisplayMode("block");
30263             this.maskEl.left.enableDisplayMode("block");
30264             this.maskEl.bottom.enableDisplayMode("block");
30265             this.maskEl.right.enableDisplayMode("block");
30266             
30267             Roo.get(document.body).on('click', function(){
30268                 this.unmask();
30269             }, this);
30270             
30271             Roo.get(document.body).on('touchstart', function(){
30272                 this.unmask();
30273             }, this);
30274             
30275             this.isApplied = true
30276         },
30277         
30278         mask : function(form, target)
30279         {
30280             this.form = form;
30281             
30282             this.target = target;
30283             
30284             if(!this.form.errorMask || !target.el){
30285                 return;
30286             }
30287             
30288             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
30289             
30290             var ot = this.target.el.calcOffsetsTo(scrollable);
30291             
30292             var scrollTo = ot[1] - this.form.maskOffset;
30293             
30294             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
30295             
30296             scrollable.scrollTo('top', scrollTo);
30297             
30298             var el = this.target.wrap || this.target.el;
30299             
30300             var box = el.getBox();
30301             
30302             this.maskEl.top.setStyle('position', 'absolute');
30303             this.maskEl.top.setStyle('z-index', 10000);
30304             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
30305             this.maskEl.top.setLeft(0);
30306             this.maskEl.top.setTop(0);
30307             this.maskEl.top.show();
30308             
30309             this.maskEl.left.setStyle('position', 'absolute');
30310             this.maskEl.left.setStyle('z-index', 10000);
30311             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
30312             this.maskEl.left.setLeft(0);
30313             this.maskEl.left.setTop(box.y - this.padding);
30314             this.maskEl.left.show();
30315
30316             this.maskEl.bottom.setStyle('position', 'absolute');
30317             this.maskEl.bottom.setStyle('z-index', 10000);
30318             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
30319             this.maskEl.bottom.setLeft(0);
30320             this.maskEl.bottom.setTop(box.bottom + this.padding);
30321             this.maskEl.bottom.show();
30322
30323             this.maskEl.right.setStyle('position', 'absolute');
30324             this.maskEl.right.setStyle('z-index', 10000);
30325             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
30326             this.maskEl.right.setLeft(box.right + this.padding);
30327             this.maskEl.right.setTop(box.y - this.padding);
30328             this.maskEl.right.show();
30329
30330             this.intervalID = window.setInterval(function() {
30331                 Roo.form.BasicForm.popover.unmask();
30332             }, 10000);
30333
30334             window.onwheel = function(){ return false;};
30335             
30336             (function(){ this.isMasked = true; }).defer(500, this);
30337             
30338         },
30339         
30340         unmask : function()
30341         {
30342             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
30343                 return;
30344             }
30345             
30346             this.maskEl.top.setStyle('position', 'absolute');
30347             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
30348             this.maskEl.top.hide();
30349
30350             this.maskEl.left.setStyle('position', 'absolute');
30351             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
30352             this.maskEl.left.hide();
30353
30354             this.maskEl.bottom.setStyle('position', 'absolute');
30355             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
30356             this.maskEl.bottom.hide();
30357
30358             this.maskEl.right.setStyle('position', 'absolute');
30359             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
30360             this.maskEl.right.hide();
30361             
30362             window.onwheel = function(){ return true;};
30363             
30364             if(this.intervalID){
30365                 window.clearInterval(this.intervalID);
30366                 this.intervalID = false;
30367             }
30368             
30369             this.isMasked = false;
30370             
30371         }
30372         
30373     }
30374     
30375 });/*
30376  * Based on:
30377  * Ext JS Library 1.1.1
30378  * Copyright(c) 2006-2007, Ext JS, LLC.
30379  *
30380  * Originally Released Under LGPL - original licence link has changed is not relivant.
30381  *
30382  * Fork - LGPL
30383  * <script type="text/javascript">
30384  */
30385
30386 /**
30387  * @class Roo.form.Form
30388  * @extends Roo.form.BasicForm
30389  * @children Roo.form.Column Roo.form.FieldSet Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
30390  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
30391  * @constructor
30392  * @param {Object} config Configuration options
30393  */
30394 Roo.form.Form = function(config){
30395     var xitems =  [];
30396     if (config.items) {
30397         xitems = config.items;
30398         delete config.items;
30399     }
30400    
30401     
30402     Roo.form.Form.superclass.constructor.call(this, null, config);
30403     this.url = this.url || this.action;
30404     if(!this.root){
30405         this.root = new Roo.form.Layout(Roo.applyIf({
30406             id: Roo.id()
30407         }, config));
30408     }
30409     this.active = this.root;
30410     /**
30411      * Array of all the buttons that have been added to this form via {@link addButton}
30412      * @type Array
30413      */
30414     this.buttons = [];
30415     this.allItems = [];
30416     this.addEvents({
30417         /**
30418          * @event clientvalidation
30419          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
30420          * @param {Form} this
30421          * @param {Boolean} valid true if the form has passed client-side validation
30422          */
30423         clientvalidation: true,
30424         /**
30425          * @event rendered
30426          * Fires when the form is rendered
30427          * @param {Roo.form.Form} form
30428          */
30429         rendered : true
30430     });
30431     
30432     if (this.progressUrl) {
30433             // push a hidden field onto the list of fields..
30434             this.addxtype( {
30435                     xns: Roo.form, 
30436                     xtype : 'Hidden', 
30437                     name : 'UPLOAD_IDENTIFIER' 
30438             });
30439         }
30440         
30441     
30442     Roo.each(xitems, this.addxtype, this);
30443     
30444 };
30445
30446 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
30447      /**
30448      * @cfg {Roo.Button} buttons[] buttons at bottom of form
30449      */
30450     
30451     /**
30452      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
30453      */
30454     /**
30455      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
30456      */
30457     /**
30458      * @cfg {String} (left|center|right) buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
30459      */
30460     buttonAlign:'center',
30461
30462     /**
30463      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
30464      */
30465     minButtonWidth:75,
30466
30467     /**
30468      * @cfg {String} labelAlign (left|top|right) Valid values are "left," "top" and "right" (defaults to "left").
30469      * This property cascades to child containers if not set.
30470      */
30471     labelAlign:'left',
30472
30473     /**
30474      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
30475      * fires a looping event with that state. This is required to bind buttons to the valid
30476      * state using the config value formBind:true on the button.
30477      */
30478     monitorValid : false,
30479
30480     /**
30481      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
30482      */
30483     monitorPoll : 200,
30484     
30485     /**
30486      * @cfg {String} progressUrl - Url to return progress data 
30487      */
30488     
30489     progressUrl : false,
30490     /**
30491      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
30492      * sending a formdata with extra parameters - eg uploaded elements.
30493      */
30494     
30495     formData : false,
30496     
30497     /**
30498      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
30499      * fields are added and the column is closed. If no fields are passed the column remains open
30500      * until end() is called.
30501      * @param {Object} config The config to pass to the column
30502      * @param {Field} field1 (optional)
30503      * @param {Field} field2 (optional)
30504      * @param {Field} etc (optional)
30505      * @return Column The column container object
30506      */
30507     column : function(c){
30508         var col = new Roo.form.Column(c);
30509         this.start(col);
30510         if(arguments.length > 1){ // duplicate code required because of Opera
30511             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
30512             this.end();
30513         }
30514         return col;
30515     },
30516
30517     /**
30518      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
30519      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
30520      * until end() is called.
30521      * @param {Object} config The config to pass to the fieldset
30522      * @param {Field} field1 (optional)
30523      * @param {Field} field2 (optional)
30524      * @param {Field} etc (optional)
30525      * @return FieldSet The fieldset container object
30526      */
30527     fieldset : function(c){
30528         var fs = new Roo.form.FieldSet(c);
30529         this.start(fs);
30530         if(arguments.length > 1){ // duplicate code required because of Opera
30531             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
30532             this.end();
30533         }
30534         return fs;
30535     },
30536
30537     /**
30538      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
30539      * fields are added and the container is closed. If no fields are passed the container remains open
30540      * until end() is called.
30541      * @param {Object} config The config to pass to the Layout
30542      * @param {Field} field1 (optional)
30543      * @param {Field} field2 (optional)
30544      * @param {Field} etc (optional)
30545      * @return Layout The container object
30546      */
30547     container : function(c){
30548         var l = new Roo.form.Layout(c);
30549         this.start(l);
30550         if(arguments.length > 1){ // duplicate code required because of Opera
30551             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
30552             this.end();
30553         }
30554         return l;
30555     },
30556
30557     /**
30558      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
30559      * @param {Object} container A Roo.form.Layout or subclass of Layout
30560      * @return {Form} this
30561      */
30562     start : function(c){
30563         // cascade label info
30564         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
30565         this.active.stack.push(c);
30566         c.ownerCt = this.active;
30567         this.active = c;
30568         return this;
30569     },
30570
30571     /**
30572      * Closes the current open container
30573      * @return {Form} this
30574      */
30575     end : function(){
30576         if(this.active == this.root){
30577             return this;
30578         }
30579         this.active = this.active.ownerCt;
30580         return this;
30581     },
30582
30583     /**
30584      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
30585      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
30586      * as the label of the field.
30587      * @param {Field} field1
30588      * @param {Field} field2 (optional)
30589      * @param {Field} etc. (optional)
30590      * @return {Form} this
30591      */
30592     add : function(){
30593         this.active.stack.push.apply(this.active.stack, arguments);
30594         this.allItems.push.apply(this.allItems,arguments);
30595         var r = [];
30596         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
30597             if(a[i].isFormField){
30598                 r.push(a[i]);
30599             }
30600         }
30601         if(r.length > 0){
30602             Roo.form.Form.superclass.add.apply(this, r);
30603         }
30604         return this;
30605     },
30606     
30607
30608     
30609     
30610     
30611      /**
30612      * Find any element that has been added to a form, using it's ID or name
30613      * This can include framesets, columns etc. along with regular fields..
30614      * @param {String} id - id or name to find.
30615      
30616      * @return {Element} e - or false if nothing found.
30617      */
30618     findbyId : function(id)
30619     {
30620         var ret = false;
30621         if (!id) {
30622             return ret;
30623         }
30624         Roo.each(this.allItems, function(f){
30625             if (f.id == id || f.name == id ){
30626                 ret = f;
30627                 return false;
30628             }
30629         });
30630         return ret;
30631     },
30632
30633     
30634     
30635     /**
30636      * Render this form into the passed container. This should only be called once!
30637      * @param {String/HTMLElement/Element} container The element this component should be rendered into
30638      * @return {Form} this
30639      */
30640     render : function(ct)
30641     {
30642         
30643         
30644         
30645         ct = Roo.get(ct);
30646         var o = this.autoCreate || {
30647             tag: 'form',
30648             method : this.method || 'POST',
30649             id : this.id || Roo.id()
30650         };
30651         this.initEl(ct.createChild(o));
30652
30653         this.root.render(this.el);
30654         
30655        
30656              
30657         this.items.each(function(f){
30658             f.render('x-form-el-'+f.id);
30659         });
30660
30661         if(this.buttons.length > 0){
30662             // tables are required to maintain order and for correct IE layout
30663             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
30664                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
30665                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
30666             }}, null, true);
30667             var tr = tb.getElementsByTagName('tr')[0];
30668             for(var i = 0, len = this.buttons.length; i < len; i++) {
30669                 var b = this.buttons[i];
30670                 var td = document.createElement('td');
30671                 td.className = 'x-form-btn-td';
30672                 b.render(tr.appendChild(td));
30673             }
30674         }
30675         if(this.monitorValid){ // initialize after render
30676             this.startMonitoring();
30677         }
30678         this.fireEvent('rendered', this);
30679         return this;
30680     },
30681
30682     /**
30683      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
30684      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
30685      * object or a valid Roo.DomHelper element config
30686      * @param {Function} handler The function called when the button is clicked
30687      * @param {Object} scope (optional) The scope of the handler function
30688      * @return {Roo.Button}
30689      */
30690     addButton : function(config, handler, scope){
30691         var bc = {
30692             handler: handler,
30693             scope: scope,
30694             minWidth: this.minButtonWidth,
30695             hideParent:true
30696         };
30697         if(typeof config == "string"){
30698             bc.text = config;
30699         }else{
30700             Roo.apply(bc, config);
30701         }
30702         var btn = new Roo.Button(null, bc);
30703         this.buttons.push(btn);
30704         return btn;
30705     },
30706
30707      /**
30708      * Adds a series of form elements (using the xtype property as the factory method.
30709      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
30710      * @param {Object} config 
30711      */
30712     
30713     addxtype : function()
30714     {
30715         var ar = Array.prototype.slice.call(arguments, 0);
30716         var ret = false;
30717         for(var i = 0; i < ar.length; i++) {
30718             if (!ar[i]) {
30719                 continue; // skip -- if this happends something invalid got sent, we 
30720                 // should ignore it, as basically that interface element will not show up
30721                 // and that should be pretty obvious!!
30722             }
30723             
30724             if (Roo.form[ar[i].xtype]) {
30725                 ar[i].form = this;
30726                 var fe = Roo.factory(ar[i], Roo.form);
30727                 if (!ret) {
30728                     ret = fe;
30729                 }
30730                 fe.form = this;
30731                 if (fe.store) {
30732                     fe.store.form = this;
30733                 }
30734                 if (fe.isLayout) {  
30735                          
30736                     this.start(fe);
30737                     this.allItems.push(fe);
30738                     if (fe.items && fe.addxtype) {
30739                         fe.addxtype.apply(fe, fe.items);
30740                         delete fe.items;
30741                     }
30742                      this.end();
30743                     continue;
30744                 }
30745                 
30746                 
30747                  
30748                 this.add(fe);
30749               //  console.log('adding ' + ar[i].xtype);
30750             }
30751             if (ar[i].xtype == 'Button') {  
30752                 //console.log('adding button');
30753                 //console.log(ar[i]);
30754                 this.addButton(ar[i]);
30755                 this.allItems.push(fe);
30756                 continue;
30757             }
30758             
30759             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
30760                 alert('end is not supported on xtype any more, use items');
30761             //    this.end();
30762             //    //console.log('adding end');
30763             }
30764             
30765         }
30766         return ret;
30767     },
30768     
30769     /**
30770      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
30771      * option "monitorValid"
30772      */
30773     startMonitoring : function(){
30774         if(!this.bound){
30775             this.bound = true;
30776             Roo.TaskMgr.start({
30777                 run : this.bindHandler,
30778                 interval : this.monitorPoll || 200,
30779                 scope: this
30780             });
30781         }
30782     },
30783
30784     /**
30785      * Stops monitoring of the valid state of this form
30786      */
30787     stopMonitoring : function(){
30788         this.bound = false;
30789     },
30790
30791     // private
30792     bindHandler : function(){
30793         if(!this.bound){
30794             return false; // stops binding
30795         }
30796         var valid = true;
30797         this.items.each(function(f){
30798             if(!f.isValid(true)){
30799                 valid = false;
30800                 return false;
30801             }
30802         });
30803         for(var i = 0, len = this.buttons.length; i < len; i++){
30804             var btn = this.buttons[i];
30805             if(btn.formBind === true && btn.disabled === valid){
30806                 btn.setDisabled(!valid);
30807             }
30808         }
30809         this.fireEvent('clientvalidation', this, valid);
30810     }
30811     
30812     
30813     
30814     
30815     
30816     
30817     
30818     
30819 });
30820
30821
30822 // back compat
30823 Roo.Form = Roo.form.Form;
30824 /*
30825  * Based on:
30826  * Ext JS Library 1.1.1
30827  * Copyright(c) 2006-2007, Ext JS, LLC.
30828  *
30829  * Originally Released Under LGPL - original licence link has changed is not relivant.
30830  *
30831  * Fork - LGPL
30832  * <script type="text/javascript">
30833  */
30834
30835 // as we use this in bootstrap.
30836 Roo.namespace('Roo.form');
30837  /**
30838  * @class Roo.form.Action
30839  * Internal Class used to handle form actions
30840  * @constructor
30841  * @param {Roo.form.BasicForm} el The form element or its id
30842  * @param {Object} config Configuration options
30843  */
30844
30845  
30846  
30847 // define the action interface
30848 Roo.form.Action = function(form, options){
30849     this.form = form;
30850     this.options = options || {};
30851 };
30852 /**
30853  * Client Validation Failed
30854  * @const 
30855  */
30856 Roo.form.Action.CLIENT_INVALID = 'client';
30857 /**
30858  * Server Validation Failed
30859  * @const 
30860  */
30861 Roo.form.Action.SERVER_INVALID = 'server';
30862  /**
30863  * Connect to Server Failed
30864  * @const 
30865  */
30866 Roo.form.Action.CONNECT_FAILURE = 'connect';
30867 /**
30868  * Reading Data from Server Failed
30869  * @const 
30870  */
30871 Roo.form.Action.LOAD_FAILURE = 'load';
30872
30873 Roo.form.Action.prototype = {
30874     type : 'default',
30875     failureType : undefined,
30876     response : undefined,
30877     result : undefined,
30878
30879     // interface method
30880     run : function(options){
30881
30882     },
30883
30884     // interface method
30885     success : function(response){
30886
30887     },
30888
30889     // interface method
30890     handleResponse : function(response){
30891
30892     },
30893
30894     // default connection failure
30895     failure : function(response){
30896         
30897         this.response = response;
30898         this.failureType = Roo.form.Action.CONNECT_FAILURE;
30899         this.form.afterAction(this, false);
30900     },
30901
30902     processResponse : function(response){
30903         this.response = response;
30904         if(!response.responseText){
30905             return true;
30906         }
30907         this.result = this.handleResponse(response);
30908         return this.result;
30909     },
30910
30911     // utility functions used internally
30912     getUrl : function(appendParams){
30913         var url = this.options.url || this.form.url || this.form.el.dom.action;
30914         if(appendParams){
30915             var p = this.getParams();
30916             if(p){
30917                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
30918             }
30919         }
30920         return url;
30921     },
30922
30923     getMethod : function(){
30924         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
30925     },
30926
30927     getParams : function(){
30928         var bp = this.form.baseParams;
30929         var p = this.options.params;
30930         if(p){
30931             if(typeof p == "object"){
30932                 p = Roo.urlEncode(Roo.applyIf(p, bp));
30933             }else if(typeof p == 'string' && bp){
30934                 p += '&' + Roo.urlEncode(bp);
30935             }
30936         }else if(bp){
30937             p = Roo.urlEncode(bp);
30938         }
30939         return p;
30940     },
30941
30942     createCallback : function(){
30943         return {
30944             success: this.success,
30945             failure: this.failure,
30946             scope: this,
30947             timeout: (this.form.timeout*1000),
30948             upload: this.form.fileUpload ? this.success : undefined
30949         };
30950     }
30951 };
30952
30953 Roo.form.Action.Submit = function(form, options){
30954     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
30955 };
30956
30957 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
30958     type : 'submit',
30959
30960     haveProgress : false,
30961     uploadComplete : false,
30962     
30963     // uploadProgress indicator.
30964     uploadProgress : function()
30965     {
30966         if (!this.form.progressUrl) {
30967             return;
30968         }
30969         
30970         if (!this.haveProgress) {
30971             Roo.MessageBox.progress("Uploading", "Uploading");
30972         }
30973         if (this.uploadComplete) {
30974            Roo.MessageBox.hide();
30975            return;
30976         }
30977         
30978         this.haveProgress = true;
30979    
30980         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
30981         
30982         var c = new Roo.data.Connection();
30983         c.request({
30984             url : this.form.progressUrl,
30985             params: {
30986                 id : uid
30987             },
30988             method: 'GET',
30989             success : function(req){
30990                //console.log(data);
30991                 var rdata = false;
30992                 var edata;
30993                 try  {
30994                    rdata = Roo.decode(req.responseText)
30995                 } catch (e) {
30996                     Roo.log("Invalid data from server..");
30997                     Roo.log(edata);
30998                     return;
30999                 }
31000                 if (!rdata || !rdata.success) {
31001                     Roo.log(rdata);
31002                     Roo.MessageBox.alert(Roo.encode(rdata));
31003                     return;
31004                 }
31005                 var data = rdata.data;
31006                 
31007                 if (this.uploadComplete) {
31008                    Roo.MessageBox.hide();
31009                    return;
31010                 }
31011                    
31012                 if (data){
31013                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
31014                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
31015                     );
31016                 }
31017                 this.uploadProgress.defer(2000,this);
31018             },
31019        
31020             failure: function(data) {
31021                 Roo.log('progress url failed ');
31022                 Roo.log(data);
31023             },
31024             scope : this
31025         });
31026            
31027     },
31028     
31029     
31030     run : function()
31031     {
31032         // run get Values on the form, so it syncs any secondary forms.
31033         this.form.getValues();
31034         
31035         var o = this.options;
31036         var method = this.getMethod();
31037         var isPost = method == 'POST';
31038         if(o.clientValidation === false || this.form.isValid()){
31039             
31040             if (this.form.progressUrl) {
31041                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
31042                     (new Date() * 1) + '' + Math.random());
31043                     
31044             } 
31045             
31046             
31047             Roo.Ajax.request(Roo.apply(this.createCallback(), {
31048                 form:this.form.el.dom,
31049                 url:this.getUrl(!isPost),
31050                 method: method,
31051                 params:isPost ? this.getParams() : null,
31052                 isUpload: this.form.fileUpload,
31053                 formData : this.form.formData
31054             }));
31055             
31056             this.uploadProgress();
31057
31058         }else if (o.clientValidation !== false){ // client validation failed
31059             this.failureType = Roo.form.Action.CLIENT_INVALID;
31060             this.form.afterAction(this, false);
31061         }
31062     },
31063
31064     success : function(response)
31065     {
31066         this.uploadComplete= true;
31067         if (this.haveProgress) {
31068             Roo.MessageBox.hide();
31069         }
31070         
31071         
31072         var result = this.processResponse(response);
31073         if(result === true || result.success){
31074             this.form.afterAction(this, true);
31075             return;
31076         }
31077         if(result.errors){
31078             this.form.markInvalid(result.errors);
31079             this.failureType = Roo.form.Action.SERVER_INVALID;
31080         }
31081         this.form.afterAction(this, false);
31082     },
31083     failure : function(response)
31084     {
31085         this.uploadComplete= true;
31086         if (this.haveProgress) {
31087             Roo.MessageBox.hide();
31088         }
31089         
31090         this.response = response;
31091         this.failureType = Roo.form.Action.CONNECT_FAILURE;
31092         this.form.afterAction(this, false);
31093     },
31094     
31095     handleResponse : function(response){
31096         if(this.form.errorReader){
31097             var rs = this.form.errorReader.read(response);
31098             var errors = [];
31099             if(rs.records){
31100                 for(var i = 0, len = rs.records.length; i < len; i++) {
31101                     var r = rs.records[i];
31102                     errors[i] = r.data;
31103                 }
31104             }
31105             if(errors.length < 1){
31106                 errors = null;
31107             }
31108             return {
31109                 success : rs.success,
31110                 errors : errors
31111             };
31112         }
31113         var ret = false;
31114         try {
31115             var rt = response.responseText;
31116             if (rt.match(/^\<!--\[CDATA\[/)) {
31117                 rt = rt.replace(/^\<!--\[CDATA\[/,'');
31118                 rt = rt.replace(/\]\]--\>$/,'');
31119             }
31120             
31121             ret = Roo.decode(rt);
31122         } catch (e) {
31123             ret = {
31124                 success: false,
31125                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
31126                 errors : []
31127             };
31128         }
31129         return ret;
31130         
31131     }
31132 });
31133
31134
31135 Roo.form.Action.Load = function(form, options){
31136     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
31137     this.reader = this.form.reader;
31138 };
31139
31140 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
31141     type : 'load',
31142
31143     run : function(){
31144         
31145         Roo.Ajax.request(Roo.apply(
31146                 this.createCallback(), {
31147                     method:this.getMethod(),
31148                     url:this.getUrl(false),
31149                     params:this.getParams()
31150         }));
31151     },
31152
31153     success : function(response){
31154         
31155         var result = this.processResponse(response);
31156         if(result === true || !result.success || !result.data){
31157             this.failureType = Roo.form.Action.LOAD_FAILURE;
31158             this.form.afterAction(this, false);
31159             return;
31160         }
31161         this.form.clearInvalid();
31162         this.form.setValues(result.data);
31163         this.form.afterAction(this, true);
31164     },
31165
31166     handleResponse : function(response){
31167         if(this.form.reader){
31168             var rs = this.form.reader.read(response);
31169             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
31170             return {
31171                 success : rs.success,
31172                 data : data
31173             };
31174         }
31175         return Roo.decode(response.responseText);
31176     }
31177 });
31178
31179 Roo.form.Action.ACTION_TYPES = {
31180     'load' : Roo.form.Action.Load,
31181     'submit' : Roo.form.Action.Submit
31182 };/*
31183  * Based on:
31184  * Ext JS Library 1.1.1
31185  * Copyright(c) 2006-2007, Ext JS, LLC.
31186  *
31187  * Originally Released Under LGPL - original licence link has changed is not relivant.
31188  *
31189  * Fork - LGPL
31190  * <script type="text/javascript">
31191  */
31192  
31193 /**
31194  * @class Roo.form.Layout
31195  * @extends Roo.Component
31196  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
31197  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
31198  * @constructor
31199  * @param {Object} config Configuration options
31200  */
31201 Roo.form.Layout = function(config){
31202     var xitems = [];
31203     if (config.items) {
31204         xitems = config.items;
31205         delete config.items;
31206     }
31207     Roo.form.Layout.superclass.constructor.call(this, config);
31208     this.stack = [];
31209     Roo.each(xitems, this.addxtype, this);
31210      
31211 };
31212
31213 Roo.extend(Roo.form.Layout, Roo.Component, {
31214     /**
31215      * @cfg {String/Object} autoCreate
31216      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
31217      */
31218     /**
31219      * @cfg {String/Object/Function} style
31220      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
31221      * a function which returns such a specification.
31222      */
31223     /**
31224      * @cfg {String} labelAlign (left|top|right)
31225      * Valid values are "left," "top" and "right" (defaults to "left")
31226      */
31227     /**
31228      * @cfg {Number} labelWidth
31229      * Fixed width in pixels of all field labels (defaults to undefined)
31230      */
31231     /**
31232      * @cfg {Boolean} clear
31233      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
31234      */
31235     clear : true,
31236     /**
31237      * @cfg {String} labelSeparator
31238      * The separator to use after field labels (defaults to ':')
31239      */
31240     labelSeparator : ':',
31241     /**
31242      * @cfg {Boolean} hideLabels
31243      * True to suppress the display of field labels in this layout (defaults to false)
31244      */
31245     hideLabels : false,
31246
31247     // private
31248     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
31249     
31250     isLayout : true,
31251     
31252     // private
31253     onRender : function(ct, position){
31254         if(this.el){ // from markup
31255             this.el = Roo.get(this.el);
31256         }else {  // generate
31257             var cfg = this.getAutoCreate();
31258             this.el = ct.createChild(cfg, position);
31259         }
31260         if(this.style){
31261             this.el.applyStyles(this.style);
31262         }
31263         if(this.labelAlign){
31264             this.el.addClass('x-form-label-'+this.labelAlign);
31265         }
31266         if(this.hideLabels){
31267             this.labelStyle = "display:none";
31268             this.elementStyle = "padding-left:0;";
31269         }else{
31270             if(typeof this.labelWidth == 'number'){
31271                 this.labelStyle = "width:"+this.labelWidth+"px;";
31272                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
31273             }
31274             if(this.labelAlign == 'top'){
31275                 this.labelStyle = "width:auto;";
31276                 this.elementStyle = "padding-left:0;";
31277             }
31278         }
31279         var stack = this.stack;
31280         var slen = stack.length;
31281         if(slen > 0){
31282             if(!this.fieldTpl){
31283                 var t = new Roo.Template(
31284                     '<div class="x-form-item {5}">',
31285                         '<label for="{0}" style="{2}">{1}{4}</label>',
31286                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
31287                         '</div>',
31288                     '</div><div class="x-form-clear-left"></div>'
31289                 );
31290                 t.disableFormats = true;
31291                 t.compile();
31292                 Roo.form.Layout.prototype.fieldTpl = t;
31293             }
31294             for(var i = 0; i < slen; i++) {
31295                 if(stack[i].isFormField){
31296                     this.renderField(stack[i]);
31297                 }else{
31298                     this.renderComponent(stack[i]);
31299                 }
31300             }
31301         }
31302         if(this.clear){
31303             this.el.createChild({cls:'x-form-clear'});
31304         }
31305     },
31306
31307     // private
31308     renderField : function(f){
31309         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
31310                f.id, //0
31311                f.fieldLabel, //1
31312                f.labelStyle||this.labelStyle||'', //2
31313                this.elementStyle||'', //3
31314                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
31315                f.itemCls||this.itemCls||''  //5
31316        ], true).getPrevSibling());
31317     },
31318
31319     // private
31320     renderComponent : function(c){
31321         c.render(c.isLayout ? this.el : this.el.createChild());    
31322     },
31323     /**
31324      * Adds a object form elements (using the xtype property as the factory method.)
31325      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
31326      * @param {Object} config 
31327      */
31328     addxtype : function(o)
31329     {
31330         // create the lement.
31331         o.form = this.form;
31332         var fe = Roo.factory(o, Roo.form);
31333         this.form.allItems.push(fe);
31334         this.stack.push(fe);
31335         
31336         if (fe.isFormField) {
31337             this.form.items.add(fe);
31338         }
31339          
31340         return fe;
31341     }
31342 });
31343
31344
31345 /**
31346  * @class Roo.form.Column
31347  * @extends Roo.form.Layout
31348  * @children Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
31349  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
31350  * @constructor
31351  * @param {Object} config Configuration options
31352  */
31353 Roo.form.Column = function(config){
31354     Roo.form.Column.superclass.constructor.call(this, config);
31355 };
31356
31357 Roo.extend(Roo.form.Column, Roo.form.Layout, {
31358     /**
31359      * @cfg {Number/String} width
31360      * The fixed width of the column in pixels or CSS value (defaults to "auto")
31361      */
31362     /**
31363      * @cfg {String/Object} autoCreate
31364      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
31365      */
31366
31367     // private
31368     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
31369
31370     // private
31371     onRender : function(ct, position){
31372         Roo.form.Column.superclass.onRender.call(this, ct, position);
31373         if(this.width){
31374             this.el.setWidth(this.width);
31375         }
31376     }
31377 });
31378
31379 /**
31380  * @class Roo.form.Row
31381  * @extends Roo.form.Layout
31382  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
31383  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
31384  * @constructor
31385  * @param {Object} config Configuration options
31386  */
31387
31388  
31389 Roo.form.Row = function(config){
31390     Roo.form.Row.superclass.constructor.call(this, config);
31391 };
31392  
31393 Roo.extend(Roo.form.Row, Roo.form.Layout, {
31394       /**
31395      * @cfg {Number/String} width
31396      * The fixed width of the column in pixels or CSS value (defaults to "auto")
31397      */
31398     /**
31399      * @cfg {Number/String} height
31400      * The fixed height of the column in pixels or CSS value (defaults to "auto")
31401      */
31402     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
31403     
31404     padWidth : 20,
31405     // private
31406     onRender : function(ct, position){
31407         //console.log('row render');
31408         if(!this.rowTpl){
31409             var t = new Roo.Template(
31410                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
31411                     '<label for="{0}" style="{2}">{1}{4}</label>',
31412                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
31413                     '</div>',
31414                 '</div>'
31415             );
31416             t.disableFormats = true;
31417             t.compile();
31418             Roo.form.Layout.prototype.rowTpl = t;
31419         }
31420         this.fieldTpl = this.rowTpl;
31421         
31422         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
31423         var labelWidth = 100;
31424         
31425         if ((this.labelAlign != 'top')) {
31426             if (typeof this.labelWidth == 'number') {
31427                 labelWidth = this.labelWidth
31428             }
31429             this.padWidth =  20 + labelWidth;
31430             
31431         }
31432         
31433         Roo.form.Column.superclass.onRender.call(this, ct, position);
31434         if(this.width){
31435             this.el.setWidth(this.width);
31436         }
31437         if(this.height){
31438             this.el.setHeight(this.height);
31439         }
31440     },
31441     
31442     // private
31443     renderField : function(f){
31444         f.fieldEl = this.fieldTpl.append(this.el, [
31445                f.id, f.fieldLabel,
31446                f.labelStyle||this.labelStyle||'',
31447                this.elementStyle||'',
31448                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
31449                f.itemCls||this.itemCls||'',
31450                f.width ? f.width + this.padWidth : 160 + this.padWidth
31451        ],true);
31452     }
31453 });
31454  
31455
31456 /**
31457  * @class Roo.form.FieldSet
31458  * @extends Roo.form.Layout
31459  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
31460  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
31461  * @constructor
31462  * @param {Object} config Configuration options
31463  */
31464 Roo.form.FieldSet = function(config){
31465     Roo.form.FieldSet.superclass.constructor.call(this, config);
31466 };
31467
31468 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
31469     /**
31470      * @cfg {String} legend
31471      * The text to display as the legend for the FieldSet (defaults to '')
31472      */
31473     /**
31474      * @cfg {String/Object} autoCreate
31475      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
31476      */
31477
31478     // private
31479     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
31480
31481     // private
31482     onRender : function(ct, position){
31483         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
31484         if(this.legend){
31485             this.setLegend(this.legend);
31486         }
31487     },
31488
31489     // private
31490     setLegend : function(text){
31491         if(this.rendered){
31492             this.el.child('legend').update(text);
31493         }
31494     }
31495 });/*
31496  * Based on:
31497  * Ext JS Library 1.1.1
31498  * Copyright(c) 2006-2007, Ext JS, LLC.
31499  *
31500  * Originally Released Under LGPL - original licence link has changed is not relivant.
31501  *
31502  * Fork - LGPL
31503  * <script type="text/javascript">
31504  */
31505 /**
31506  * @class Roo.form.VTypes
31507  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
31508  * @static
31509  */
31510 Roo.form.VTypes = function(){
31511     // closure these in so they are only created once.
31512     var alpha = /^[a-zA-Z_]+$/;
31513     var alphanum = /^[a-zA-Z0-9_]+$/;
31514     var email = /^([\w-]+)(\.[\w-]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
31515     var url = /^(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
31516     var urlWeb = /^((https?):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
31517
31518     // All these messages and functions are configurable
31519     return {
31520         /**
31521          * The function used to validate email addresses
31522          * @param {String} value The email address
31523          */
31524         email : function(v){
31525             return email.test(v);
31526         },
31527         /**
31528          * The error text to display when the email validation function returns false
31529          * @type String
31530          */
31531         emailText : 'This field should be an e-mail address in the format "user@domain.com"',
31532         /**
31533          * The keystroke filter mask to be applied on email input
31534          * @type RegExp
31535          */
31536         emailMask : /[a-z0-9_\.\-@]/i,
31537
31538         /**
31539          * The function used to validate URLs
31540          * @param {String} value The URL
31541          */
31542         url : function(v){
31543             return url.test(v);
31544         },
31545         /**
31546          * The funciton used to validate URLs (only allow schemes 'https' and 'http')
31547          * @param {String} v The URL
31548          */
31549         urlWeb : function(v) {
31550             return urlWeb.test(v);
31551         },
31552         /**
31553          * The error text to display when the url validation function returns false
31554          * @type String
31555          */
31556         urlText : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
31557         
31558         /**
31559          * The function used to validate alpha values
31560          * @param {String} value The value
31561          */
31562         alpha : function(v){
31563             return alpha.test(v);
31564         },
31565         /**
31566          * The error text to display when the alpha validation function returns false
31567          * @type String
31568          */
31569         alphaText : 'This field should only contain letters and _',
31570         /**
31571          * The keystroke filter mask to be applied on alpha input
31572          * @type RegExp
31573          */
31574         alphaMask : /[a-z_]/i,
31575
31576         /**
31577          * The function used to validate alphanumeric values
31578          * @param {String} value The value
31579          */
31580         alphanum : function(v){
31581             return alphanum.test(v);
31582         },
31583         /**
31584          * The error text to display when the alphanumeric validation function returns false
31585          * @type String
31586          */
31587         alphanumText : 'This field should only contain letters, numbers and _',
31588         /**
31589          * The keystroke filter mask to be applied on alphanumeric input
31590          * @type RegExp
31591          */
31592         alphanumMask : /[a-z0-9_]/i
31593     };
31594 }();//<script type="text/javascript">
31595
31596 /**
31597  * @class Roo.form.FCKeditor
31598  * @extends Roo.form.TextArea
31599  * Wrapper around the FCKEditor http://www.fckeditor.net
31600  * @constructor
31601  * Creates a new FCKeditor
31602  * @param {Object} config Configuration options
31603  */
31604 Roo.form.FCKeditor = function(config){
31605     Roo.form.FCKeditor.superclass.constructor.call(this, config);
31606     this.addEvents({
31607          /**
31608          * @event editorinit
31609          * Fired when the editor is initialized - you can add extra handlers here..
31610          * @param {FCKeditor} this
31611          * @param {Object} the FCK object.
31612          */
31613         editorinit : true
31614     });
31615     
31616     
31617 };
31618 Roo.form.FCKeditor.editors = { };
31619 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
31620 {
31621     //defaultAutoCreate : {
31622     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
31623     //},
31624     // private
31625     /**
31626      * @cfg {Object} fck options - see fck manual for details.
31627      */
31628     fckconfig : false,
31629     
31630     /**
31631      * @cfg {Object} fck toolbar set (Basic or Default)
31632      */
31633     toolbarSet : 'Basic',
31634     /**
31635      * @cfg {Object} fck BasePath
31636      */ 
31637     basePath : '/fckeditor/',
31638     
31639     
31640     frame : false,
31641     
31642     value : '',
31643     
31644    
31645     onRender : function(ct, position)
31646     {
31647         if(!this.el){
31648             this.defaultAutoCreate = {
31649                 tag: "textarea",
31650                 style:"width:300px;height:60px;",
31651                 autocomplete: "new-password"
31652             };
31653         }
31654         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
31655         /*
31656         if(this.grow){
31657             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
31658             if(this.preventScrollbars){
31659                 this.el.setStyle("overflow", "hidden");
31660             }
31661             this.el.setHeight(this.growMin);
31662         }
31663         */
31664         //console.log('onrender' + this.getId() );
31665         Roo.form.FCKeditor.editors[this.getId()] = this;
31666          
31667
31668         this.replaceTextarea() ;
31669         
31670     },
31671     
31672     getEditor : function() {
31673         return this.fckEditor;
31674     },
31675     /**
31676      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
31677      * @param {Mixed} value The value to set
31678      */
31679     
31680     
31681     setValue : function(value)
31682     {
31683         //console.log('setValue: ' + value);
31684         
31685         if(typeof(value) == 'undefined') { // not sure why this is happending...
31686             return;
31687         }
31688         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
31689         
31690         //if(!this.el || !this.getEditor()) {
31691         //    this.value = value;
31692             //this.setValue.defer(100,this,[value]);    
31693         //    return;
31694         //} 
31695         
31696         if(!this.getEditor()) {
31697             return;
31698         }
31699         
31700         this.getEditor().SetData(value);
31701         
31702         //
31703
31704     },
31705
31706     /**
31707      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
31708      * @return {Mixed} value The field value
31709      */
31710     getValue : function()
31711     {
31712         
31713         if (this.frame && this.frame.dom.style.display == 'none') {
31714             return Roo.form.FCKeditor.superclass.getValue.call(this);
31715         }
31716         
31717         if(!this.el || !this.getEditor()) {
31718            
31719            // this.getValue.defer(100,this); 
31720             return this.value;
31721         }
31722        
31723         
31724         var value=this.getEditor().GetData();
31725         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
31726         return Roo.form.FCKeditor.superclass.getValue.call(this);
31727         
31728
31729     },
31730
31731     /**
31732      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
31733      * @return {Mixed} value The field value
31734      */
31735     getRawValue : function()
31736     {
31737         if (this.frame && this.frame.dom.style.display == 'none') {
31738             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
31739         }
31740         
31741         if(!this.el || !this.getEditor()) {
31742             //this.getRawValue.defer(100,this); 
31743             return this.value;
31744             return;
31745         }
31746         
31747         
31748         
31749         var value=this.getEditor().GetData();
31750         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
31751         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
31752          
31753     },
31754     
31755     setSize : function(w,h) {
31756         
31757         
31758         
31759         //if (this.frame && this.frame.dom.style.display == 'none') {
31760         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
31761         //    return;
31762         //}
31763         //if(!this.el || !this.getEditor()) {
31764         //    this.setSize.defer(100,this, [w,h]); 
31765         //    return;
31766         //}
31767         
31768         
31769         
31770         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
31771         
31772         this.frame.dom.setAttribute('width', w);
31773         this.frame.dom.setAttribute('height', h);
31774         this.frame.setSize(w,h);
31775         
31776     },
31777     
31778     toggleSourceEdit : function(value) {
31779         
31780       
31781          
31782         this.el.dom.style.display = value ? '' : 'none';
31783         this.frame.dom.style.display = value ?  'none' : '';
31784         
31785     },
31786     
31787     
31788     focus: function(tag)
31789     {
31790         if (this.frame.dom.style.display == 'none') {
31791             return Roo.form.FCKeditor.superclass.focus.call(this);
31792         }
31793         if(!this.el || !this.getEditor()) {
31794             this.focus.defer(100,this, [tag]); 
31795             return;
31796         }
31797         
31798         
31799         
31800         
31801         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
31802         this.getEditor().Focus();
31803         if (tgs.length) {
31804             if (!this.getEditor().Selection.GetSelection()) {
31805                 this.focus.defer(100,this, [tag]); 
31806                 return;
31807             }
31808             
31809             
31810             var r = this.getEditor().EditorDocument.createRange();
31811             r.setStart(tgs[0],0);
31812             r.setEnd(tgs[0],0);
31813             this.getEditor().Selection.GetSelection().removeAllRanges();
31814             this.getEditor().Selection.GetSelection().addRange(r);
31815             this.getEditor().Focus();
31816         }
31817         
31818     },
31819     
31820     
31821     
31822     replaceTextarea : function()
31823     {
31824         if ( document.getElementById( this.getId() + '___Frame' ) ) {
31825             return ;
31826         }
31827         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
31828         //{
31829             // We must check the elements firstly using the Id and then the name.
31830         var oTextarea = document.getElementById( this.getId() );
31831         
31832         var colElementsByName = document.getElementsByName( this.getId() ) ;
31833          
31834         oTextarea.style.display = 'none' ;
31835
31836         if ( oTextarea.tabIndex ) {            
31837             this.TabIndex = oTextarea.tabIndex ;
31838         }
31839         
31840         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
31841         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
31842         this.frame = Roo.get(this.getId() + '___Frame')
31843     },
31844     
31845     _getConfigHtml : function()
31846     {
31847         var sConfig = '' ;
31848
31849         for ( var o in this.fckconfig ) {
31850             sConfig += sConfig.length > 0  ? '&amp;' : '';
31851             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
31852         }
31853
31854         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
31855     },
31856     
31857     
31858     _getIFrameHtml : function()
31859     {
31860         var sFile = 'fckeditor.html' ;
31861         /* no idea what this is about..
31862         try
31863         {
31864             if ( (/fcksource=true/i).test( window.top.location.search ) )
31865                 sFile = 'fckeditor.original.html' ;
31866         }
31867         catch (e) { 
31868         */
31869
31870         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
31871         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
31872         
31873         
31874         var html = '<iframe id="' + this.getId() +
31875             '___Frame" src="' + sLink +
31876             '" width="' + this.width +
31877             '" height="' + this.height + '"' +
31878             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
31879             ' frameborder="0" scrolling="no"></iframe>' ;
31880
31881         return html ;
31882     },
31883     
31884     _insertHtmlBefore : function( html, element )
31885     {
31886         if ( element.insertAdjacentHTML )       {
31887             // IE
31888             element.insertAdjacentHTML( 'beforeBegin', html ) ;
31889         } else { // Gecko
31890             var oRange = document.createRange() ;
31891             oRange.setStartBefore( element ) ;
31892             var oFragment = oRange.createContextualFragment( html );
31893             element.parentNode.insertBefore( oFragment, element ) ;
31894         }
31895     }
31896     
31897     
31898   
31899     
31900     
31901     
31902     
31903
31904 });
31905
31906 //Roo.reg('fckeditor', Roo.form.FCKeditor);
31907
31908 function FCKeditor_OnComplete(editorInstance){
31909     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
31910     f.fckEditor = editorInstance;
31911     //console.log("loaded");
31912     f.fireEvent('editorinit', f, editorInstance);
31913
31914   
31915
31916  
31917
31918
31919
31920
31921
31922
31923
31924
31925
31926
31927
31928
31929
31930
31931
31932 //<script type="text/javascript">
31933 /**
31934  * @class Roo.form.GridField
31935  * @extends Roo.form.Field
31936  * Embed a grid (or editable grid into a form)
31937  * STATUS ALPHA
31938  * 
31939  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
31940  * it needs 
31941  * xgrid.store = Roo.data.Store
31942  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
31943  * xgrid.store.reader = Roo.data.JsonReader 
31944  * 
31945  * 
31946  * @constructor
31947  * Creates a new GridField
31948  * @param {Object} config Configuration options
31949  */
31950 Roo.form.GridField = function(config){
31951     Roo.form.GridField.superclass.constructor.call(this, config);
31952      
31953 };
31954
31955 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
31956     /**
31957      * @cfg {Number} width  - used to restrict width of grid..
31958      */
31959     width : 100,
31960     /**
31961      * @cfg {Number} height - used to restrict height of grid..
31962      */
31963     height : 50,
31964      /**
31965      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
31966          * 
31967          *}
31968      */
31969     xgrid : false, 
31970     /**
31971      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
31972      * {tag: "input", type: "checkbox", autocomplete: "off"})
31973      */
31974    // defaultAutoCreate : { tag: 'div' },
31975     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
31976     /**
31977      * @cfg {String} addTitle Text to include for adding a title.
31978      */
31979     addTitle : false,
31980     //
31981     onResize : function(){
31982         Roo.form.Field.superclass.onResize.apply(this, arguments);
31983     },
31984
31985     initEvents : function(){
31986         // Roo.form.Checkbox.superclass.initEvents.call(this);
31987         // has no events...
31988        
31989     },
31990
31991
31992     getResizeEl : function(){
31993         return this.wrap;
31994     },
31995
31996     getPositionEl : function(){
31997         return this.wrap;
31998     },
31999
32000     // private
32001     onRender : function(ct, position){
32002         
32003         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
32004         var style = this.style;
32005         delete this.style;
32006         
32007         Roo.form.GridField.superclass.onRender.call(this, ct, position);
32008         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
32009         this.viewEl = this.wrap.createChild({ tag: 'div' });
32010         if (style) {
32011             this.viewEl.applyStyles(style);
32012         }
32013         if (this.width) {
32014             this.viewEl.setWidth(this.width);
32015         }
32016         if (this.height) {
32017             this.viewEl.setHeight(this.height);
32018         }
32019         //if(this.inputValue !== undefined){
32020         //this.setValue(this.value);
32021         
32022         
32023         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
32024         
32025         
32026         this.grid.render();
32027         this.grid.getDataSource().on('remove', this.refreshValue, this);
32028         this.grid.getDataSource().on('update', this.refreshValue, this);
32029         this.grid.on('afteredit', this.refreshValue, this);
32030  
32031     },
32032      
32033     
32034     /**
32035      * Sets the value of the item. 
32036      * @param {String} either an object  or a string..
32037      */
32038     setValue : function(v){
32039         //this.value = v;
32040         v = v || []; // empty set..
32041         // this does not seem smart - it really only affects memoryproxy grids..
32042         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
32043             var ds = this.grid.getDataSource();
32044             // assumes a json reader..
32045             var data = {}
32046             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
32047             ds.loadData( data);
32048         }
32049         // clear selection so it does not get stale.
32050         if (this.grid.sm) { 
32051             this.grid.sm.clearSelections();
32052         }
32053         
32054         Roo.form.GridField.superclass.setValue.call(this, v);
32055         this.refreshValue();
32056         // should load data in the grid really....
32057     },
32058     
32059     // private
32060     refreshValue: function() {
32061          var val = [];
32062         this.grid.getDataSource().each(function(r) {
32063             val.push(r.data);
32064         });
32065         this.el.dom.value = Roo.encode(val);
32066     }
32067     
32068      
32069     
32070     
32071 });/*
32072  * Based on:
32073  * Ext JS Library 1.1.1
32074  * Copyright(c) 2006-2007, Ext JS, LLC.
32075  *
32076  * Originally Released Under LGPL - original licence link has changed is not relivant.
32077  *
32078  * Fork - LGPL
32079  * <script type="text/javascript">
32080  */
32081 /**
32082  * @class Roo.form.DisplayField
32083  * @extends Roo.form.Field
32084  * A generic Field to display non-editable data.
32085  * @cfg {Boolean} closable (true|false) default false
32086  * @constructor
32087  * Creates a new Display Field item.
32088  * @param {Object} config Configuration options
32089  */
32090 Roo.form.DisplayField = function(config){
32091     Roo.form.DisplayField.superclass.constructor.call(this, config);
32092     
32093     this.addEvents({
32094         /**
32095          * @event close
32096          * Fires after the click the close btn
32097              * @param {Roo.form.DisplayField} this
32098              */
32099         close : true
32100     });
32101 };
32102
32103 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
32104     inputType:      'hidden',
32105     allowBlank:     true,
32106     readOnly:         true,
32107     
32108  
32109     /**
32110      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
32111      */
32112     focusClass : undefined,
32113     /**
32114      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
32115      */
32116     fieldClass: 'x-form-field',
32117     
32118      /**
32119      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
32120      */
32121     valueRenderer: undefined,
32122     
32123     width: 100,
32124     /**
32125      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
32126      * {tag: "input", type: "checkbox", autocomplete: "off"})
32127      */
32128      
32129  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
32130  
32131     closable : false,
32132     
32133     onResize : function(){
32134         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
32135         
32136     },
32137
32138     initEvents : function(){
32139         // Roo.form.Checkbox.superclass.initEvents.call(this);
32140         // has no events...
32141         
32142         if(this.closable){
32143             this.closeEl.on('click', this.onClose, this);
32144         }
32145        
32146     },
32147
32148
32149     getResizeEl : function(){
32150         return this.wrap;
32151     },
32152
32153     getPositionEl : function(){
32154         return this.wrap;
32155     },
32156
32157     // private
32158     onRender : function(ct, position){
32159         
32160         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
32161         //if(this.inputValue !== undefined){
32162         this.wrap = this.el.wrap();
32163         
32164         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
32165         
32166         if(this.closable){
32167             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
32168         }
32169         
32170         if (this.bodyStyle) {
32171             this.viewEl.applyStyles(this.bodyStyle);
32172         }
32173         //this.viewEl.setStyle('padding', '2px');
32174         
32175         this.setValue(this.value);
32176         
32177     },
32178 /*
32179     // private
32180     initValue : Roo.emptyFn,
32181
32182   */
32183
32184         // private
32185     onClick : function(){
32186         
32187     },
32188
32189     /**
32190      * Sets the checked state of the checkbox.
32191      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
32192      */
32193     setValue : function(v){
32194         this.value = v;
32195         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
32196         // this might be called before we have a dom element..
32197         if (!this.viewEl) {
32198             return;
32199         }
32200         this.viewEl.dom.innerHTML = html;
32201         Roo.form.DisplayField.superclass.setValue.call(this, v);
32202
32203     },
32204     
32205     onClose : function(e)
32206     {
32207         e.preventDefault();
32208         
32209         this.fireEvent('close', this);
32210     }
32211 });/*
32212  * 
32213  * Licence- LGPL
32214  * 
32215  */
32216
32217 /**
32218  * @class Roo.form.DayPicker
32219  * @extends Roo.form.Field
32220  * A Day picker show [M] [T] [W] ....
32221  * @constructor
32222  * Creates a new Day Picker
32223  * @param {Object} config Configuration options
32224  */
32225 Roo.form.DayPicker= function(config){
32226     Roo.form.DayPicker.superclass.constructor.call(this, config);
32227      
32228 };
32229
32230 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
32231     /**
32232      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
32233      */
32234     focusClass : undefined,
32235     /**
32236      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
32237      */
32238     fieldClass: "x-form-field",
32239    
32240     /**
32241      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
32242      * {tag: "input", type: "checkbox", autocomplete: "off"})
32243      */
32244     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
32245     
32246    
32247     actionMode : 'viewEl', 
32248     //
32249     // private
32250  
32251     inputType : 'hidden',
32252     
32253      
32254     inputElement: false, // real input element?
32255     basedOn: false, // ????
32256     
32257     isFormField: true, // not sure where this is needed!!!!
32258
32259     onResize : function(){
32260         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
32261         if(!this.boxLabel){
32262             this.el.alignTo(this.wrap, 'c-c');
32263         }
32264     },
32265
32266     initEvents : function(){
32267         Roo.form.Checkbox.superclass.initEvents.call(this);
32268         this.el.on("click", this.onClick,  this);
32269         this.el.on("change", this.onClick,  this);
32270     },
32271
32272
32273     getResizeEl : function(){
32274         return this.wrap;
32275     },
32276
32277     getPositionEl : function(){
32278         return this.wrap;
32279     },
32280
32281     
32282     // private
32283     onRender : function(ct, position){
32284         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
32285        
32286         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
32287         
32288         var r1 = '<table><tr>';
32289         var r2 = '<tr class="x-form-daypick-icons">';
32290         for (var i=0; i < 7; i++) {
32291             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
32292             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
32293         }
32294         
32295         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
32296         viewEl.select('img').on('click', this.onClick, this);
32297         this.viewEl = viewEl;   
32298         
32299         
32300         // this will not work on Chrome!!!
32301         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
32302         this.el.on('propertychange', this.setFromHidden,  this);  //ie
32303         
32304         
32305           
32306
32307     },
32308
32309     // private
32310     initValue : Roo.emptyFn,
32311
32312     /**
32313      * Returns the checked state of the checkbox.
32314      * @return {Boolean} True if checked, else false
32315      */
32316     getValue : function(){
32317         return this.el.dom.value;
32318         
32319     },
32320
32321         // private
32322     onClick : function(e){ 
32323         //this.setChecked(!this.checked);
32324         Roo.get(e.target).toggleClass('x-menu-item-checked');
32325         this.refreshValue();
32326         //if(this.el.dom.checked != this.checked){
32327         //    this.setValue(this.el.dom.checked);
32328        // }
32329     },
32330     
32331     // private
32332     refreshValue : function()
32333     {
32334         var val = '';
32335         this.viewEl.select('img',true).each(function(e,i,n)  {
32336             val += e.is(".x-menu-item-checked") ? String(n) : '';
32337         });
32338         this.setValue(val, true);
32339     },
32340
32341     /**
32342      * Sets the checked state of the checkbox.
32343      * On is always based on a string comparison between inputValue and the param.
32344      * @param {Boolean/String} value - the value to set 
32345      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
32346      */
32347     setValue : function(v,suppressEvent){
32348         if (!this.el.dom) {
32349             return;
32350         }
32351         var old = this.el.dom.value ;
32352         this.el.dom.value = v;
32353         if (suppressEvent) {
32354             return ;
32355         }
32356          
32357         // update display..
32358         this.viewEl.select('img',true).each(function(e,i,n)  {
32359             
32360             var on = e.is(".x-menu-item-checked");
32361             var newv = v.indexOf(String(n)) > -1;
32362             if (on != newv) {
32363                 e.toggleClass('x-menu-item-checked');
32364             }
32365             
32366         });
32367         
32368         
32369         this.fireEvent('change', this, v, old);
32370         
32371         
32372     },
32373    
32374     // handle setting of hidden value by some other method!!?!?
32375     setFromHidden: function()
32376     {
32377         if(!this.el){
32378             return;
32379         }
32380         //console.log("SET FROM HIDDEN");
32381         //alert('setFrom hidden');
32382         this.setValue(this.el.dom.value);
32383     },
32384     
32385     onDestroy : function()
32386     {
32387         if(this.viewEl){
32388             Roo.get(this.viewEl).remove();
32389         }
32390          
32391         Roo.form.DayPicker.superclass.onDestroy.call(this);
32392     }
32393
32394 });/*
32395  * RooJS Library 1.1.1
32396  * Copyright(c) 2008-2011  Alan Knowles
32397  *
32398  * License - LGPL
32399  */
32400  
32401
32402 /**
32403  * @class Roo.form.ComboCheck
32404  * @extends Roo.form.ComboBox
32405  * A combobox for multiple select items.
32406  *
32407  * FIXME - could do with a reset button..
32408  * 
32409  * @constructor
32410  * Create a new ComboCheck
32411  * @param {Object} config Configuration options
32412  */
32413 Roo.form.ComboCheck = function(config){
32414     Roo.form.ComboCheck.superclass.constructor.call(this, config);
32415     // should verify some data...
32416     // like
32417     // hiddenName = required..
32418     // displayField = required
32419     // valudField == required
32420     var req= [ 'hiddenName', 'displayField', 'valueField' ];
32421     var _t = this;
32422     Roo.each(req, function(e) {
32423         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
32424             throw "Roo.form.ComboCheck : missing value for: " + e;
32425         }
32426     });
32427     
32428     
32429 };
32430
32431 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
32432      
32433      
32434     editable : false,
32435      
32436     selectedClass: 'x-menu-item-checked', 
32437     
32438     // private
32439     onRender : function(ct, position){
32440         var _t = this;
32441         
32442         
32443         
32444         if(!this.tpl){
32445             var cls = 'x-combo-list';
32446
32447             
32448             this.tpl =  new Roo.Template({
32449                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
32450                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
32451                    '<span>{' + this.displayField + '}</span>' +
32452                     '</div>' 
32453                 
32454             });
32455         }
32456  
32457         
32458         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
32459         this.view.singleSelect = false;
32460         this.view.multiSelect = true;
32461         this.view.toggleSelect = true;
32462         this.pageTb.add(new Roo.Toolbar.Fill(),{
32463             
32464             text: 'Select All',
32465             handler: function() {
32466                 _t.selectAll();
32467             }
32468         },
32469         {
32470             text: 'Done',
32471             handler: function() {
32472                 _t.collapse();
32473             }
32474         });
32475     },
32476     
32477     cleanLeadingSpace : function(e)
32478     {
32479         // this is disabled, as it retriggers setvalue on blur
32480         return;
32481     },
32482     doForce : function() {
32483         // no idea what this did, but it blanks out our values.
32484         return;
32485     },
32486     onViewOver : function(e, t){
32487         // do nothing...
32488         return;
32489         
32490     },
32491     
32492     onViewClick : function(doFocus,index){
32493         return;
32494         
32495     },
32496     select: function () {
32497         //Roo.log("SELECT CALLED");
32498     },
32499      
32500     selectByValue : function(xv, scrollIntoView){
32501         var ar = this.getValueArray();
32502         var sels = [];
32503         
32504         Roo.each(ar, function(v) {
32505             if(v === undefined || v === null){
32506                 return;
32507             }
32508             var r = this.findRecord(this.valueField, v);
32509             if(r){
32510                 sels.push(this.store.indexOf(r))
32511                 
32512             }
32513         },this);
32514         this.view.select(sels);
32515         return false;
32516     },
32517     
32518     selectAll : function()
32519     {
32520         var sels = [];
32521         this.store.each(function(r,i) {
32522             sels.push(i);
32523         });
32524         this.view.select(sels);
32525         this.collapse();
32526         return false;
32527
32528     },
32529     
32530     onSelect : function(record, index){
32531        // Roo.log("onselect Called");
32532        // this is only called by the clear button now..
32533         this.view.clearSelections();
32534         this.setValue('[]');
32535         if (this.value != this.valueBefore) {
32536             this.fireEvent('change', this, this.value, this.valueBefore);
32537             this.valueBefore = this.value;
32538         }
32539     },
32540     getValueArray : function()
32541     {
32542         var ar = [] ;
32543         
32544         try {
32545             //Roo.log(this.value);
32546             if (typeof(this.value) == 'undefined') {
32547                 return [];
32548             }
32549             var ar = Roo.decode(this.value);
32550             return  ar instanceof Array ? ar : []; //?? valid?
32551             
32552         } catch(e) {
32553             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
32554             return [];
32555         }
32556          
32557     },
32558     expand : function ()
32559     {
32560         
32561         Roo.form.ComboCheck.superclass.expand.call(this);
32562         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
32563         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
32564         
32565
32566     },
32567     
32568     collapse : function(){
32569         Roo.form.ComboCheck.superclass.collapse.call(this);
32570         var sl = this.view.getSelectedIndexes();
32571         var st = this.store;
32572         var nv = [];
32573         var tv = [];
32574         var r;
32575         Roo.each(sl, function(i) {
32576             r = st.getAt(i);
32577             nv.push(r.get(this.valueField));
32578         },this);
32579         this.setValue(Roo.encode(nv));
32580         if (this.value != this.valueBefore) {
32581
32582             this.fireEvent('change', this, this.value, this.valueBefore);
32583             this.valueBefore = this.value;
32584         }
32585         
32586     },
32587     
32588     setValue : function(v){
32589         // Roo.log(v);
32590         this.value = v;
32591         
32592         var vals = this.getValueArray();
32593         var tv = [];
32594         Roo.each(vals, function(k) {
32595             var r = this.findRecord(this.valueField, k);
32596             if(r){
32597                 tv.push(r.data[this.displayField]);
32598             }else if(this.valueNotFoundText !== undefined){
32599                 tv.push( this.valueNotFoundText );
32600             }
32601         },this);
32602        // Roo.log(tv);
32603         
32604         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
32605         this.hiddenField.value = v;
32606         this.value = v;
32607     }
32608     
32609 });/*
32610  * Based on:
32611  * Ext JS Library 1.1.1
32612  * Copyright(c) 2006-2007, Ext JS, LLC.
32613  *
32614  * Originally Released Under LGPL - original licence link has changed is not relivant.
32615  *
32616  * Fork - LGPL
32617  * <script type="text/javascript">
32618  */
32619  
32620 /**
32621  * @class Roo.form.Signature
32622  * @extends Roo.form.Field
32623  * Signature field.  
32624  * @constructor
32625  * 
32626  * @param {Object} config Configuration options
32627  */
32628
32629 Roo.form.Signature = function(config){
32630     Roo.form.Signature.superclass.constructor.call(this, config);
32631     
32632     this.addEvents({// not in used??
32633          /**
32634          * @event confirm
32635          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
32636              * @param {Roo.form.Signature} combo This combo box
32637              */
32638         'confirm' : true,
32639         /**
32640          * @event reset
32641          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
32642              * @param {Roo.form.ComboBox} combo This combo box
32643              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
32644              */
32645         'reset' : true
32646     });
32647 };
32648
32649 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
32650     /**
32651      * @cfg {Object} labels Label to use when rendering a form.
32652      * defaults to 
32653      * labels : { 
32654      *      clear : "Clear",
32655      *      confirm : "Confirm"
32656      *  }
32657      */
32658     labels : { 
32659         clear : "Clear",
32660         confirm : "Confirm"
32661     },
32662     /**
32663      * @cfg {Number} width The signature panel width (defaults to 300)
32664      */
32665     width: 300,
32666     /**
32667      * @cfg {Number} height The signature panel height (defaults to 100)
32668      */
32669     height : 100,
32670     /**
32671      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
32672      */
32673     allowBlank : false,
32674     
32675     //private
32676     // {Object} signPanel The signature SVG panel element (defaults to {})
32677     signPanel : {},
32678     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
32679     isMouseDown : false,
32680     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
32681     isConfirmed : false,
32682     // {String} signatureTmp SVG mapping string (defaults to empty string)
32683     signatureTmp : '',
32684     
32685     
32686     defaultAutoCreate : { // modified by initCompnoent..
32687         tag: "input",
32688         type:"hidden"
32689     },
32690
32691     // private
32692     onRender : function(ct, position){
32693         
32694         Roo.form.Signature.superclass.onRender.call(this, ct, position);
32695         
32696         this.wrap = this.el.wrap({
32697             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
32698         });
32699         
32700         this.createToolbar(this);
32701         this.signPanel = this.wrap.createChild({
32702                 tag: 'div',
32703                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
32704             }, this.el
32705         );
32706             
32707         this.svgID = Roo.id();
32708         this.svgEl = this.signPanel.createChild({
32709               xmlns : 'http://www.w3.org/2000/svg',
32710               tag : 'svg',
32711               id : this.svgID + "-svg",
32712               width: this.width,
32713               height: this.height,
32714               viewBox: '0 0 '+this.width+' '+this.height,
32715               cn : [
32716                 {
32717                     tag: "rect",
32718                     id: this.svgID + "-svg-r",
32719                     width: this.width,
32720                     height: this.height,
32721                     fill: "#ffa"
32722                 },
32723                 {
32724                     tag: "line",
32725                     id: this.svgID + "-svg-l",
32726                     x1: "0", // start
32727                     y1: (this.height*0.8), // start set the line in 80% of height
32728                     x2: this.width, // end
32729                     y2: (this.height*0.8), // end set the line in 80% of height
32730                     'stroke': "#666",
32731                     'stroke-width': "1",
32732                     'stroke-dasharray': "3",
32733                     'shape-rendering': "crispEdges",
32734                     'pointer-events': "none"
32735                 },
32736                 {
32737                     tag: "path",
32738                     id: this.svgID + "-svg-p",
32739                     'stroke': "navy",
32740                     'stroke-width': "3",
32741                     'fill': "none",
32742                     'pointer-events': 'none'
32743                 }
32744               ]
32745         });
32746         this.createSVG();
32747         this.svgBox = this.svgEl.dom.getScreenCTM();
32748     },
32749     createSVG : function(){ 
32750         var svg = this.signPanel;
32751         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
32752         var t = this;
32753
32754         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
32755         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
32756         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
32757         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
32758         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
32759         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
32760         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
32761         
32762     },
32763     isTouchEvent : function(e){
32764         return e.type.match(/^touch/);
32765     },
32766     getCoords : function (e) {
32767         var pt    = this.svgEl.dom.createSVGPoint();
32768         pt.x = e.clientX; 
32769         pt.y = e.clientY;
32770         if (this.isTouchEvent(e)) {
32771             pt.x =  e.targetTouches[0].clientX;
32772             pt.y = e.targetTouches[0].clientY;
32773         }
32774         var a = this.svgEl.dom.getScreenCTM();
32775         var b = a.inverse();
32776         var mx = pt.matrixTransform(b);
32777         return mx.x + ',' + mx.y;
32778     },
32779     //mouse event headler 
32780     down : function (e) {
32781         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
32782         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
32783         
32784         this.isMouseDown = true;
32785         
32786         e.preventDefault();
32787     },
32788     move : function (e) {
32789         if (this.isMouseDown) {
32790             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
32791             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
32792         }
32793         
32794         e.preventDefault();
32795     },
32796     up : function (e) {
32797         this.isMouseDown = false;
32798         var sp = this.signatureTmp.split(' ');
32799         
32800         if(sp.length > 1){
32801             if(!sp[sp.length-2].match(/^L/)){
32802                 sp.pop();
32803                 sp.pop();
32804                 sp.push("");
32805                 this.signatureTmp = sp.join(" ");
32806             }
32807         }
32808         if(this.getValue() != this.signatureTmp){
32809             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
32810             this.isConfirmed = false;
32811         }
32812         e.preventDefault();
32813     },
32814     
32815     /**
32816      * Protected method that will not generally be called directly. It
32817      * is called when the editor creates its toolbar. Override this method if you need to
32818      * add custom toolbar buttons.
32819      * @param {HtmlEditor} editor
32820      */
32821     createToolbar : function(editor){
32822          function btn(id, toggle, handler){
32823             var xid = fid + '-'+ id ;
32824             return {
32825                 id : xid,
32826                 cmd : id,
32827                 cls : 'x-btn-icon x-edit-'+id,
32828                 enableToggle:toggle !== false,
32829                 scope: editor, // was editor...
32830                 handler:handler||editor.relayBtnCmd,
32831                 clickEvent:'mousedown',
32832                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
32833                 tabIndex:-1
32834             };
32835         }
32836         
32837         
32838         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
32839         this.tb = tb;
32840         this.tb.add(
32841            {
32842                 cls : ' x-signature-btn x-signature-'+id,
32843                 scope: editor, // was editor...
32844                 handler: this.reset,
32845                 clickEvent:'mousedown',
32846                 text: this.labels.clear
32847             },
32848             {
32849                  xtype : 'Fill',
32850                  xns: Roo.Toolbar
32851             }, 
32852             {
32853                 cls : '  x-signature-btn x-signature-'+id,
32854                 scope: editor, // was editor...
32855                 handler: this.confirmHandler,
32856                 clickEvent:'mousedown',
32857                 text: this.labels.confirm
32858             }
32859         );
32860     
32861     },
32862     //public
32863     /**
32864      * when user is clicked confirm then show this image.....
32865      * 
32866      * @return {String} Image Data URI
32867      */
32868     getImageDataURI : function(){
32869         var svg = this.svgEl.dom.parentNode.innerHTML;
32870         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
32871         return src; 
32872     },
32873     /**
32874      * 
32875      * @return {Boolean} this.isConfirmed
32876      */
32877     getConfirmed : function(){
32878         return this.isConfirmed;
32879     },
32880     /**
32881      * 
32882      * @return {Number} this.width
32883      */
32884     getWidth : function(){
32885         return this.width;
32886     },
32887     /**
32888      * 
32889      * @return {Number} this.height
32890      */
32891     getHeight : function(){
32892         return this.height;
32893     },
32894     // private
32895     getSignature : function(){
32896         return this.signatureTmp;
32897     },
32898     // private
32899     reset : function(){
32900         this.signatureTmp = '';
32901         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
32902         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
32903         this.isConfirmed = false;
32904         Roo.form.Signature.superclass.reset.call(this);
32905     },
32906     setSignature : function(s){
32907         this.signatureTmp = s;
32908         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
32909         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
32910         this.setValue(s);
32911         this.isConfirmed = false;
32912         Roo.form.Signature.superclass.reset.call(this);
32913     }, 
32914     test : function(){
32915 //        Roo.log(this.signPanel.dom.contentWindow.up())
32916     },
32917     //private
32918     setConfirmed : function(){
32919         
32920         
32921         
32922 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
32923     },
32924     // private
32925     confirmHandler : function(){
32926         if(!this.getSignature()){
32927             return;
32928         }
32929         
32930         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
32931         this.setValue(this.getSignature());
32932         this.isConfirmed = true;
32933         
32934         this.fireEvent('confirm', this);
32935     },
32936     // private
32937     // Subclasses should provide the validation implementation by overriding this
32938     validateValue : function(value){
32939         if(this.allowBlank){
32940             return true;
32941         }
32942         
32943         if(this.isConfirmed){
32944             return true;
32945         }
32946         return false;
32947     }
32948 });/*
32949  * Based on:
32950  * Ext JS Library 1.1.1
32951  * Copyright(c) 2006-2007, Ext JS, LLC.
32952  *
32953  * Originally Released Under LGPL - original licence link has changed is not relivant.
32954  *
32955  * Fork - LGPL
32956  * <script type="text/javascript">
32957  */
32958  
32959
32960 /**
32961  * @class Roo.form.ComboBox
32962  * @extends Roo.form.TriggerField
32963  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
32964  * @constructor
32965  * Create a new ComboBox.
32966  * @param {Object} config Configuration options
32967  */
32968 Roo.form.Select = function(config){
32969     Roo.form.Select.superclass.constructor.call(this, config);
32970      
32971 };
32972
32973 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
32974     /**
32975      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
32976      */
32977     /**
32978      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
32979      * rendering into an Roo.Editor, defaults to false)
32980      */
32981     /**
32982      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
32983      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
32984      */
32985     /**
32986      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
32987      */
32988     /**
32989      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
32990      * the dropdown list (defaults to undefined, with no header element)
32991      */
32992
32993      /**
32994      * @cfg {String/Roo.Template} tpl The template to use to render the output
32995      */
32996      
32997     // private
32998     defaultAutoCreate : {tag: "select"  },
32999     /**
33000      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
33001      */
33002     listWidth: undefined,
33003     /**
33004      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
33005      * mode = 'remote' or 'text' if mode = 'local')
33006      */
33007     displayField: undefined,
33008     /**
33009      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
33010      * mode = 'remote' or 'value' if mode = 'local'). 
33011      * Note: use of a valueField requires the user make a selection
33012      * in order for a value to be mapped.
33013      */
33014     valueField: undefined,
33015     
33016     
33017     /**
33018      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
33019      * field's data value (defaults to the underlying DOM element's name)
33020      */
33021     hiddenName: undefined,
33022     /**
33023      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
33024      */
33025     listClass: '',
33026     /**
33027      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
33028      */
33029     selectedClass: 'x-combo-selected',
33030     /**
33031      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
33032      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
33033      * which displays a downward arrow icon).
33034      */
33035     triggerClass : 'x-form-arrow-trigger',
33036     /**
33037      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
33038      */
33039     shadow:'sides',
33040     /**
33041      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
33042      * anchor positions (defaults to 'tl-bl')
33043      */
33044     listAlign: 'tl-bl?',
33045     /**
33046      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
33047      */
33048     maxHeight: 300,
33049     /**
33050      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
33051      * query specified by the allQuery config option (defaults to 'query')
33052      */
33053     triggerAction: 'query',
33054     /**
33055      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
33056      * (defaults to 4, does not apply if editable = false)
33057      */
33058     minChars : 4,
33059     /**
33060      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
33061      * delay (typeAheadDelay) if it matches a known value (defaults to false)
33062      */
33063     typeAhead: false,
33064     /**
33065      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
33066      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
33067      */
33068     queryDelay: 500,
33069     /**
33070      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
33071      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
33072      */
33073     pageSize: 0,
33074     /**
33075      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
33076      * when editable = true (defaults to false)
33077      */
33078     selectOnFocus:false,
33079     /**
33080      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
33081      */
33082     queryParam: 'query',
33083     /**
33084      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
33085      * when mode = 'remote' (defaults to 'Loading...')
33086      */
33087     loadingText: 'Loading...',
33088     /**
33089      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
33090      */
33091     resizable: false,
33092     /**
33093      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
33094      */
33095     handleHeight : 8,
33096     /**
33097      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
33098      * traditional select (defaults to true)
33099      */
33100     editable: true,
33101     /**
33102      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
33103      */
33104     allQuery: '',
33105     /**
33106      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
33107      */
33108     mode: 'remote',
33109     /**
33110      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
33111      * listWidth has a higher value)
33112      */
33113     minListWidth : 70,
33114     /**
33115      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
33116      * allow the user to set arbitrary text into the field (defaults to false)
33117      */
33118     forceSelection:false,
33119     /**
33120      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
33121      * if typeAhead = true (defaults to 250)
33122      */
33123     typeAheadDelay : 250,
33124     /**
33125      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
33126      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
33127      */
33128     valueNotFoundText : undefined,
33129     
33130     /**
33131      * @cfg {String} defaultValue The value displayed after loading the store.
33132      */
33133     defaultValue: '',
33134     
33135     /**
33136      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
33137      */
33138     blockFocus : false,
33139     
33140     /**
33141      * @cfg {Boolean} disableClear Disable showing of clear button.
33142      */
33143     disableClear : false,
33144     /**
33145      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
33146      */
33147     alwaysQuery : false,
33148     
33149     //private
33150     addicon : false,
33151     editicon: false,
33152     
33153     // element that contains real text value.. (when hidden is used..)
33154      
33155     // private
33156     onRender : function(ct, position){
33157         Roo.form.Field.prototype.onRender.call(this, ct, position);
33158         
33159         if(this.store){
33160             this.store.on('beforeload', this.onBeforeLoad, this);
33161             this.store.on('load', this.onLoad, this);
33162             this.store.on('loadexception', this.onLoadException, this);
33163             this.store.load({});
33164         }
33165         
33166         
33167         
33168     },
33169
33170     // private
33171     initEvents : function(){
33172         //Roo.form.ComboBox.superclass.initEvents.call(this);
33173  
33174     },
33175
33176     onDestroy : function(){
33177        
33178         if(this.store){
33179             this.store.un('beforeload', this.onBeforeLoad, this);
33180             this.store.un('load', this.onLoad, this);
33181             this.store.un('loadexception', this.onLoadException, this);
33182         }
33183         //Roo.form.ComboBox.superclass.onDestroy.call(this);
33184     },
33185
33186     // private
33187     fireKey : function(e){
33188         if(e.isNavKeyPress() && !this.list.isVisible()){
33189             this.fireEvent("specialkey", this, e);
33190         }
33191     },
33192
33193     // private
33194     onResize: function(w, h){
33195         
33196         return; 
33197     
33198         
33199     },
33200
33201     /**
33202      * Allow or prevent the user from directly editing the field text.  If false is passed,
33203      * the user will only be able to select from the items defined in the dropdown list.  This method
33204      * is the runtime equivalent of setting the 'editable' config option at config time.
33205      * @param {Boolean} value True to allow the user to directly edit the field text
33206      */
33207     setEditable : function(value){
33208          
33209     },
33210
33211     // private
33212     onBeforeLoad : function(){
33213         
33214         Roo.log("Select before load");
33215         return;
33216     
33217         this.innerList.update(this.loadingText ?
33218                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
33219         //this.restrictHeight();
33220         this.selectedIndex = -1;
33221     },
33222
33223     // private
33224     onLoad : function(){
33225
33226     
33227         var dom = this.el.dom;
33228         dom.innerHTML = '';
33229          var od = dom.ownerDocument;
33230          
33231         if (this.emptyText) {
33232             var op = od.createElement('option');
33233             op.setAttribute('value', '');
33234             op.innerHTML = String.format('{0}', this.emptyText);
33235             dom.appendChild(op);
33236         }
33237         if(this.store.getCount() > 0){
33238            
33239             var vf = this.valueField;
33240             var df = this.displayField;
33241             this.store.data.each(function(r) {
33242                 // which colmsn to use... testing - cdoe / title..
33243                 var op = od.createElement('option');
33244                 op.setAttribute('value', r.data[vf]);
33245                 op.innerHTML = String.format('{0}', r.data[df]);
33246                 dom.appendChild(op);
33247             });
33248             if (typeof(this.defaultValue != 'undefined')) {
33249                 this.setValue(this.defaultValue);
33250             }
33251             
33252              
33253         }else{
33254             //this.onEmptyResults();
33255         }
33256         //this.el.focus();
33257     },
33258     // private
33259     onLoadException : function()
33260     {
33261         dom.innerHTML = '';
33262             
33263         Roo.log("Select on load exception");
33264         return;
33265     
33266         this.collapse();
33267         Roo.log(this.store.reader.jsonData);
33268         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
33269             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
33270         }
33271         
33272         
33273     },
33274     // private
33275     onTypeAhead : function(){
33276          
33277     },
33278
33279     // private
33280     onSelect : function(record, index){
33281         Roo.log('on select?');
33282         return;
33283         if(this.fireEvent('beforeselect', this, record, index) !== false){
33284             this.setFromData(index > -1 ? record.data : false);
33285             this.collapse();
33286             this.fireEvent('select', this, record, index);
33287         }
33288     },
33289
33290     /**
33291      * Returns the currently selected field value or empty string if no value is set.
33292      * @return {String} value The selected value
33293      */
33294     getValue : function(){
33295         var dom = this.el.dom;
33296         this.value = dom.options[dom.selectedIndex].value;
33297         return this.value;
33298         
33299     },
33300
33301     /**
33302      * Clears any text/value currently set in the field
33303      */
33304     clearValue : function(){
33305         this.value = '';
33306         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
33307         
33308     },
33309
33310     /**
33311      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
33312      * will be displayed in the field.  If the value does not match the data value of an existing item,
33313      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
33314      * Otherwise the field will be blank (although the value will still be set).
33315      * @param {String} value The value to match
33316      */
33317     setValue : function(v){
33318         var d = this.el.dom;
33319         for (var i =0; i < d.options.length;i++) {
33320             if (v == d.options[i].value) {
33321                 d.selectedIndex = i;
33322                 this.value = v;
33323                 return;
33324             }
33325         }
33326         this.clearValue();
33327     },
33328     /**
33329      * @property {Object} the last set data for the element
33330      */
33331     
33332     lastData : false,
33333     /**
33334      * Sets the value of the field based on a object which is related to the record format for the store.
33335      * @param {Object} value the value to set as. or false on reset?
33336      */
33337     setFromData : function(o){
33338         Roo.log('setfrom data?');
33339          
33340         
33341         
33342     },
33343     // private
33344     reset : function(){
33345         this.clearValue();
33346     },
33347     // private
33348     findRecord : function(prop, value){
33349         
33350         return false;
33351     
33352         var record;
33353         if(this.store.getCount() > 0){
33354             this.store.each(function(r){
33355                 if(r.data[prop] == value){
33356                     record = r;
33357                     return false;
33358                 }
33359                 return true;
33360             });
33361         }
33362         return record;
33363     },
33364     
33365     getName: function()
33366     {
33367         // returns hidden if it's set..
33368         if (!this.rendered) {return ''};
33369         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
33370         
33371     },
33372      
33373
33374     
33375
33376     // private
33377     onEmptyResults : function(){
33378         Roo.log('empty results');
33379         //this.collapse();
33380     },
33381
33382     /**
33383      * Returns true if the dropdown list is expanded, else false.
33384      */
33385     isExpanded : function(){
33386         return false;
33387     },
33388
33389     /**
33390      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
33391      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
33392      * @param {String} value The data value of the item to select
33393      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
33394      * selected item if it is not currently in view (defaults to true)
33395      * @return {Boolean} True if the value matched an item in the list, else false
33396      */
33397     selectByValue : function(v, scrollIntoView){
33398         Roo.log('select By Value');
33399         return false;
33400     
33401         if(v !== undefined && v !== null){
33402             var r = this.findRecord(this.valueField || this.displayField, v);
33403             if(r){
33404                 this.select(this.store.indexOf(r), scrollIntoView);
33405                 return true;
33406             }
33407         }
33408         return false;
33409     },
33410
33411     /**
33412      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
33413      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
33414      * @param {Number} index The zero-based index of the list item to select
33415      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
33416      * selected item if it is not currently in view (defaults to true)
33417      */
33418     select : function(index, scrollIntoView){
33419         Roo.log('select ');
33420         return  ;
33421         
33422         this.selectedIndex = index;
33423         this.view.select(index);
33424         if(scrollIntoView !== false){
33425             var el = this.view.getNode(index);
33426             if(el){
33427                 this.innerList.scrollChildIntoView(el, false);
33428             }
33429         }
33430     },
33431
33432       
33433
33434     // private
33435     validateBlur : function(){
33436         
33437         return;
33438         
33439     },
33440
33441     // private
33442     initQuery : function(){
33443         this.doQuery(this.getRawValue());
33444     },
33445
33446     // private
33447     doForce : function(){
33448         if(this.el.dom.value.length > 0){
33449             this.el.dom.value =
33450                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
33451              
33452         }
33453     },
33454
33455     /**
33456      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
33457      * query allowing the query action to be canceled if needed.
33458      * @param {String} query The SQL query to execute
33459      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
33460      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
33461      * saved in the current store (defaults to false)
33462      */
33463     doQuery : function(q, forceAll){
33464         
33465         Roo.log('doQuery?');
33466         if(q === undefined || q === null){
33467             q = '';
33468         }
33469         var qe = {
33470             query: q,
33471             forceAll: forceAll,
33472             combo: this,
33473             cancel:false
33474         };
33475         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
33476             return false;
33477         }
33478         q = qe.query;
33479         forceAll = qe.forceAll;
33480         if(forceAll === true || (q.length >= this.minChars)){
33481             if(this.lastQuery != q || this.alwaysQuery){
33482                 this.lastQuery = q;
33483                 if(this.mode == 'local'){
33484                     this.selectedIndex = -1;
33485                     if(forceAll){
33486                         this.store.clearFilter();
33487                     }else{
33488                         this.store.filter(this.displayField, q);
33489                     }
33490                     this.onLoad();
33491                 }else{
33492                     this.store.baseParams[this.queryParam] = q;
33493                     this.store.load({
33494                         params: this.getParams(q)
33495                     });
33496                     this.expand();
33497                 }
33498             }else{
33499                 this.selectedIndex = -1;
33500                 this.onLoad();   
33501             }
33502         }
33503     },
33504
33505     // private
33506     getParams : function(q){
33507         var p = {};
33508         //p[this.queryParam] = q;
33509         if(this.pageSize){
33510             p.start = 0;
33511             p.limit = this.pageSize;
33512         }
33513         return p;
33514     },
33515
33516     /**
33517      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
33518      */
33519     collapse : function(){
33520         
33521     },
33522
33523     // private
33524     collapseIf : function(e){
33525         
33526     },
33527
33528     /**
33529      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
33530      */
33531     expand : function(){
33532         
33533     } ,
33534
33535     // private
33536      
33537
33538     /** 
33539     * @cfg {Boolean} grow 
33540     * @hide 
33541     */
33542     /** 
33543     * @cfg {Number} growMin 
33544     * @hide 
33545     */
33546     /** 
33547     * @cfg {Number} growMax 
33548     * @hide 
33549     */
33550     /**
33551      * @hide
33552      * @method autoSize
33553      */
33554     
33555     setWidth : function()
33556     {
33557         
33558     },
33559     getResizeEl : function(){
33560         return this.el;
33561     }
33562 });//<script type="text/javasscript">
33563  
33564
33565 /**
33566  * @class Roo.DDView
33567  * A DnD enabled version of Roo.View.
33568  * @param {Element/String} container The Element in which to create the View.
33569  * @param {String} tpl The template string used to create the markup for each element of the View
33570  * @param {Object} config The configuration properties. These include all the config options of
33571  * {@link Roo.View} plus some specific to this class.<br>
33572  * <p>
33573  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
33574  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
33575  * <p>
33576  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
33577 .x-view-drag-insert-above {
33578         border-top:1px dotted #3366cc;
33579 }
33580 .x-view-drag-insert-below {
33581         border-bottom:1px dotted #3366cc;
33582 }
33583 </code></pre>
33584  * 
33585  */
33586  
33587 Roo.DDView = function(container, tpl, config) {
33588     Roo.DDView.superclass.constructor.apply(this, arguments);
33589     this.getEl().setStyle("outline", "0px none");
33590     this.getEl().unselectable();
33591     if (this.dragGroup) {
33592         this.setDraggable(this.dragGroup.split(","));
33593     }
33594     if (this.dropGroup) {
33595         this.setDroppable(this.dropGroup.split(","));
33596     }
33597     if (this.deletable) {
33598         this.setDeletable();
33599     }
33600     this.isDirtyFlag = false;
33601         this.addEvents({
33602                 "drop" : true
33603         });
33604 };
33605
33606 Roo.extend(Roo.DDView, Roo.View, {
33607 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
33608 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
33609 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
33610 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
33611
33612         isFormField: true,
33613
33614         reset: Roo.emptyFn,
33615         
33616         clearInvalid: Roo.form.Field.prototype.clearInvalid,
33617
33618         validate: function() {
33619                 return true;
33620         },
33621         
33622         destroy: function() {
33623                 this.purgeListeners();
33624                 this.getEl.removeAllListeners();
33625                 this.getEl().remove();
33626                 if (this.dragZone) {
33627                         if (this.dragZone.destroy) {
33628                                 this.dragZone.destroy();
33629                         }
33630                 }
33631                 if (this.dropZone) {
33632                         if (this.dropZone.destroy) {
33633                                 this.dropZone.destroy();
33634                         }
33635                 }
33636         },
33637
33638 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
33639         getName: function() {
33640                 return this.name;
33641         },
33642
33643 /**     Loads the View from a JSON string representing the Records to put into the Store. */
33644         setValue: function(v) {
33645                 if (!this.store) {
33646                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
33647                 }
33648                 var data = {};
33649                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
33650                 this.store.proxy = new Roo.data.MemoryProxy(data);
33651                 this.store.load();
33652         },
33653
33654 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
33655         getValue: function() {
33656                 var result = '(';
33657                 this.store.each(function(rec) {
33658                         result += rec.id + ',';
33659                 });
33660                 return result.substr(0, result.length - 1) + ')';
33661         },
33662         
33663         getIds: function() {
33664                 var i = 0, result = new Array(this.store.getCount());
33665                 this.store.each(function(rec) {
33666                         result[i++] = rec.id;
33667                 });
33668                 return result;
33669         },
33670         
33671         isDirty: function() {
33672                 return this.isDirtyFlag;
33673         },
33674
33675 /**
33676  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
33677  *      whole Element becomes the target, and this causes the drop gesture to append.
33678  */
33679     getTargetFromEvent : function(e) {
33680                 var target = e.getTarget();
33681                 while ((target !== null) && (target.parentNode != this.el.dom)) {
33682                 target = target.parentNode;
33683                 }
33684                 if (!target) {
33685                         target = this.el.dom.lastChild || this.el.dom;
33686                 }
33687                 return target;
33688     },
33689
33690 /**
33691  *      Create the drag data which consists of an object which has the property "ddel" as
33692  *      the drag proxy element. 
33693  */
33694     getDragData : function(e) {
33695         var target = this.findItemFromChild(e.getTarget());
33696                 if(target) {
33697                         this.handleSelection(e);
33698                         var selNodes = this.getSelectedNodes();
33699             var dragData = {
33700                 source: this,
33701                 copy: this.copy || (this.allowCopy && e.ctrlKey),
33702                 nodes: selNodes,
33703                 records: []
33704                         };
33705                         var selectedIndices = this.getSelectedIndexes();
33706                         for (var i = 0; i < selectedIndices.length; i++) {
33707                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
33708                         }
33709                         if (selNodes.length == 1) {
33710                                 dragData.ddel = target.cloneNode(true); // the div element
33711                         } else {
33712                                 var div = document.createElement('div'); // create the multi element drag "ghost"
33713                                 div.className = 'multi-proxy';
33714                                 for (var i = 0, len = selNodes.length; i < len; i++) {
33715                                         div.appendChild(selNodes[i].cloneNode(true));
33716                                 }
33717                                 dragData.ddel = div;
33718                         }
33719             //console.log(dragData)
33720             //console.log(dragData.ddel.innerHTML)
33721                         return dragData;
33722                 }
33723         //console.log('nodragData')
33724                 return false;
33725     },
33726     
33727 /**     Specify to which ddGroup items in this DDView may be dragged. */
33728     setDraggable: function(ddGroup) {
33729         if (ddGroup instanceof Array) {
33730                 Roo.each(ddGroup, this.setDraggable, this);
33731                 return;
33732         }
33733         if (this.dragZone) {
33734                 this.dragZone.addToGroup(ddGroup);
33735         } else {
33736                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
33737                                 containerScroll: true,
33738                                 ddGroup: ddGroup 
33739
33740                         });
33741 //                      Draggability implies selection. DragZone's mousedown selects the element.
33742                         if (!this.multiSelect) { this.singleSelect = true; }
33743
33744 //                      Wire the DragZone's handlers up to methods in *this*
33745                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
33746                 }
33747     },
33748
33749 /**     Specify from which ddGroup this DDView accepts drops. */
33750     setDroppable: function(ddGroup) {
33751         if (ddGroup instanceof Array) {
33752                 Roo.each(ddGroup, this.setDroppable, this);
33753                 return;
33754         }
33755         if (this.dropZone) {
33756                 this.dropZone.addToGroup(ddGroup);
33757         } else {
33758                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
33759                                 containerScroll: true,
33760                                 ddGroup: ddGroup
33761                         });
33762
33763 //                      Wire the DropZone's handlers up to methods in *this*
33764                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
33765                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
33766                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
33767                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
33768                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
33769                 }
33770     },
33771
33772 /**     Decide whether to drop above or below a View node. */
33773     getDropPoint : function(e, n, dd){
33774         if (n == this.el.dom) { return "above"; }
33775                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
33776                 var c = t + (b - t) / 2;
33777                 var y = Roo.lib.Event.getPageY(e);
33778                 if(y <= c) {
33779                         return "above";
33780                 }else{
33781                         return "below";
33782                 }
33783     },
33784
33785     onNodeEnter : function(n, dd, e, data){
33786                 return false;
33787     },
33788     
33789     onNodeOver : function(n, dd, e, data){
33790                 var pt = this.getDropPoint(e, n, dd);
33791                 // set the insert point style on the target node
33792                 var dragElClass = this.dropNotAllowed;
33793                 if (pt) {
33794                         var targetElClass;
33795                         if (pt == "above"){
33796                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
33797                                 targetElClass = "x-view-drag-insert-above";
33798                         } else {
33799                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
33800                                 targetElClass = "x-view-drag-insert-below";
33801                         }
33802                         if (this.lastInsertClass != targetElClass){
33803                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
33804                                 this.lastInsertClass = targetElClass;
33805                         }
33806                 }
33807                 return dragElClass;
33808         },
33809
33810     onNodeOut : function(n, dd, e, data){
33811                 this.removeDropIndicators(n);
33812     },
33813
33814     onNodeDrop : function(n, dd, e, data){
33815         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
33816                 return false;
33817         }
33818         var pt = this.getDropPoint(e, n, dd);
33819                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
33820                 if (pt == "below") { insertAt++; }
33821                 for (var i = 0; i < data.records.length; i++) {
33822                         var r = data.records[i];
33823                         var dup = this.store.getById(r.id);
33824                         if (dup && (dd != this.dragZone)) {
33825                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
33826                         } else {
33827                                 if (data.copy) {
33828                                         this.store.insert(insertAt++, r.copy());
33829                                 } else {
33830                                         data.source.isDirtyFlag = true;
33831                                         r.store.remove(r);
33832                                         this.store.insert(insertAt++, r);
33833                                 }
33834                                 this.isDirtyFlag = true;
33835                         }
33836                 }
33837                 this.dragZone.cachedTarget = null;
33838                 return true;
33839     },
33840
33841     removeDropIndicators : function(n){
33842                 if(n){
33843                         Roo.fly(n).removeClass([
33844                                 "x-view-drag-insert-above",
33845                                 "x-view-drag-insert-below"]);
33846                         this.lastInsertClass = "_noclass";
33847                 }
33848     },
33849
33850 /**
33851  *      Utility method. Add a delete option to the DDView's context menu.
33852  *      @param {String} imageUrl The URL of the "delete" icon image.
33853  */
33854         setDeletable: function(imageUrl) {
33855                 if (!this.singleSelect && !this.multiSelect) {
33856                         this.singleSelect = true;
33857                 }
33858                 var c = this.getContextMenu();
33859                 this.contextMenu.on("itemclick", function(item) {
33860                         switch (item.id) {
33861                                 case "delete":
33862                                         this.remove(this.getSelectedIndexes());
33863                                         break;
33864                         }
33865                 }, this);
33866                 this.contextMenu.add({
33867                         icon: imageUrl,
33868                         id: "delete",
33869                         text: 'Delete'
33870                 });
33871         },
33872         
33873 /**     Return the context menu for this DDView. */
33874         getContextMenu: function() {
33875                 if (!this.contextMenu) {
33876 //                      Create the View's context menu
33877                         this.contextMenu = new Roo.menu.Menu({
33878                                 id: this.id + "-contextmenu"
33879                         });
33880                         this.el.on("contextmenu", this.showContextMenu, this);
33881                 }
33882                 return this.contextMenu;
33883         },
33884         
33885         disableContextMenu: function() {
33886                 if (this.contextMenu) {
33887                         this.el.un("contextmenu", this.showContextMenu, this);
33888                 }
33889         },
33890
33891         showContextMenu: function(e, item) {
33892         item = this.findItemFromChild(e.getTarget());
33893                 if (item) {
33894                         e.stopEvent();
33895                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
33896                         this.contextMenu.showAt(e.getXY());
33897             }
33898     },
33899
33900 /**
33901  *      Remove {@link Roo.data.Record}s at the specified indices.
33902  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
33903  */
33904     remove: function(selectedIndices) {
33905                 selectedIndices = [].concat(selectedIndices);
33906                 for (var i = 0; i < selectedIndices.length; i++) {
33907                         var rec = this.store.getAt(selectedIndices[i]);
33908                         this.store.remove(rec);
33909                 }
33910     },
33911
33912 /**
33913  *      Double click fires the event, but also, if this is draggable, and there is only one other
33914  *      related DropZone, it transfers the selected node.
33915  */
33916     onDblClick : function(e){
33917         var item = this.findItemFromChild(e.getTarget());
33918         if(item){
33919             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
33920                 return false;
33921             }
33922             if (this.dragGroup) {
33923                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
33924                     while (targets.indexOf(this.dropZone) > -1) {
33925                             targets.remove(this.dropZone);
33926                                 }
33927                     if (targets.length == 1) {
33928                                         this.dragZone.cachedTarget = null;
33929                         var el = Roo.get(targets[0].getEl());
33930                         var box = el.getBox(true);
33931                         targets[0].onNodeDrop(el.dom, {
33932                                 target: el.dom,
33933                                 xy: [box.x, box.y + box.height - 1]
33934                         }, null, this.getDragData(e));
33935                     }
33936                 }
33937         }
33938     },
33939     
33940     handleSelection: function(e) {
33941                 this.dragZone.cachedTarget = null;
33942         var item = this.findItemFromChild(e.getTarget());
33943         if (!item) {
33944                 this.clearSelections(true);
33945                 return;
33946         }
33947                 if (item && (this.multiSelect || this.singleSelect)){
33948                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
33949                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
33950                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
33951                                 this.unselect(item);
33952                         } else {
33953                                 this.select(item, this.multiSelect && e.ctrlKey);
33954                                 this.lastSelection = item;
33955                         }
33956                 }
33957     },
33958
33959     onItemClick : function(item, index, e){
33960                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
33961                         return false;
33962                 }
33963                 return true;
33964     },
33965
33966     unselect : function(nodeInfo, suppressEvent){
33967                 var node = this.getNode(nodeInfo);
33968                 if(node && this.isSelected(node)){
33969                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
33970                                 Roo.fly(node).removeClass(this.selectedClass);
33971                                 this.selections.remove(node);
33972                                 if(!suppressEvent){
33973                                         this.fireEvent("selectionchange", this, this.selections);
33974                                 }
33975                         }
33976                 }
33977     }
33978 });
33979 /*
33980  * Based on:
33981  * Ext JS Library 1.1.1
33982  * Copyright(c) 2006-2007, Ext JS, LLC.
33983  *
33984  * Originally Released Under LGPL - original licence link has changed is not relivant.
33985  *
33986  * Fork - LGPL
33987  * <script type="text/javascript">
33988  */
33989  
33990 /**
33991  * @class Roo.LayoutManager
33992  * @extends Roo.util.Observable
33993  * Base class for layout managers.
33994  */
33995 Roo.LayoutManager = function(container, config){
33996     Roo.LayoutManager.superclass.constructor.call(this);
33997     this.el = Roo.get(container);
33998     // ie scrollbar fix
33999     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
34000         document.body.scroll = "no";
34001     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
34002         this.el.position('relative');
34003     }
34004     this.id = this.el.id;
34005     this.el.addClass("x-layout-container");
34006     /** false to disable window resize monitoring @type Boolean */
34007     this.monitorWindowResize = true;
34008     this.regions = {};
34009     this.addEvents({
34010         /**
34011          * @event layout
34012          * Fires when a layout is performed. 
34013          * @param {Roo.LayoutManager} this
34014          */
34015         "layout" : true,
34016         /**
34017          * @event regionresized
34018          * Fires when the user resizes a region. 
34019          * @param {Roo.LayoutRegion} region The resized region
34020          * @param {Number} newSize The new size (width for east/west, height for north/south)
34021          */
34022         "regionresized" : true,
34023         /**
34024          * @event regioncollapsed
34025          * Fires when a region is collapsed. 
34026          * @param {Roo.LayoutRegion} region The collapsed region
34027          */
34028         "regioncollapsed" : true,
34029         /**
34030          * @event regionexpanded
34031          * Fires when a region is expanded.  
34032          * @param {Roo.LayoutRegion} region The expanded region
34033          */
34034         "regionexpanded" : true
34035     });
34036     this.updating = false;
34037     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
34038 };
34039
34040 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
34041     /**
34042      * Returns true if this layout is currently being updated
34043      * @return {Boolean}
34044      */
34045     isUpdating : function(){
34046         return this.updating; 
34047     },
34048     
34049     /**
34050      * Suspend the LayoutManager from doing auto-layouts while
34051      * making multiple add or remove calls
34052      */
34053     beginUpdate : function(){
34054         this.updating = true;    
34055     },
34056     
34057     /**
34058      * Restore auto-layouts and optionally disable the manager from performing a layout
34059      * @param {Boolean} noLayout true to disable a layout update 
34060      */
34061     endUpdate : function(noLayout){
34062         this.updating = false;
34063         if(!noLayout){
34064             this.layout();
34065         }    
34066     },
34067     
34068     layout: function(){
34069         
34070     },
34071     
34072     onRegionResized : function(region, newSize){
34073         this.fireEvent("regionresized", region, newSize);
34074         this.layout();
34075     },
34076     
34077     onRegionCollapsed : function(region){
34078         this.fireEvent("regioncollapsed", region);
34079     },
34080     
34081     onRegionExpanded : function(region){
34082         this.fireEvent("regionexpanded", region);
34083     },
34084         
34085     /**
34086      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
34087      * performs box-model adjustments.
34088      * @return {Object} The size as an object {width: (the width), height: (the height)}
34089      */
34090     getViewSize : function(){
34091         var size;
34092         if(this.el.dom != document.body){
34093             size = this.el.getSize();
34094         }else{
34095             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
34096         }
34097         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
34098         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
34099         return size;
34100     },
34101     
34102     /**
34103      * Returns the Element this layout is bound to.
34104      * @return {Roo.Element}
34105      */
34106     getEl : function(){
34107         return this.el;
34108     },
34109     
34110     /**
34111      * Returns the specified region.
34112      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
34113      * @return {Roo.LayoutRegion}
34114      */
34115     getRegion : function(target){
34116         return this.regions[target.toLowerCase()];
34117     },
34118     
34119     onWindowResize : function(){
34120         if(this.monitorWindowResize){
34121             this.layout();
34122         }
34123     }
34124 });/*
34125  * Based on:
34126  * Ext JS Library 1.1.1
34127  * Copyright(c) 2006-2007, Ext JS, LLC.
34128  *
34129  * Originally Released Under LGPL - original licence link has changed is not relivant.
34130  *
34131  * Fork - LGPL
34132  * <script type="text/javascript">
34133  */
34134 /**
34135  * @class Roo.BorderLayout
34136  * @extends Roo.LayoutManager
34137  * @children Roo.ContentPanel
34138  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
34139  * please see: <br><br>
34140  * <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>
34141  * <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>
34142  * Example:
34143  <pre><code>
34144  var layout = new Roo.BorderLayout(document.body, {
34145     north: {
34146         initialSize: 25,
34147         titlebar: false
34148     },
34149     west: {
34150         split:true,
34151         initialSize: 200,
34152         minSize: 175,
34153         maxSize: 400,
34154         titlebar: true,
34155         collapsible: true
34156     },
34157     east: {
34158         split:true,
34159         initialSize: 202,
34160         minSize: 175,
34161         maxSize: 400,
34162         titlebar: true,
34163         collapsible: true
34164     },
34165     south: {
34166         split:true,
34167         initialSize: 100,
34168         minSize: 100,
34169         maxSize: 200,
34170         titlebar: true,
34171         collapsible: true
34172     },
34173     center: {
34174         titlebar: true,
34175         autoScroll:true,
34176         resizeTabs: true,
34177         minTabWidth: 50,
34178         preferredTabWidth: 150
34179     }
34180 });
34181
34182 // shorthand
34183 var CP = Roo.ContentPanel;
34184
34185 layout.beginUpdate();
34186 layout.add("north", new CP("north", "North"));
34187 layout.add("south", new CP("south", {title: "South", closable: true}));
34188 layout.add("west", new CP("west", {title: "West"}));
34189 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
34190 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
34191 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
34192 layout.getRegion("center").showPanel("center1");
34193 layout.endUpdate();
34194 </code></pre>
34195
34196 <b>The container the layout is rendered into can be either the body element or any other element.
34197 If it is not the body element, the container needs to either be an absolute positioned element,
34198 or you will need to add "position:relative" to the css of the container.  You will also need to specify
34199 the container size if it is not the body element.</b>
34200
34201 * @constructor
34202 * Create a new BorderLayout
34203 * @param {String/HTMLElement/Element} container The container this layout is bound to
34204 * @param {Object} config Configuration options
34205  */
34206 Roo.BorderLayout = function(container, config){
34207     config = config || {};
34208     Roo.BorderLayout.superclass.constructor.call(this, container, config);
34209     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
34210     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
34211         var target = this.factory.validRegions[i];
34212         if(config[target]){
34213             this.addRegion(target, config[target]);
34214         }
34215     }
34216 };
34217
34218 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
34219         
34220         /**
34221          * @cfg {Roo.LayoutRegion} east
34222          */
34223         /**
34224          * @cfg {Roo.LayoutRegion} west
34225          */
34226         /**
34227          * @cfg {Roo.LayoutRegion} north
34228          */
34229         /**
34230          * @cfg {Roo.LayoutRegion} south
34231          */
34232         /**
34233          * @cfg {Roo.LayoutRegion} center
34234          */
34235     /**
34236      * Creates and adds a new region if it doesn't already exist.
34237      * @param {String} target The target region key (north, south, east, west or center).
34238      * @param {Object} config The regions config object
34239      * @return {BorderLayoutRegion} The new region
34240      */
34241     addRegion : function(target, config){
34242         if(!this.regions[target]){
34243             var r = this.factory.create(target, this, config);
34244             this.bindRegion(target, r);
34245         }
34246         return this.regions[target];
34247     },
34248
34249     // private (kinda)
34250     bindRegion : function(name, r){
34251         this.regions[name] = r;
34252         r.on("visibilitychange", this.layout, this);
34253         r.on("paneladded", this.layout, this);
34254         r.on("panelremoved", this.layout, this);
34255         r.on("invalidated", this.layout, this);
34256         r.on("resized", this.onRegionResized, this);
34257         r.on("collapsed", this.onRegionCollapsed, this);
34258         r.on("expanded", this.onRegionExpanded, this);
34259     },
34260
34261     /**
34262      * Performs a layout update.
34263      */
34264     layout : function(){
34265         if(this.updating) {
34266             return;
34267         }
34268         var size = this.getViewSize();
34269         var w = size.width;
34270         var h = size.height;
34271         var centerW = w;
34272         var centerH = h;
34273         var centerY = 0;
34274         var centerX = 0;
34275         //var x = 0, y = 0;
34276
34277         var rs = this.regions;
34278         var north = rs["north"];
34279         var south = rs["south"]; 
34280         var west = rs["west"];
34281         var east = rs["east"];
34282         var center = rs["center"];
34283         //if(this.hideOnLayout){ // not supported anymore
34284             //c.el.setStyle("display", "none");
34285         //}
34286         if(north && north.isVisible()){
34287             var b = north.getBox();
34288             var m = north.getMargins();
34289             b.width = w - (m.left+m.right);
34290             b.x = m.left;
34291             b.y = m.top;
34292             centerY = b.height + b.y + m.bottom;
34293             centerH -= centerY;
34294             north.updateBox(this.safeBox(b));
34295         }
34296         if(south && south.isVisible()){
34297             var b = south.getBox();
34298             var m = south.getMargins();
34299             b.width = w - (m.left+m.right);
34300             b.x = m.left;
34301             var totalHeight = (b.height + m.top + m.bottom);
34302             b.y = h - totalHeight + m.top;
34303             centerH -= totalHeight;
34304             south.updateBox(this.safeBox(b));
34305         }
34306         if(west && west.isVisible()){
34307             var b = west.getBox();
34308             var m = west.getMargins();
34309             b.height = centerH - (m.top+m.bottom);
34310             b.x = m.left;
34311             b.y = centerY + m.top;
34312             var totalWidth = (b.width + m.left + m.right);
34313             centerX += totalWidth;
34314             centerW -= totalWidth;
34315             west.updateBox(this.safeBox(b));
34316         }
34317         if(east && east.isVisible()){
34318             var b = east.getBox();
34319             var m = east.getMargins();
34320             b.height = centerH - (m.top+m.bottom);
34321             var totalWidth = (b.width + m.left + m.right);
34322             b.x = w - totalWidth + m.left;
34323             b.y = centerY + m.top;
34324             centerW -= totalWidth;
34325             east.updateBox(this.safeBox(b));
34326         }
34327         if(center){
34328             var m = center.getMargins();
34329             var centerBox = {
34330                 x: centerX + m.left,
34331                 y: centerY + m.top,
34332                 width: centerW - (m.left+m.right),
34333                 height: centerH - (m.top+m.bottom)
34334             };
34335             //if(this.hideOnLayout){
34336                 //center.el.setStyle("display", "block");
34337             //}
34338             center.updateBox(this.safeBox(centerBox));
34339         }
34340         this.el.repaint();
34341         this.fireEvent("layout", this);
34342     },
34343
34344     // private
34345     safeBox : function(box){
34346         box.width = Math.max(0, box.width);
34347         box.height = Math.max(0, box.height);
34348         return box;
34349     },
34350
34351     /**
34352      * Adds a ContentPanel (or subclass) to this layout.
34353      * @param {String} target The target region key (north, south, east, west or center).
34354      * @param {Roo.ContentPanel} panel The panel to add
34355      * @return {Roo.ContentPanel} The added panel
34356      */
34357     add : function(target, panel){
34358          
34359         target = target.toLowerCase();
34360         return this.regions[target].add(panel);
34361     },
34362
34363     /**
34364      * Remove a ContentPanel (or subclass) to this layout.
34365      * @param {String} target The target region key (north, south, east, west or center).
34366      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
34367      * @return {Roo.ContentPanel} The removed panel
34368      */
34369     remove : function(target, panel){
34370         target = target.toLowerCase();
34371         return this.regions[target].remove(panel);
34372     },
34373
34374     /**
34375      * Searches all regions for a panel with the specified id
34376      * @param {String} panelId
34377      * @return {Roo.ContentPanel} The panel or null if it wasn't found
34378      */
34379     findPanel : function(panelId){
34380         var rs = this.regions;
34381         for(var target in rs){
34382             if(typeof rs[target] != "function"){
34383                 var p = rs[target].getPanel(panelId);
34384                 if(p){
34385                     return p;
34386                 }
34387             }
34388         }
34389         return null;
34390     },
34391
34392     /**
34393      * Searches all regions for a panel with the specified id and activates (shows) it.
34394      * @param {String/ContentPanel} panelId The panels id or the panel itself
34395      * @return {Roo.ContentPanel} The shown panel or null
34396      */
34397     showPanel : function(panelId) {
34398       var rs = this.regions;
34399       for(var target in rs){
34400          var r = rs[target];
34401          if(typeof r != "function"){
34402             if(r.hasPanel(panelId)){
34403                return r.showPanel(panelId);
34404             }
34405          }
34406       }
34407       return null;
34408    },
34409
34410    /**
34411      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
34412      * @param {Roo.state.Provider} provider (optional) An alternate state provider
34413      */
34414     restoreState : function(provider){
34415         if(!provider){
34416             provider = Roo.state.Manager;
34417         }
34418         var sm = new Roo.LayoutStateManager();
34419         sm.init(this, provider);
34420     },
34421
34422     /**
34423      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
34424      * object should contain properties for each region to add ContentPanels to, and each property's value should be
34425      * a valid ContentPanel config object.  Example:
34426      * <pre><code>
34427 // Create the main layout
34428 var layout = new Roo.BorderLayout('main-ct', {
34429     west: {
34430         split:true,
34431         minSize: 175,
34432         titlebar: true
34433     },
34434     center: {
34435         title:'Components'
34436     }
34437 }, 'main-ct');
34438
34439 // Create and add multiple ContentPanels at once via configs
34440 layout.batchAdd({
34441    west: {
34442        id: 'source-files',
34443        autoCreate:true,
34444        title:'Ext Source Files',
34445        autoScroll:true,
34446        fitToFrame:true
34447    },
34448    center : {
34449        el: cview,
34450        autoScroll:true,
34451        fitToFrame:true,
34452        toolbar: tb,
34453        resizeEl:'cbody'
34454    }
34455 });
34456 </code></pre>
34457      * @param {Object} regions An object containing ContentPanel configs by region name
34458      */
34459     batchAdd : function(regions){
34460         this.beginUpdate();
34461         for(var rname in regions){
34462             var lr = this.regions[rname];
34463             if(lr){
34464                 this.addTypedPanels(lr, regions[rname]);
34465             }
34466         }
34467         this.endUpdate();
34468     },
34469
34470     // private
34471     addTypedPanels : function(lr, ps){
34472         if(typeof ps == 'string'){
34473             lr.add(new Roo.ContentPanel(ps));
34474         }
34475         else if(ps instanceof Array){
34476             for(var i =0, len = ps.length; i < len; i++){
34477                 this.addTypedPanels(lr, ps[i]);
34478             }
34479         }
34480         else if(!ps.events){ // raw config?
34481             var el = ps.el;
34482             delete ps.el; // prevent conflict
34483             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
34484         }
34485         else {  // panel object assumed!
34486             lr.add(ps);
34487         }
34488     },
34489     /**
34490      * Adds a xtype elements to the layout.
34491      * <pre><code>
34492
34493 layout.addxtype({
34494        xtype : 'ContentPanel',
34495        region: 'west',
34496        items: [ .... ]
34497    }
34498 );
34499
34500 layout.addxtype({
34501         xtype : 'NestedLayoutPanel',
34502         region: 'west',
34503         layout: {
34504            center: { },
34505            west: { }   
34506         },
34507         items : [ ... list of content panels or nested layout panels.. ]
34508    }
34509 );
34510 </code></pre>
34511      * @param {Object} cfg Xtype definition of item to add.
34512      */
34513     addxtype : function(cfg)
34514     {
34515         // basically accepts a pannel...
34516         // can accept a layout region..!?!?
34517         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
34518         
34519         if (!cfg.xtype.match(/Panel$/)) {
34520             return false;
34521         }
34522         var ret = false;
34523         
34524         if (typeof(cfg.region) == 'undefined') {
34525             Roo.log("Failed to add Panel, region was not set");
34526             Roo.log(cfg);
34527             return false;
34528         }
34529         var region = cfg.region;
34530         delete cfg.region;
34531         
34532           
34533         var xitems = [];
34534         if (cfg.items) {
34535             xitems = cfg.items;
34536             delete cfg.items;
34537         }
34538         var nb = false;
34539         
34540         switch(cfg.xtype) 
34541         {
34542             case 'ContentPanel':  // ContentPanel (el, cfg)
34543             case 'ScrollPanel':  // ContentPanel (el, cfg)
34544             case 'ViewPanel': 
34545                 if(cfg.autoCreate) {
34546                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
34547                 } else {
34548                     var el = this.el.createChild();
34549                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
34550                 }
34551                 
34552                 this.add(region, ret);
34553                 break;
34554             
34555             
34556             case 'TreePanel': // our new panel!
34557                 cfg.el = this.el.createChild();
34558                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
34559                 this.add(region, ret);
34560                 break;
34561             
34562             case 'NestedLayoutPanel': 
34563                 // create a new Layout (which is  a Border Layout...
34564                 var el = this.el.createChild();
34565                 var clayout = cfg.layout;
34566                 delete cfg.layout;
34567                 clayout.items   = clayout.items  || [];
34568                 // replace this exitems with the clayout ones..
34569                 xitems = clayout.items;
34570                  
34571                 
34572                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
34573                     cfg.background = false;
34574                 }
34575                 var layout = new Roo.BorderLayout(el, clayout);
34576                 
34577                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
34578                 //console.log('adding nested layout panel '  + cfg.toSource());
34579                 this.add(region, ret);
34580                 nb = {}; /// find first...
34581                 break;
34582                 
34583             case 'GridPanel': 
34584             
34585                 // needs grid and region
34586                 
34587                 //var el = this.getRegion(region).el.createChild();
34588                 var el = this.el.createChild();
34589                 // create the grid first...
34590                 
34591                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
34592                 delete cfg.grid;
34593                 if (region == 'center' && this.active ) {
34594                     cfg.background = false;
34595                 }
34596                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
34597                 
34598                 this.add(region, ret);
34599                 if (cfg.background) {
34600                     ret.on('activate', function(gp) {
34601                         if (!gp.grid.rendered) {
34602                             gp.grid.render();
34603                         }
34604                     });
34605                 } else {
34606                     grid.render();
34607                 }
34608                 break;
34609            
34610            
34611            
34612                 
34613                 
34614                 
34615             default:
34616                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
34617                     
34618                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
34619                     this.add(region, ret);
34620                 } else {
34621                 
34622                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
34623                     return null;
34624                 }
34625                 
34626              // GridPanel (grid, cfg)
34627             
34628         }
34629         this.beginUpdate();
34630         // add children..
34631         var region = '';
34632         var abn = {};
34633         Roo.each(xitems, function(i)  {
34634             region = nb && i.region ? i.region : false;
34635             
34636             var add = ret.addxtype(i);
34637            
34638             if (region) {
34639                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
34640                 if (!i.background) {
34641                     abn[region] = nb[region] ;
34642                 }
34643             }
34644             
34645         });
34646         this.endUpdate();
34647
34648         // make the last non-background panel active..
34649         //if (nb) { Roo.log(abn); }
34650         if (nb) {
34651             
34652             for(var r in abn) {
34653                 region = this.getRegion(r);
34654                 if (region) {
34655                     // tried using nb[r], but it does not work..
34656                      
34657                     region.showPanel(abn[r]);
34658                    
34659                 }
34660             }
34661         }
34662         return ret;
34663         
34664     }
34665 });
34666
34667 /**
34668  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
34669  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
34670  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
34671  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
34672  * <pre><code>
34673 // shorthand
34674 var CP = Roo.ContentPanel;
34675
34676 var layout = Roo.BorderLayout.create({
34677     north: {
34678         initialSize: 25,
34679         titlebar: false,
34680         panels: [new CP("north", "North")]
34681     },
34682     west: {
34683         split:true,
34684         initialSize: 200,
34685         minSize: 175,
34686         maxSize: 400,
34687         titlebar: true,
34688         collapsible: true,
34689         panels: [new CP("west", {title: "West"})]
34690     },
34691     east: {
34692         split:true,
34693         initialSize: 202,
34694         minSize: 175,
34695         maxSize: 400,
34696         titlebar: true,
34697         collapsible: true,
34698         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
34699     },
34700     south: {
34701         split:true,
34702         initialSize: 100,
34703         minSize: 100,
34704         maxSize: 200,
34705         titlebar: true,
34706         collapsible: true,
34707         panels: [new CP("south", {title: "South", closable: true})]
34708     },
34709     center: {
34710         titlebar: true,
34711         autoScroll:true,
34712         resizeTabs: true,
34713         minTabWidth: 50,
34714         preferredTabWidth: 150,
34715         panels: [
34716             new CP("center1", {title: "Close Me", closable: true}),
34717             new CP("center2", {title: "Center Panel", closable: false})
34718         ]
34719     }
34720 }, document.body);
34721
34722 layout.getRegion("center").showPanel("center1");
34723 </code></pre>
34724  * @param config
34725  * @param targetEl
34726  */
34727 Roo.BorderLayout.create = function(config, targetEl){
34728     var layout = new Roo.BorderLayout(targetEl || document.body, config);
34729     layout.beginUpdate();
34730     var regions = Roo.BorderLayout.RegionFactory.validRegions;
34731     for(var j = 0, jlen = regions.length; j < jlen; j++){
34732         var lr = regions[j];
34733         if(layout.regions[lr] && config[lr].panels){
34734             var r = layout.regions[lr];
34735             var ps = config[lr].panels;
34736             layout.addTypedPanels(r, ps);
34737         }
34738     }
34739     layout.endUpdate();
34740     return layout;
34741 };
34742
34743 // private
34744 Roo.BorderLayout.RegionFactory = {
34745     // private
34746     validRegions : ["north","south","east","west","center"],
34747
34748     // private
34749     create : function(target, mgr, config){
34750         target = target.toLowerCase();
34751         if(config.lightweight || config.basic){
34752             return new Roo.BasicLayoutRegion(mgr, config, target);
34753         }
34754         switch(target){
34755             case "north":
34756                 return new Roo.NorthLayoutRegion(mgr, config);
34757             case "south":
34758                 return new Roo.SouthLayoutRegion(mgr, config);
34759             case "east":
34760                 return new Roo.EastLayoutRegion(mgr, config);
34761             case "west":
34762                 return new Roo.WestLayoutRegion(mgr, config);
34763             case "center":
34764                 return new Roo.CenterLayoutRegion(mgr, config);
34765         }
34766         throw 'Layout region "'+target+'" not supported.';
34767     }
34768 };/*
34769  * Based on:
34770  * Ext JS Library 1.1.1
34771  * Copyright(c) 2006-2007, Ext JS, LLC.
34772  *
34773  * Originally Released Under LGPL - original licence link has changed is not relivant.
34774  *
34775  * Fork - LGPL
34776  * <script type="text/javascript">
34777  */
34778  
34779 /**
34780  * @class Roo.BasicLayoutRegion
34781  * @extends Roo.util.Observable
34782  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
34783  * and does not have a titlebar, tabs or any other features. All it does is size and position 
34784  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
34785  */
34786 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
34787     this.mgr = mgr;
34788     this.position  = pos;
34789     this.events = {
34790         /**
34791          * @scope Roo.BasicLayoutRegion
34792          */
34793         
34794         /**
34795          * @event beforeremove
34796          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
34797          * @param {Roo.LayoutRegion} this
34798          * @param {Roo.ContentPanel} panel The panel
34799          * @param {Object} e The cancel event object
34800          */
34801         "beforeremove" : true,
34802         /**
34803          * @event invalidated
34804          * Fires when the layout for this region is changed.
34805          * @param {Roo.LayoutRegion} this
34806          */
34807         "invalidated" : true,
34808         /**
34809          * @event visibilitychange
34810          * Fires when this region is shown or hidden 
34811          * @param {Roo.LayoutRegion} this
34812          * @param {Boolean} visibility true or false
34813          */
34814         "visibilitychange" : true,
34815         /**
34816          * @event paneladded
34817          * Fires when a panel is added. 
34818          * @param {Roo.LayoutRegion} this
34819          * @param {Roo.ContentPanel} panel The panel
34820          */
34821         "paneladded" : true,
34822         /**
34823          * @event panelremoved
34824          * Fires when a panel is removed. 
34825          * @param {Roo.LayoutRegion} this
34826          * @param {Roo.ContentPanel} panel The panel
34827          */
34828         "panelremoved" : true,
34829         /**
34830          * @event beforecollapse
34831          * Fires when this region before collapse.
34832          * @param {Roo.LayoutRegion} this
34833          */
34834         "beforecollapse" : true,
34835         /**
34836          * @event collapsed
34837          * Fires when this region is collapsed.
34838          * @param {Roo.LayoutRegion} this
34839          */
34840         "collapsed" : true,
34841         /**
34842          * @event expanded
34843          * Fires when this region is expanded.
34844          * @param {Roo.LayoutRegion} this
34845          */
34846         "expanded" : true,
34847         /**
34848          * @event slideshow
34849          * Fires when this region is slid into view.
34850          * @param {Roo.LayoutRegion} this
34851          */
34852         "slideshow" : true,
34853         /**
34854          * @event slidehide
34855          * Fires when this region slides out of view. 
34856          * @param {Roo.LayoutRegion} this
34857          */
34858         "slidehide" : true,
34859         /**
34860          * @event panelactivated
34861          * Fires when a panel is activated. 
34862          * @param {Roo.LayoutRegion} this
34863          * @param {Roo.ContentPanel} panel The activated panel
34864          */
34865         "panelactivated" : true,
34866         /**
34867          * @event resized
34868          * Fires when the user resizes this region. 
34869          * @param {Roo.LayoutRegion} this
34870          * @param {Number} newSize The new size (width for east/west, height for north/south)
34871          */
34872         "resized" : true
34873     };
34874     /** A collection of panels in this region. @type Roo.util.MixedCollection */
34875     this.panels = new Roo.util.MixedCollection();
34876     this.panels.getKey = this.getPanelId.createDelegate(this);
34877     this.box = null;
34878     this.activePanel = null;
34879     // ensure listeners are added...
34880     
34881     if (config.listeners || config.events) {
34882         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
34883             listeners : config.listeners || {},
34884             events : config.events || {}
34885         });
34886     }
34887     
34888     if(skipConfig !== true){
34889         this.applyConfig(config);
34890     }
34891 };
34892
34893 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
34894     getPanelId : function(p){
34895         return p.getId();
34896     },
34897     
34898     applyConfig : function(config){
34899         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
34900         this.config = config;
34901         
34902     },
34903     
34904     /**
34905      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
34906      * the width, for horizontal (north, south) the height.
34907      * @param {Number} newSize The new width or height
34908      */
34909     resizeTo : function(newSize){
34910         var el = this.el ? this.el :
34911                  (this.activePanel ? this.activePanel.getEl() : null);
34912         if(el){
34913             switch(this.position){
34914                 case "east":
34915                 case "west":
34916                     el.setWidth(newSize);
34917                     this.fireEvent("resized", this, newSize);
34918                 break;
34919                 case "north":
34920                 case "south":
34921                     el.setHeight(newSize);
34922                     this.fireEvent("resized", this, newSize);
34923                 break;                
34924             }
34925         }
34926     },
34927     
34928     getBox : function(){
34929         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
34930     },
34931     
34932     getMargins : function(){
34933         return this.margins;
34934     },
34935     
34936     updateBox : function(box){
34937         this.box = box;
34938         var el = this.activePanel.getEl();
34939         el.dom.style.left = box.x + "px";
34940         el.dom.style.top = box.y + "px";
34941         this.activePanel.setSize(box.width, box.height);
34942     },
34943     
34944     /**
34945      * Returns the container element for this region.
34946      * @return {Roo.Element}
34947      */
34948     getEl : function(){
34949         return this.activePanel;
34950     },
34951     
34952     /**
34953      * Returns true if this region is currently visible.
34954      * @return {Boolean}
34955      */
34956     isVisible : function(){
34957         return this.activePanel ? true : false;
34958     },
34959     
34960     setActivePanel : function(panel){
34961         panel = this.getPanel(panel);
34962         if(this.activePanel && this.activePanel != panel){
34963             this.activePanel.setActiveState(false);
34964             this.activePanel.getEl().setLeftTop(-10000,-10000);
34965         }
34966         this.activePanel = panel;
34967         panel.setActiveState(true);
34968         if(this.box){
34969             panel.setSize(this.box.width, this.box.height);
34970         }
34971         this.fireEvent("panelactivated", this, panel);
34972         this.fireEvent("invalidated");
34973     },
34974     
34975     /**
34976      * Show the specified panel.
34977      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
34978      * @return {Roo.ContentPanel} The shown panel or null
34979      */
34980     showPanel : function(panel){
34981         if(panel = this.getPanel(panel)){
34982             this.setActivePanel(panel);
34983         }
34984         return panel;
34985     },
34986     
34987     /**
34988      * Get the active panel for this region.
34989      * @return {Roo.ContentPanel} The active panel or null
34990      */
34991     getActivePanel : function(){
34992         return this.activePanel;
34993     },
34994     
34995     /**
34996      * Add the passed ContentPanel(s)
34997      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
34998      * @return {Roo.ContentPanel} The panel added (if only one was added)
34999      */
35000     add : function(panel){
35001         if(arguments.length > 1){
35002             for(var i = 0, len = arguments.length; i < len; i++) {
35003                 this.add(arguments[i]);
35004             }
35005             return null;
35006         }
35007         if(this.hasPanel(panel)){
35008             this.showPanel(panel);
35009             return panel;
35010         }
35011         var el = panel.getEl();
35012         if(el.dom.parentNode != this.mgr.el.dom){
35013             this.mgr.el.dom.appendChild(el.dom);
35014         }
35015         if(panel.setRegion){
35016             panel.setRegion(this);
35017         }
35018         this.panels.add(panel);
35019         el.setStyle("position", "absolute");
35020         if(!panel.background){
35021             this.setActivePanel(panel);
35022             if(this.config.initialSize && this.panels.getCount()==1){
35023                 this.resizeTo(this.config.initialSize);
35024             }
35025         }
35026         this.fireEvent("paneladded", this, panel);
35027         return panel;
35028     },
35029     
35030     /**
35031      * Returns true if the panel is in this region.
35032      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35033      * @return {Boolean}
35034      */
35035     hasPanel : function(panel){
35036         if(typeof panel == "object"){ // must be panel obj
35037             panel = panel.getId();
35038         }
35039         return this.getPanel(panel) ? true : false;
35040     },
35041     
35042     /**
35043      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35044      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35045      * @param {Boolean} preservePanel Overrides the config preservePanel option
35046      * @return {Roo.ContentPanel} The panel that was removed
35047      */
35048     remove : function(panel, preservePanel){
35049         panel = this.getPanel(panel);
35050         if(!panel){
35051             return null;
35052         }
35053         var e = {};
35054         this.fireEvent("beforeremove", this, panel, e);
35055         if(e.cancel === true){
35056             return null;
35057         }
35058         var panelId = panel.getId();
35059         this.panels.removeKey(panelId);
35060         return panel;
35061     },
35062     
35063     /**
35064      * Returns the panel specified or null if it's not in this region.
35065      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35066      * @return {Roo.ContentPanel}
35067      */
35068     getPanel : function(id){
35069         if(typeof id == "object"){ // must be panel obj
35070             return id;
35071         }
35072         return this.panels.get(id);
35073     },
35074     
35075     /**
35076      * Returns this regions position (north/south/east/west/center).
35077      * @return {String} 
35078      */
35079     getPosition: function(){
35080         return this.position;    
35081     }
35082 });/*
35083  * Based on:
35084  * Ext JS Library 1.1.1
35085  * Copyright(c) 2006-2007, Ext JS, LLC.
35086  *
35087  * Originally Released Under LGPL - original licence link has changed is not relivant.
35088  *
35089  * Fork - LGPL
35090  * <script type="text/javascript">
35091  */
35092  
35093 /**
35094  * @class Roo.LayoutRegion
35095  * @extends Roo.BasicLayoutRegion
35096  * This class represents a region in a layout manager.
35097  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
35098  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
35099  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
35100  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
35101  * @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})
35102  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
35103  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
35104  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
35105  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
35106  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
35107  * @cfg {String}    title           The title for the region (overrides panel titles)
35108  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
35109  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
35110  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
35111  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
35112  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
35113  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
35114  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
35115  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
35116  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
35117  * @cfg {Boolean}   showPin         True to show a pin button
35118  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
35119  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
35120  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
35121  * @cfg {Number}    width           For East/West panels
35122  * @cfg {Number}    height          For North/South panels
35123  * @cfg {Boolean}   split           To show the splitter
35124  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
35125  */
35126 Roo.LayoutRegion = function(mgr, config, pos){
35127     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
35128     var dh = Roo.DomHelper;
35129     /** This region's container element 
35130     * @type Roo.Element */
35131     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
35132     /** This region's title element 
35133     * @type Roo.Element */
35134
35135     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
35136         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
35137         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
35138     ]}, true);
35139     this.titleEl.enableDisplayMode();
35140     /** This region's title text element 
35141     * @type HTMLElement */
35142     this.titleTextEl = this.titleEl.dom.firstChild;
35143     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
35144     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
35145     this.closeBtn.enableDisplayMode();
35146     this.closeBtn.on("click", this.closeClicked, this);
35147     this.closeBtn.hide();
35148
35149     this.createBody(config);
35150     this.visible = true;
35151     this.collapsed = false;
35152
35153     if(config.hideWhenEmpty){
35154         this.hide();
35155         this.on("paneladded", this.validateVisibility, this);
35156         this.on("panelremoved", this.validateVisibility, this);
35157     }
35158     this.applyConfig(config);
35159 };
35160
35161 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
35162
35163     createBody : function(){
35164         /** This region's body element 
35165         * @type Roo.Element */
35166         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
35167     },
35168
35169     applyConfig : function(c){
35170         if(c.collapsible && this.position != "center" && !this.collapsedEl){
35171             var dh = Roo.DomHelper;
35172             if(c.titlebar !== false){
35173                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
35174                 this.collapseBtn.on("click", this.collapse, this);
35175                 this.collapseBtn.enableDisplayMode();
35176
35177                 if(c.showPin === true || this.showPin){
35178                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
35179                     this.stickBtn.enableDisplayMode();
35180                     this.stickBtn.on("click", this.expand, this);
35181                     this.stickBtn.hide();
35182                 }
35183             }
35184             /** This region's collapsed element
35185             * @type Roo.Element */
35186             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
35187                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
35188             ]}, true);
35189             if(c.floatable !== false){
35190                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
35191                this.collapsedEl.on("click", this.collapseClick, this);
35192             }
35193
35194             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
35195                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
35196                    id: "message", unselectable: "on", style:{"float":"left"}});
35197                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
35198              }
35199             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
35200             this.expandBtn.on("click", this.expand, this);
35201         }
35202         if(this.collapseBtn){
35203             this.collapseBtn.setVisible(c.collapsible == true);
35204         }
35205         this.cmargins = c.cmargins || this.cmargins ||
35206                          (this.position == "west" || this.position == "east" ?
35207                              {top: 0, left: 2, right:2, bottom: 0} :
35208                              {top: 2, left: 0, right:0, bottom: 2});
35209         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35210         this.bottomTabs = c.tabPosition != "top";
35211         this.autoScroll = c.autoScroll || false;
35212         if(this.autoScroll){
35213             this.bodyEl.setStyle("overflow", "auto");
35214         }else{
35215             this.bodyEl.setStyle("overflow", "hidden");
35216         }
35217         //if(c.titlebar !== false){
35218             if((!c.titlebar && !c.title) || c.titlebar === false){
35219                 this.titleEl.hide();
35220             }else{
35221                 this.titleEl.show();
35222                 if(c.title){
35223                     this.titleTextEl.innerHTML = c.title;
35224                 }
35225             }
35226         //}
35227         this.duration = c.duration || .30;
35228         this.slideDuration = c.slideDuration || .45;
35229         this.config = c;
35230         if(c.collapsed){
35231             this.collapse(true);
35232         }
35233         if(c.hidden){
35234             this.hide();
35235         }
35236     },
35237     /**
35238      * Returns true if this region is currently visible.
35239      * @return {Boolean}
35240      */
35241     isVisible : function(){
35242         return this.visible;
35243     },
35244
35245     /**
35246      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
35247      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
35248      */
35249     setCollapsedTitle : function(title){
35250         title = title || "&#160;";
35251         if(this.collapsedTitleTextEl){
35252             this.collapsedTitleTextEl.innerHTML = title;
35253         }
35254     },
35255
35256     getBox : function(){
35257         var b;
35258         if(!this.collapsed){
35259             b = this.el.getBox(false, true);
35260         }else{
35261             b = this.collapsedEl.getBox(false, true);
35262         }
35263         return b;
35264     },
35265
35266     getMargins : function(){
35267         return this.collapsed ? this.cmargins : this.margins;
35268     },
35269
35270     highlight : function(){
35271         this.el.addClass("x-layout-panel-dragover");
35272     },
35273
35274     unhighlight : function(){
35275         this.el.removeClass("x-layout-panel-dragover");
35276     },
35277
35278     updateBox : function(box){
35279         this.box = box;
35280         if(!this.collapsed){
35281             this.el.dom.style.left = box.x + "px";
35282             this.el.dom.style.top = box.y + "px";
35283             this.updateBody(box.width, box.height);
35284         }else{
35285             this.collapsedEl.dom.style.left = box.x + "px";
35286             this.collapsedEl.dom.style.top = box.y + "px";
35287             this.collapsedEl.setSize(box.width, box.height);
35288         }
35289         if(this.tabs){
35290             this.tabs.autoSizeTabs();
35291         }
35292     },
35293
35294     updateBody : function(w, h){
35295         if(w !== null){
35296             this.el.setWidth(w);
35297             w -= this.el.getBorderWidth("rl");
35298             if(this.config.adjustments){
35299                 w += this.config.adjustments[0];
35300             }
35301         }
35302         if(h !== null){
35303             this.el.setHeight(h);
35304             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
35305             h -= this.el.getBorderWidth("tb");
35306             if(this.config.adjustments){
35307                 h += this.config.adjustments[1];
35308             }
35309             this.bodyEl.setHeight(h);
35310             if(this.tabs){
35311                 h = this.tabs.syncHeight(h);
35312             }
35313         }
35314         if(this.panelSize){
35315             w = w !== null ? w : this.panelSize.width;
35316             h = h !== null ? h : this.panelSize.height;
35317         }
35318         if(this.activePanel){
35319             var el = this.activePanel.getEl();
35320             w = w !== null ? w : el.getWidth();
35321             h = h !== null ? h : el.getHeight();
35322             this.panelSize = {width: w, height: h};
35323             this.activePanel.setSize(w, h);
35324         }
35325         if(Roo.isIE && this.tabs){
35326             this.tabs.el.repaint();
35327         }
35328     },
35329
35330     /**
35331      * Returns the container element for this region.
35332      * @return {Roo.Element}
35333      */
35334     getEl : function(){
35335         return this.el;
35336     },
35337
35338     /**
35339      * Hides this region.
35340      */
35341     hide : function(){
35342         if(!this.collapsed){
35343             this.el.dom.style.left = "-2000px";
35344             this.el.hide();
35345         }else{
35346             this.collapsedEl.dom.style.left = "-2000px";
35347             this.collapsedEl.hide();
35348         }
35349         this.visible = false;
35350         this.fireEvent("visibilitychange", this, false);
35351     },
35352
35353     /**
35354      * Shows this region if it was previously hidden.
35355      */
35356     show : function(){
35357         if(!this.collapsed){
35358             this.el.show();
35359         }else{
35360             this.collapsedEl.show();
35361         }
35362         this.visible = true;
35363         this.fireEvent("visibilitychange", this, true);
35364     },
35365
35366     closeClicked : function(){
35367         if(this.activePanel){
35368             this.remove(this.activePanel);
35369         }
35370     },
35371
35372     collapseClick : function(e){
35373         if(this.isSlid){
35374            e.stopPropagation();
35375            this.slideIn();
35376         }else{
35377            e.stopPropagation();
35378            this.slideOut();
35379         }
35380     },
35381
35382     /**
35383      * Collapses this region.
35384      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
35385      */
35386     collapse : function(skipAnim, skipCheck){
35387         if(this.collapsed) {
35388             return;
35389         }
35390         
35391         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
35392             
35393             this.collapsed = true;
35394             if(this.split){
35395                 this.split.el.hide();
35396             }
35397             if(this.config.animate && skipAnim !== true){
35398                 this.fireEvent("invalidated", this);
35399                 this.animateCollapse();
35400             }else{
35401                 this.el.setLocation(-20000,-20000);
35402                 this.el.hide();
35403                 this.collapsedEl.show();
35404                 this.fireEvent("collapsed", this);
35405                 this.fireEvent("invalidated", this);
35406             }
35407         }
35408         
35409     },
35410
35411     animateCollapse : function(){
35412         // overridden
35413     },
35414
35415     /**
35416      * Expands this region if it was previously collapsed.
35417      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
35418      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
35419      */
35420     expand : function(e, skipAnim){
35421         if(e) {
35422             e.stopPropagation();
35423         }
35424         if(!this.collapsed || this.el.hasActiveFx()) {
35425             return;
35426         }
35427         if(this.isSlid){
35428             this.afterSlideIn();
35429             skipAnim = true;
35430         }
35431         this.collapsed = false;
35432         if(this.config.animate && skipAnim !== true){
35433             this.animateExpand();
35434         }else{
35435             this.el.show();
35436             if(this.split){
35437                 this.split.el.show();
35438             }
35439             this.collapsedEl.setLocation(-2000,-2000);
35440             this.collapsedEl.hide();
35441             this.fireEvent("invalidated", this);
35442             this.fireEvent("expanded", this);
35443         }
35444     },
35445
35446     animateExpand : function(){
35447         // overridden
35448     },
35449
35450     initTabs : function()
35451     {
35452         this.bodyEl.setStyle("overflow", "hidden");
35453         var ts = new Roo.TabPanel(
35454                 this.bodyEl.dom,
35455                 {
35456                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
35457                     disableTooltips: this.config.disableTabTips,
35458                     toolbar : this.config.toolbar
35459                 }
35460         );
35461         if(this.config.hideTabs){
35462             ts.stripWrap.setDisplayed(false);
35463         }
35464         this.tabs = ts;
35465         ts.resizeTabs = this.config.resizeTabs === true;
35466         ts.minTabWidth = this.config.minTabWidth || 40;
35467         ts.maxTabWidth = this.config.maxTabWidth || 250;
35468         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
35469         ts.monitorResize = false;
35470         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
35471         ts.bodyEl.addClass('x-layout-tabs-body');
35472         this.panels.each(this.initPanelAsTab, this);
35473     },
35474
35475     initPanelAsTab : function(panel){
35476         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
35477                     this.config.closeOnTab && panel.isClosable());
35478         if(panel.tabTip !== undefined){
35479             ti.setTooltip(panel.tabTip);
35480         }
35481         ti.on("activate", function(){
35482               this.setActivePanel(panel);
35483         }, this);
35484         if(this.config.closeOnTab){
35485             ti.on("beforeclose", function(t, e){
35486                 e.cancel = true;
35487                 this.remove(panel);
35488             }, this);
35489         }
35490         return ti;
35491     },
35492
35493     updatePanelTitle : function(panel, title){
35494         if(this.activePanel == panel){
35495             this.updateTitle(title);
35496         }
35497         if(this.tabs){
35498             var ti = this.tabs.getTab(panel.getEl().id);
35499             ti.setText(title);
35500             if(panel.tabTip !== undefined){
35501                 ti.setTooltip(panel.tabTip);
35502             }
35503         }
35504     },
35505
35506     updateTitle : function(title){
35507         if(this.titleTextEl && !this.config.title){
35508             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
35509         }
35510     },
35511
35512     setActivePanel : function(panel){
35513         panel = this.getPanel(panel);
35514         if(this.activePanel && this.activePanel != panel){
35515             this.activePanel.setActiveState(false);
35516         }
35517         this.activePanel = panel;
35518         panel.setActiveState(true);
35519         if(this.panelSize){
35520             panel.setSize(this.panelSize.width, this.panelSize.height);
35521         }
35522         if(this.closeBtn){
35523             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
35524         }
35525         this.updateTitle(panel.getTitle());
35526         if(this.tabs){
35527             this.fireEvent("invalidated", this);
35528         }
35529         this.fireEvent("panelactivated", this, panel);
35530     },
35531
35532     /**
35533      * Shows the specified panel.
35534      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
35535      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
35536      */
35537     showPanel : function(panel)
35538     {
35539         panel = this.getPanel(panel);
35540         if(panel){
35541             if(this.tabs){
35542                 var tab = this.tabs.getTab(panel.getEl().id);
35543                 if(tab.isHidden()){
35544                     this.tabs.unhideTab(tab.id);
35545                 }
35546                 tab.activate();
35547             }else{
35548                 this.setActivePanel(panel);
35549             }
35550         }
35551         return panel;
35552     },
35553
35554     /**
35555      * Get the active panel for this region.
35556      * @return {Roo.ContentPanel} The active panel or null
35557      */
35558     getActivePanel : function(){
35559         return this.activePanel;
35560     },
35561
35562     validateVisibility : function(){
35563         if(this.panels.getCount() < 1){
35564             this.updateTitle("&#160;");
35565             this.closeBtn.hide();
35566             this.hide();
35567         }else{
35568             if(!this.isVisible()){
35569                 this.show();
35570             }
35571         }
35572     },
35573
35574     /**
35575      * Adds the passed ContentPanel(s) to this region.
35576      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35577      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
35578      */
35579     add : function(panel){
35580         if(arguments.length > 1){
35581             for(var i = 0, len = arguments.length; i < len; i++) {
35582                 this.add(arguments[i]);
35583             }
35584             return null;
35585         }
35586         if(this.hasPanel(panel)){
35587             this.showPanel(panel);
35588             return panel;
35589         }
35590         panel.setRegion(this);
35591         this.panels.add(panel);
35592         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
35593             this.bodyEl.dom.appendChild(panel.getEl().dom);
35594             if(panel.background !== true){
35595                 this.setActivePanel(panel);
35596             }
35597             this.fireEvent("paneladded", this, panel);
35598             return panel;
35599         }
35600         if(!this.tabs){
35601             this.initTabs();
35602         }else{
35603             this.initPanelAsTab(panel);
35604         }
35605         if(panel.background !== true){
35606             this.tabs.activate(panel.getEl().id);
35607         }
35608         this.fireEvent("paneladded", this, panel);
35609         return panel;
35610     },
35611
35612     /**
35613      * Hides the tab for the specified panel.
35614      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
35615      */
35616     hidePanel : function(panel){
35617         if(this.tabs && (panel = this.getPanel(panel))){
35618             this.tabs.hideTab(panel.getEl().id);
35619         }
35620     },
35621
35622     /**
35623      * Unhides the tab for a previously hidden panel.
35624      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
35625      */
35626     unhidePanel : function(panel){
35627         if(this.tabs && (panel = this.getPanel(panel))){
35628             this.tabs.unhideTab(panel.getEl().id);
35629         }
35630     },
35631
35632     clearPanels : function(){
35633         while(this.panels.getCount() > 0){
35634              this.remove(this.panels.first());
35635         }
35636     },
35637
35638     /**
35639      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35640      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
35641      * @param {Boolean} preservePanel Overrides the config preservePanel option
35642      * @return {Roo.ContentPanel} The panel that was removed
35643      */
35644     remove : function(panel, preservePanel){
35645         panel = this.getPanel(panel);
35646         if(!panel){
35647             return null;
35648         }
35649         var e = {};
35650         this.fireEvent("beforeremove", this, panel, e);
35651         if(e.cancel === true){
35652             return null;
35653         }
35654         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
35655         var panelId = panel.getId();
35656         this.panels.removeKey(panelId);
35657         if(preservePanel){
35658             document.body.appendChild(panel.getEl().dom);
35659         }
35660         if(this.tabs){
35661             this.tabs.removeTab(panel.getEl().id);
35662         }else if (!preservePanel){
35663             this.bodyEl.dom.removeChild(panel.getEl().dom);
35664         }
35665         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
35666             var p = this.panels.first();
35667             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
35668             tempEl.appendChild(p.getEl().dom);
35669             this.bodyEl.update("");
35670             this.bodyEl.dom.appendChild(p.getEl().dom);
35671             tempEl = null;
35672             this.updateTitle(p.getTitle());
35673             this.tabs = null;
35674             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
35675             this.setActivePanel(p);
35676         }
35677         panel.setRegion(null);
35678         if(this.activePanel == panel){
35679             this.activePanel = null;
35680         }
35681         if(this.config.autoDestroy !== false && preservePanel !== true){
35682             try{panel.destroy();}catch(e){}
35683         }
35684         this.fireEvent("panelremoved", this, panel);
35685         return panel;
35686     },
35687
35688     /**
35689      * Returns the TabPanel component used by this region
35690      * @return {Roo.TabPanel}
35691      */
35692     getTabs : function(){
35693         return this.tabs;
35694     },
35695
35696     createTool : function(parentEl, className){
35697         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
35698             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
35699         btn.addClassOnOver("x-layout-tools-button-over");
35700         return btn;
35701     }
35702 });/*
35703  * Based on:
35704  * Ext JS Library 1.1.1
35705  * Copyright(c) 2006-2007, Ext JS, LLC.
35706  *
35707  * Originally Released Under LGPL - original licence link has changed is not relivant.
35708  *
35709  * Fork - LGPL
35710  * <script type="text/javascript">
35711  */
35712  
35713
35714
35715 /**
35716  * @class Roo.SplitLayoutRegion
35717  * @extends Roo.LayoutRegion
35718  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
35719  */
35720 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
35721     this.cursor = cursor;
35722     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
35723 };
35724
35725 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
35726     splitTip : "Drag to resize.",
35727     collapsibleSplitTip : "Drag to resize. Double click to hide.",
35728     useSplitTips : false,
35729
35730     applyConfig : function(config){
35731         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
35732         if(config.split){
35733             if(!this.split){
35734                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
35735                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
35736                 /** The SplitBar for this region 
35737                 * @type Roo.SplitBar */
35738                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
35739                 this.split.on("moved", this.onSplitMove, this);
35740                 this.split.useShim = config.useShim === true;
35741                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
35742                 if(this.useSplitTips){
35743                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
35744                 }
35745                 if(config.collapsible){
35746                     this.split.el.on("dblclick", this.collapse,  this);
35747                 }
35748             }
35749             if(typeof config.minSize != "undefined"){
35750                 this.split.minSize = config.minSize;
35751             }
35752             if(typeof config.maxSize != "undefined"){
35753                 this.split.maxSize = config.maxSize;
35754             }
35755             if(config.hideWhenEmpty || config.hidden || config.collapsed){
35756                 this.hideSplitter();
35757             }
35758         }
35759     },
35760
35761     getHMaxSize : function(){
35762          var cmax = this.config.maxSize || 10000;
35763          var center = this.mgr.getRegion("center");
35764          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
35765     },
35766
35767     getVMaxSize : function(){
35768          var cmax = this.config.maxSize || 10000;
35769          var center = this.mgr.getRegion("center");
35770          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
35771     },
35772
35773     onSplitMove : function(split, newSize){
35774         this.fireEvent("resized", this, newSize);
35775     },
35776     
35777     /** 
35778      * Returns the {@link Roo.SplitBar} for this region.
35779      * @return {Roo.SplitBar}
35780      */
35781     getSplitBar : function(){
35782         return this.split;
35783     },
35784     
35785     hide : function(){
35786         this.hideSplitter();
35787         Roo.SplitLayoutRegion.superclass.hide.call(this);
35788     },
35789
35790     hideSplitter : function(){
35791         if(this.split){
35792             this.split.el.setLocation(-2000,-2000);
35793             this.split.el.hide();
35794         }
35795     },
35796
35797     show : function(){
35798         if(this.split){
35799             this.split.el.show();
35800         }
35801         Roo.SplitLayoutRegion.superclass.show.call(this);
35802     },
35803     
35804     beforeSlide: function(){
35805         if(Roo.isGecko){// firefox overflow auto bug workaround
35806             this.bodyEl.clip();
35807             if(this.tabs) {
35808                 this.tabs.bodyEl.clip();
35809             }
35810             if(this.activePanel){
35811                 this.activePanel.getEl().clip();
35812                 
35813                 if(this.activePanel.beforeSlide){
35814                     this.activePanel.beforeSlide();
35815                 }
35816             }
35817         }
35818     },
35819     
35820     afterSlide : function(){
35821         if(Roo.isGecko){// firefox overflow auto bug workaround
35822             this.bodyEl.unclip();
35823             if(this.tabs) {
35824                 this.tabs.bodyEl.unclip();
35825             }
35826             if(this.activePanel){
35827                 this.activePanel.getEl().unclip();
35828                 if(this.activePanel.afterSlide){
35829                     this.activePanel.afterSlide();
35830                 }
35831             }
35832         }
35833     },
35834
35835     initAutoHide : function(){
35836         if(this.autoHide !== false){
35837             if(!this.autoHideHd){
35838                 var st = new Roo.util.DelayedTask(this.slideIn, this);
35839                 this.autoHideHd = {
35840                     "mouseout": function(e){
35841                         if(!e.within(this.el, true)){
35842                             st.delay(500);
35843                         }
35844                     },
35845                     "mouseover" : function(e){
35846                         st.cancel();
35847                     },
35848                     scope : this
35849                 };
35850             }
35851             this.el.on(this.autoHideHd);
35852         }
35853     },
35854
35855     clearAutoHide : function(){
35856         if(this.autoHide !== false){
35857             this.el.un("mouseout", this.autoHideHd.mouseout);
35858             this.el.un("mouseover", this.autoHideHd.mouseover);
35859         }
35860     },
35861
35862     clearMonitor : function(){
35863         Roo.get(document).un("click", this.slideInIf, this);
35864     },
35865
35866     // these names are backwards but not changed for compat
35867     slideOut : function(){
35868         if(this.isSlid || this.el.hasActiveFx()){
35869             return;
35870         }
35871         this.isSlid = true;
35872         if(this.collapseBtn){
35873             this.collapseBtn.hide();
35874         }
35875         this.closeBtnState = this.closeBtn.getStyle('display');
35876         this.closeBtn.hide();
35877         if(this.stickBtn){
35878             this.stickBtn.show();
35879         }
35880         this.el.show();
35881         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
35882         this.beforeSlide();
35883         this.el.setStyle("z-index", 10001);
35884         this.el.slideIn(this.getSlideAnchor(), {
35885             callback: function(){
35886                 this.afterSlide();
35887                 this.initAutoHide();
35888                 Roo.get(document).on("click", this.slideInIf, this);
35889                 this.fireEvent("slideshow", this);
35890             },
35891             scope: this,
35892             block: true
35893         });
35894     },
35895
35896     afterSlideIn : function(){
35897         this.clearAutoHide();
35898         this.isSlid = false;
35899         this.clearMonitor();
35900         this.el.setStyle("z-index", "");
35901         if(this.collapseBtn){
35902             this.collapseBtn.show();
35903         }
35904         this.closeBtn.setStyle('display', this.closeBtnState);
35905         if(this.stickBtn){
35906             this.stickBtn.hide();
35907         }
35908         this.fireEvent("slidehide", this);
35909     },
35910
35911     slideIn : function(cb){
35912         if(!this.isSlid || this.el.hasActiveFx()){
35913             Roo.callback(cb);
35914             return;
35915         }
35916         this.isSlid = false;
35917         this.beforeSlide();
35918         this.el.slideOut(this.getSlideAnchor(), {
35919             callback: function(){
35920                 this.el.setLeftTop(-10000, -10000);
35921                 this.afterSlide();
35922                 this.afterSlideIn();
35923                 Roo.callback(cb);
35924             },
35925             scope: this,
35926             block: true
35927         });
35928     },
35929     
35930     slideInIf : function(e){
35931         if(!e.within(this.el)){
35932             this.slideIn();
35933         }
35934     },
35935
35936     animateCollapse : function(){
35937         this.beforeSlide();
35938         this.el.setStyle("z-index", 20000);
35939         var anchor = this.getSlideAnchor();
35940         this.el.slideOut(anchor, {
35941             callback : function(){
35942                 this.el.setStyle("z-index", "");
35943                 this.collapsedEl.slideIn(anchor, {duration:.3});
35944                 this.afterSlide();
35945                 this.el.setLocation(-10000,-10000);
35946                 this.el.hide();
35947                 this.fireEvent("collapsed", this);
35948             },
35949             scope: this,
35950             block: true
35951         });
35952     },
35953
35954     animateExpand : function(){
35955         this.beforeSlide();
35956         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
35957         this.el.setStyle("z-index", 20000);
35958         this.collapsedEl.hide({
35959             duration:.1
35960         });
35961         this.el.slideIn(this.getSlideAnchor(), {
35962             callback : function(){
35963                 this.el.setStyle("z-index", "");
35964                 this.afterSlide();
35965                 if(this.split){
35966                     this.split.el.show();
35967                 }
35968                 this.fireEvent("invalidated", this);
35969                 this.fireEvent("expanded", this);
35970             },
35971             scope: this,
35972             block: true
35973         });
35974     },
35975
35976     anchors : {
35977         "west" : "left",
35978         "east" : "right",
35979         "north" : "top",
35980         "south" : "bottom"
35981     },
35982
35983     sanchors : {
35984         "west" : "l",
35985         "east" : "r",
35986         "north" : "t",
35987         "south" : "b"
35988     },
35989
35990     canchors : {
35991         "west" : "tl-tr",
35992         "east" : "tr-tl",
35993         "north" : "tl-bl",
35994         "south" : "bl-tl"
35995     },
35996
35997     getAnchor : function(){
35998         return this.anchors[this.position];
35999     },
36000
36001     getCollapseAnchor : function(){
36002         return this.canchors[this.position];
36003     },
36004
36005     getSlideAnchor : function(){
36006         return this.sanchors[this.position];
36007     },
36008
36009     getAlignAdj : function(){
36010         var cm = this.cmargins;
36011         switch(this.position){
36012             case "west":
36013                 return [0, 0];
36014             break;
36015             case "east":
36016                 return [0, 0];
36017             break;
36018             case "north":
36019                 return [0, 0];
36020             break;
36021             case "south":
36022                 return [0, 0];
36023             break;
36024         }
36025     },
36026
36027     getExpandAdj : function(){
36028         var c = this.collapsedEl, cm = this.cmargins;
36029         switch(this.position){
36030             case "west":
36031                 return [-(cm.right+c.getWidth()+cm.left), 0];
36032             break;
36033             case "east":
36034                 return [cm.right+c.getWidth()+cm.left, 0];
36035             break;
36036             case "north":
36037                 return [0, -(cm.top+cm.bottom+c.getHeight())];
36038             break;
36039             case "south":
36040                 return [0, cm.top+cm.bottom+c.getHeight()];
36041             break;
36042         }
36043     }
36044 });/*
36045  * Based on:
36046  * Ext JS Library 1.1.1
36047  * Copyright(c) 2006-2007, Ext JS, LLC.
36048  *
36049  * Originally Released Under LGPL - original licence link has changed is not relivant.
36050  *
36051  * Fork - LGPL
36052  * <script type="text/javascript">
36053  */
36054 /*
36055  * These classes are private internal classes
36056  */
36057 Roo.CenterLayoutRegion = function(mgr, config){
36058     Roo.LayoutRegion.call(this, mgr, config, "center");
36059     this.visible = true;
36060     this.minWidth = config.minWidth || 20;
36061     this.minHeight = config.minHeight || 20;
36062 };
36063
36064 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
36065     hide : function(){
36066         // center panel can't be hidden
36067     },
36068     
36069     show : function(){
36070         // center panel can't be hidden
36071     },
36072     
36073     getMinWidth: function(){
36074         return this.minWidth;
36075     },
36076     
36077     getMinHeight: function(){
36078         return this.minHeight;
36079     }
36080 });
36081
36082
36083 Roo.NorthLayoutRegion = function(mgr, config){
36084     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
36085     if(this.split){
36086         this.split.placement = Roo.SplitBar.TOP;
36087         this.split.orientation = Roo.SplitBar.VERTICAL;
36088         this.split.el.addClass("x-layout-split-v");
36089     }
36090     var size = config.initialSize || config.height;
36091     if(typeof size != "undefined"){
36092         this.el.setHeight(size);
36093     }
36094 };
36095 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
36096     orientation: Roo.SplitBar.VERTICAL,
36097     getBox : function(){
36098         if(this.collapsed){
36099             return this.collapsedEl.getBox();
36100         }
36101         var box = this.el.getBox();
36102         if(this.split){
36103             box.height += this.split.el.getHeight();
36104         }
36105         return box;
36106     },
36107     
36108     updateBox : function(box){
36109         if(this.split && !this.collapsed){
36110             box.height -= this.split.el.getHeight();
36111             this.split.el.setLeft(box.x);
36112             this.split.el.setTop(box.y+box.height);
36113             this.split.el.setWidth(box.width);
36114         }
36115         if(this.collapsed){
36116             this.updateBody(box.width, null);
36117         }
36118         Roo.LayoutRegion.prototype.updateBox.call(this, box);
36119     }
36120 });
36121
36122 Roo.SouthLayoutRegion = function(mgr, config){
36123     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
36124     if(this.split){
36125         this.split.placement = Roo.SplitBar.BOTTOM;
36126         this.split.orientation = Roo.SplitBar.VERTICAL;
36127         this.split.el.addClass("x-layout-split-v");
36128     }
36129     var size = config.initialSize || config.height;
36130     if(typeof size != "undefined"){
36131         this.el.setHeight(size);
36132     }
36133 };
36134 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
36135     orientation: Roo.SplitBar.VERTICAL,
36136     getBox : function(){
36137         if(this.collapsed){
36138             return this.collapsedEl.getBox();
36139         }
36140         var box = this.el.getBox();
36141         if(this.split){
36142             var sh = this.split.el.getHeight();
36143             box.height += sh;
36144             box.y -= sh;
36145         }
36146         return box;
36147     },
36148     
36149     updateBox : function(box){
36150         if(this.split && !this.collapsed){
36151             var sh = this.split.el.getHeight();
36152             box.height -= sh;
36153             box.y += sh;
36154             this.split.el.setLeft(box.x);
36155             this.split.el.setTop(box.y-sh);
36156             this.split.el.setWidth(box.width);
36157         }
36158         if(this.collapsed){
36159             this.updateBody(box.width, null);
36160         }
36161         Roo.LayoutRegion.prototype.updateBox.call(this, box);
36162     }
36163 });
36164
36165 Roo.EastLayoutRegion = function(mgr, config){
36166     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
36167     if(this.split){
36168         this.split.placement = Roo.SplitBar.RIGHT;
36169         this.split.orientation = Roo.SplitBar.HORIZONTAL;
36170         this.split.el.addClass("x-layout-split-h");
36171     }
36172     var size = config.initialSize || config.width;
36173     if(typeof size != "undefined"){
36174         this.el.setWidth(size);
36175     }
36176 };
36177 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
36178     orientation: Roo.SplitBar.HORIZONTAL,
36179     getBox : function(){
36180         if(this.collapsed){
36181             return this.collapsedEl.getBox();
36182         }
36183         var box = this.el.getBox();
36184         if(this.split){
36185             var sw = this.split.el.getWidth();
36186             box.width += sw;
36187             box.x -= sw;
36188         }
36189         return box;
36190     },
36191
36192     updateBox : function(box){
36193         if(this.split && !this.collapsed){
36194             var sw = this.split.el.getWidth();
36195             box.width -= sw;
36196             this.split.el.setLeft(box.x);
36197             this.split.el.setTop(box.y);
36198             this.split.el.setHeight(box.height);
36199             box.x += sw;
36200         }
36201         if(this.collapsed){
36202             this.updateBody(null, box.height);
36203         }
36204         Roo.LayoutRegion.prototype.updateBox.call(this, box);
36205     }
36206 });
36207
36208 Roo.WestLayoutRegion = function(mgr, config){
36209     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
36210     if(this.split){
36211         this.split.placement = Roo.SplitBar.LEFT;
36212         this.split.orientation = Roo.SplitBar.HORIZONTAL;
36213         this.split.el.addClass("x-layout-split-h");
36214     }
36215     var size = config.initialSize || config.width;
36216     if(typeof size != "undefined"){
36217         this.el.setWidth(size);
36218     }
36219 };
36220 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
36221     orientation: Roo.SplitBar.HORIZONTAL,
36222     getBox : function(){
36223         if(this.collapsed){
36224             return this.collapsedEl.getBox();
36225         }
36226         var box = this.el.getBox();
36227         if(this.split){
36228             box.width += this.split.el.getWidth();
36229         }
36230         return box;
36231     },
36232     
36233     updateBox : function(box){
36234         if(this.split && !this.collapsed){
36235             var sw = this.split.el.getWidth();
36236             box.width -= sw;
36237             this.split.el.setLeft(box.x+box.width);
36238             this.split.el.setTop(box.y);
36239             this.split.el.setHeight(box.height);
36240         }
36241         if(this.collapsed){
36242             this.updateBody(null, box.height);
36243         }
36244         Roo.LayoutRegion.prototype.updateBox.call(this, box);
36245     }
36246 });
36247 /*
36248  * Based on:
36249  * Ext JS Library 1.1.1
36250  * Copyright(c) 2006-2007, Ext JS, LLC.
36251  *
36252  * Originally Released Under LGPL - original licence link has changed is not relivant.
36253  *
36254  * Fork - LGPL
36255  * <script type="text/javascript">
36256  */
36257  
36258  
36259 /*
36260  * Private internal class for reading and applying state
36261  */
36262 Roo.LayoutStateManager = function(layout){
36263      // default empty state
36264      this.state = {
36265         north: {},
36266         south: {},
36267         east: {},
36268         west: {}       
36269     };
36270 };
36271
36272 Roo.LayoutStateManager.prototype = {
36273     init : function(layout, provider){
36274         this.provider = provider;
36275         var state = provider.get(layout.id+"-layout-state");
36276         if(state){
36277             var wasUpdating = layout.isUpdating();
36278             if(!wasUpdating){
36279                 layout.beginUpdate();
36280             }
36281             for(var key in state){
36282                 if(typeof state[key] != "function"){
36283                     var rstate = state[key];
36284                     var r = layout.getRegion(key);
36285                     if(r && rstate){
36286                         if(rstate.size){
36287                             r.resizeTo(rstate.size);
36288                         }
36289                         if(rstate.collapsed == true){
36290                             r.collapse(true);
36291                         }else{
36292                             r.expand(null, true);
36293                         }
36294                     }
36295                 }
36296             }
36297             if(!wasUpdating){
36298                 layout.endUpdate();
36299             }
36300             this.state = state; 
36301         }
36302         this.layout = layout;
36303         layout.on("regionresized", this.onRegionResized, this);
36304         layout.on("regioncollapsed", this.onRegionCollapsed, this);
36305         layout.on("regionexpanded", this.onRegionExpanded, this);
36306     },
36307     
36308     storeState : function(){
36309         this.provider.set(this.layout.id+"-layout-state", this.state);
36310     },
36311     
36312     onRegionResized : function(region, newSize){
36313         this.state[region.getPosition()].size = newSize;
36314         this.storeState();
36315     },
36316     
36317     onRegionCollapsed : function(region){
36318         this.state[region.getPosition()].collapsed = true;
36319         this.storeState();
36320     },
36321     
36322     onRegionExpanded : function(region){
36323         this.state[region.getPosition()].collapsed = false;
36324         this.storeState();
36325     }
36326 };/*
36327  * Based on:
36328  * Ext JS Library 1.1.1
36329  * Copyright(c) 2006-2007, Ext JS, LLC.
36330  *
36331  * Originally Released Under LGPL - original licence link has changed is not relivant.
36332  *
36333  * Fork - LGPL
36334  * <script type="text/javascript">
36335  */
36336 /**
36337  * @class Roo.ContentPanel
36338  * @extends Roo.util.Observable
36339  * @children Roo.form.Form Roo.JsonView Roo.View
36340  * @parent Roo.BorderLayout Roo.LayoutDialog builder
36341  * A basic ContentPanel element.
36342  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
36343  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
36344  * @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
36345  * @cfg {Boolean}   closable      True if the panel can be closed/removed
36346  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
36347  * @cfg {String|HTMLElement|Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
36348  * @cfg {Roo.Toolbar}   toolbar       A toolbar for this panel
36349  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
36350  * @cfg {String} title          The title for this panel
36351  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
36352  * @cfg {String} url            Calls {@link #setUrl} with this value
36353  * @cfg {String} region (center|north|south|east|west) [required] which region to put this panel on (when used with xtype constructors)
36354  * @cfg {String|Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
36355  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
36356  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
36357  * @cfg {String}    style  Extra style to add to the content panel
36358  * @cfg {Roo.menu.Menu} menu  popup menu
36359
36360  * @constructor
36361  * Create a new ContentPanel.
36362  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
36363  * @param {String/Object} config A string to set only the title or a config object
36364  * @param {String} content (optional) Set the HTML content for this panel
36365  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
36366  */
36367 Roo.ContentPanel = function(el, config, content){
36368     
36369     /*
36370     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
36371         config = el;
36372         el = Roo.id();
36373     }
36374     if (config && config.parentLayout) { 
36375         el = config.parentLayout.el.createChild(); 
36376     }
36377     */
36378     if(el.autoCreate){ // xtype is available if this is called from factory
36379         config = el;
36380         el = Roo.id();
36381     }
36382     this.el = Roo.get(el);
36383     if(!this.el && config && config.autoCreate){
36384         if(typeof config.autoCreate == "object"){
36385             if(!config.autoCreate.id){
36386                 config.autoCreate.id = config.id||el;
36387             }
36388             this.el = Roo.DomHelper.append(document.body,
36389                         config.autoCreate, true);
36390         }else{
36391             this.el = Roo.DomHelper.append(document.body,
36392                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
36393         }
36394     }
36395     
36396     
36397     this.closable = false;
36398     this.loaded = false;
36399     this.active = false;
36400     if(typeof config == "string"){
36401         this.title = config;
36402     }else{
36403         Roo.apply(this, config);
36404     }
36405     
36406     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
36407         this.wrapEl = this.el.wrap();
36408         this.toolbar.container = this.el.insertSibling(false, 'before');
36409         this.toolbar = new Roo.Toolbar(this.toolbar);
36410     }
36411     
36412     // xtype created footer. - not sure if will work as we normally have to render first..
36413     if (this.footer && !this.footer.el && this.footer.xtype) {
36414         if (!this.wrapEl) {
36415             this.wrapEl = this.el.wrap();
36416         }
36417     
36418         this.footer.container = this.wrapEl.createChild();
36419          
36420         this.footer = Roo.factory(this.footer, Roo);
36421         
36422     }
36423     
36424     if(this.resizeEl){
36425         this.resizeEl = Roo.get(this.resizeEl, true);
36426     }else{
36427         this.resizeEl = this.el;
36428     }
36429     // handle view.xtype
36430     
36431  
36432     
36433     
36434     this.addEvents({
36435         /**
36436          * @event activate
36437          * Fires when this panel is activated. 
36438          * @param {Roo.ContentPanel} this
36439          */
36440         "activate" : true,
36441         /**
36442          * @event deactivate
36443          * Fires when this panel is activated. 
36444          * @param {Roo.ContentPanel} this
36445          */
36446         "deactivate" : true,
36447
36448         /**
36449          * @event resize
36450          * Fires when this panel is resized if fitToFrame is true.
36451          * @param {Roo.ContentPanel} this
36452          * @param {Number} width The width after any component adjustments
36453          * @param {Number} height The height after any component adjustments
36454          */
36455         "resize" : true,
36456         
36457          /**
36458          * @event render
36459          * Fires when this tab is created
36460          * @param {Roo.ContentPanel} this
36461          */
36462         "render" : true
36463          
36464         
36465     });
36466     
36467
36468     
36469     
36470     if(this.autoScroll){
36471         this.resizeEl.setStyle("overflow", "auto");
36472     } else {
36473         // fix randome scrolling
36474         this.el.on('scroll', function() {
36475             Roo.log('fix random scolling');
36476             this.scrollTo('top',0); 
36477         });
36478     }
36479     content = content || this.content;
36480     if(content){
36481         this.setContent(content);
36482     }
36483     if(config && config.url){
36484         this.setUrl(this.url, this.params, this.loadOnce);
36485     }
36486     
36487     
36488     
36489     Roo.ContentPanel.superclass.constructor.call(this);
36490     
36491     if (this.view && typeof(this.view.xtype) != 'undefined') {
36492         this.view.el = this.el.appendChild(document.createElement("div"));
36493         this.view = Roo.factory(this.view); 
36494         this.view.render  &&  this.view.render(false, '');  
36495     }
36496     
36497     
36498     this.fireEvent('render', this);
36499 };
36500
36501 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
36502     tabTip:'',
36503     setRegion : function(region){
36504         this.region = region;
36505         if(region){
36506            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
36507         }else{
36508            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
36509         } 
36510     },
36511     
36512     /**
36513      * Returns the toolbar for this Panel if one was configured. 
36514      * @return {Roo.Toolbar} 
36515      */
36516     getToolbar : function(){
36517         return this.toolbar;
36518     },
36519     
36520     setActiveState : function(active){
36521         this.active = active;
36522         if(!active){
36523             this.fireEvent("deactivate", this);
36524         }else{
36525             this.fireEvent("activate", this);
36526         }
36527     },
36528     /**
36529      * Updates this panel's element
36530      * @param {String} content The new content
36531      * @param {Boolean} loadScripts (optional) true to look for and process scripts
36532     */
36533     setContent : function(content, loadScripts){
36534         this.el.update(content, loadScripts);
36535     },
36536
36537     ignoreResize : function(w, h){
36538         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
36539             return true;
36540         }else{
36541             this.lastSize = {width: w, height: h};
36542             return false;
36543         }
36544     },
36545     /**
36546      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
36547      * @return {Roo.UpdateManager} The UpdateManager
36548      */
36549     getUpdateManager : function(){
36550         return this.el.getUpdateManager();
36551     },
36552      /**
36553      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
36554      * @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:
36555 <pre><code>
36556 panel.load({
36557     url: "your-url.php",
36558     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
36559     callback: yourFunction,
36560     scope: yourObject, //(optional scope)
36561     discardUrl: false,
36562     nocache: false,
36563     text: "Loading...",
36564     timeout: 30,
36565     scripts: false
36566 });
36567 </code></pre>
36568      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
36569      * 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.
36570      * @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}
36571      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
36572      * @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.
36573      * @return {Roo.ContentPanel} this
36574      */
36575     load : function(){
36576         var um = this.el.getUpdateManager();
36577         um.update.apply(um, arguments);
36578         return this;
36579     },
36580
36581
36582     /**
36583      * 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.
36584      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
36585      * @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)
36586      * @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)
36587      * @return {Roo.UpdateManager} The UpdateManager
36588      */
36589     setUrl : function(url, params, loadOnce){
36590         if(this.refreshDelegate){
36591             this.removeListener("activate", this.refreshDelegate);
36592         }
36593         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
36594         this.on("activate", this.refreshDelegate);
36595         return this.el.getUpdateManager();
36596     },
36597     
36598     _handleRefresh : function(url, params, loadOnce){
36599         if(!loadOnce || !this.loaded){
36600             var updater = this.el.getUpdateManager();
36601             updater.update(url, params, this._setLoaded.createDelegate(this));
36602         }
36603     },
36604     
36605     _setLoaded : function(){
36606         this.loaded = true;
36607     }, 
36608     
36609     /**
36610      * Returns this panel's id
36611      * @return {String} 
36612      */
36613     getId : function(){
36614         return this.el.id;
36615     },
36616     
36617     /** 
36618      * Returns this panel's element - used by regiosn to add.
36619      * @return {Roo.Element} 
36620      */
36621     getEl : function(){
36622         return this.wrapEl || this.el;
36623     },
36624     
36625     adjustForComponents : function(width, height)
36626     {
36627         //Roo.log('adjustForComponents ');
36628         if(this.resizeEl != this.el){
36629             width -= this.el.getFrameWidth('lr');
36630             height -= this.el.getFrameWidth('tb');
36631         }
36632         if(this.toolbar){
36633             var te = this.toolbar.getEl();
36634             height -= te.getHeight();
36635             te.setWidth(width);
36636         }
36637         if(this.footer){
36638             var te = this.footer.getEl();
36639             //Roo.log("footer:" + te.getHeight());
36640             
36641             height -= te.getHeight();
36642             te.setWidth(width);
36643         }
36644         
36645         
36646         if(this.adjustments){
36647             width += this.adjustments[0];
36648             height += this.adjustments[1];
36649         }
36650         return {"width": width, "height": height};
36651     },
36652     
36653     setSize : function(width, height){
36654         if(this.fitToFrame && !this.ignoreResize(width, height)){
36655             if(this.fitContainer && this.resizeEl != this.el){
36656                 this.el.setSize(width, height);
36657             }
36658             var size = this.adjustForComponents(width, height);
36659             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
36660             this.fireEvent('resize', this, size.width, size.height);
36661         }
36662     },
36663     
36664     /**
36665      * Returns this panel's title
36666      * @return {String} 
36667      */
36668     getTitle : function(){
36669         return this.title;
36670     },
36671     
36672     /**
36673      * Set this panel's title
36674      * @param {String} title
36675      */
36676     setTitle : function(title){
36677         this.title = title;
36678         if(this.region){
36679             this.region.updatePanelTitle(this, title);
36680         }
36681     },
36682     
36683     /**
36684      * Returns true is this panel was configured to be closable
36685      * @return {Boolean} 
36686      */
36687     isClosable : function(){
36688         return this.closable;
36689     },
36690     
36691     beforeSlide : function(){
36692         this.el.clip();
36693         this.resizeEl.clip();
36694     },
36695     
36696     afterSlide : function(){
36697         this.el.unclip();
36698         this.resizeEl.unclip();
36699     },
36700     
36701     /**
36702      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
36703      *   Will fail silently if the {@link #setUrl} method has not been called.
36704      *   This does not activate the panel, just updates its content.
36705      */
36706     refresh : function(){
36707         if(this.refreshDelegate){
36708            this.loaded = false;
36709            this.refreshDelegate();
36710         }
36711     },
36712     
36713     /**
36714      * Destroys this panel
36715      */
36716     destroy : function(){
36717         this.el.removeAllListeners();
36718         var tempEl = document.createElement("span");
36719         tempEl.appendChild(this.el.dom);
36720         tempEl.innerHTML = "";
36721         this.el.remove();
36722         this.el = null;
36723     },
36724     
36725     /**
36726      * form - if the content panel contains a form - this is a reference to it.
36727      * @type {Roo.form.Form}
36728      */
36729     form : false,
36730     /**
36731      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
36732      *    This contains a reference to it.
36733      * @type {Roo.View}
36734      */
36735     view : false,
36736     
36737       /**
36738      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
36739      * <pre><code>
36740
36741 layout.addxtype({
36742        xtype : 'Form',
36743        items: [ .... ]
36744    }
36745 );
36746
36747 </code></pre>
36748      * @param {Object} cfg Xtype definition of item to add.
36749      */
36750     
36751     addxtype : function(cfg) {
36752         if(cfg.xtype.match(/^UploadCropbox$/)) {
36753
36754             this.cropbox = new Roo.factory(cfg);
36755
36756             this.cropbox.render(this.el);
36757
36758             return this.cropbox;
36759         }
36760         // add form..
36761         if (cfg.xtype.match(/^Form$/)) {
36762             
36763             var el;
36764             //if (this.footer) {
36765             //    el = this.footer.container.insertSibling(false, 'before');
36766             //} else {
36767                 el = this.el.createChild();
36768             //}
36769
36770             this.form = new  Roo.form.Form(cfg);
36771             
36772             
36773             if ( this.form.allItems.length) {
36774                 this.form.render(el.dom);
36775             }
36776             return this.form;
36777         }
36778         // should only have one of theses..
36779         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
36780             // views.. should not be just added - used named prop 'view''
36781             
36782             cfg.el = this.el.appendChild(document.createElement("div"));
36783             // factory?
36784             
36785             var ret = new Roo.factory(cfg);
36786              
36787              ret.render && ret.render(false, ''); // render blank..
36788             this.view = ret;
36789             return ret;
36790         }
36791         return false;
36792     }
36793 });
36794
36795
36796
36797
36798
36799
36800
36801
36802
36803
36804
36805
36806 /**
36807  * @class Roo.GridPanel
36808  * @extends Roo.ContentPanel
36809  * @parent Roo.BorderLayout Roo.LayoutDialog builder
36810  * @constructor
36811  * Create a new GridPanel.
36812  * @cfg {Roo.grid.Grid} grid The grid for this panel
36813  */
36814 Roo.GridPanel = function(grid, config){
36815     
36816     // universal ctor...
36817     if (typeof(grid.grid) != 'undefined') {
36818         config = grid;
36819         grid = config.grid;
36820     }
36821     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
36822         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
36823         
36824     this.wrapper.dom.appendChild(grid.getGridEl().dom);
36825     
36826     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
36827     
36828     if(this.toolbar){
36829         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
36830     }
36831     // xtype created footer. - not sure if will work as we normally have to render first..
36832     if (this.footer && !this.footer.el && this.footer.xtype) {
36833         
36834         this.footer.container = this.grid.getView().getFooterPanel(true);
36835         this.footer.dataSource = this.grid.dataSource;
36836         this.footer = Roo.factory(this.footer, Roo);
36837         
36838     }
36839     
36840     grid.monitorWindowResize = false; // turn off autosizing
36841     grid.autoHeight = false;
36842     grid.autoWidth = false;
36843     this.grid = grid;
36844     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
36845 };
36846
36847 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
36848     getId : function(){
36849         return this.grid.id;
36850     },
36851     
36852     /**
36853      * Returns the grid for this panel
36854      * @return {Roo.grid.Grid} 
36855      */
36856     getGrid : function(){
36857         return this.grid;    
36858     },
36859     
36860     setSize : function(width, height){
36861         if(!this.ignoreResize(width, height)){
36862             var grid = this.grid;
36863             var size = this.adjustForComponents(width, height);
36864             grid.getGridEl().setSize(size.width, size.height);
36865             grid.autoSize();
36866         }
36867     },
36868     
36869     beforeSlide : function(){
36870         this.grid.getView().scroller.clip();
36871     },
36872     
36873     afterSlide : function(){
36874         this.grid.getView().scroller.unclip();
36875     },
36876     
36877     destroy : function(){
36878         this.grid.destroy();
36879         delete this.grid;
36880         Roo.GridPanel.superclass.destroy.call(this); 
36881     }
36882 });
36883
36884
36885 /**
36886  * @class Roo.NestedLayoutPanel
36887  * @extends Roo.ContentPanel
36888  * @parent Roo.BorderLayout Roo.LayoutDialog builder
36889  * @cfg {Roo.BorderLayout} layout   [required] The layout for this panel
36890  *
36891  * 
36892  * @constructor
36893  * Create a new NestedLayoutPanel.
36894  * 
36895  * 
36896  * @param {Roo.BorderLayout} layout [required] The layout for this panel
36897  * @param {String/Object} config A string to set only the title or a config object
36898  */
36899 Roo.NestedLayoutPanel = function(layout, config)
36900 {
36901     // construct with only one argument..
36902     /* FIXME - implement nicer consturctors
36903     if (layout.layout) {
36904         config = layout;
36905         layout = config.layout;
36906         delete config.layout;
36907     }
36908     if (layout.xtype && !layout.getEl) {
36909         // then layout needs constructing..
36910         layout = Roo.factory(layout, Roo);
36911     }
36912     */
36913     
36914     
36915     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
36916     
36917     layout.monitorWindowResize = false; // turn off autosizing
36918     this.layout = layout;
36919     this.layout.getEl().addClass("x-layout-nested-layout");
36920     
36921     
36922     
36923     
36924 };
36925
36926 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
36927
36928     layout : false,
36929
36930     setSize : function(width, height){
36931         if(!this.ignoreResize(width, height)){
36932             var size = this.adjustForComponents(width, height);
36933             var el = this.layout.getEl();
36934             el.setSize(size.width, size.height);
36935             var touch = el.dom.offsetWidth;
36936             this.layout.layout();
36937             // ie requires a double layout on the first pass
36938             if(Roo.isIE && !this.initialized){
36939                 this.initialized = true;
36940                 this.layout.layout();
36941             }
36942         }
36943     },
36944     
36945     // activate all subpanels if not currently active..
36946     
36947     setActiveState : function(active){
36948         this.active = active;
36949         if(!active){
36950             this.fireEvent("deactivate", this);
36951             return;
36952         }
36953         
36954         this.fireEvent("activate", this);
36955         // not sure if this should happen before or after..
36956         if (!this.layout) {
36957             return; // should not happen..
36958         }
36959         var reg = false;
36960         for (var r in this.layout.regions) {
36961             reg = this.layout.getRegion(r);
36962             if (reg.getActivePanel()) {
36963                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
36964                 reg.setActivePanel(reg.getActivePanel());
36965                 continue;
36966             }
36967             if (!reg.panels.length) {
36968                 continue;
36969             }
36970             reg.showPanel(reg.getPanel(0));
36971         }
36972         
36973         
36974         
36975         
36976     },
36977     
36978     /**
36979      * Returns the nested BorderLayout for this panel
36980      * @return {Roo.BorderLayout}
36981      */
36982     getLayout : function(){
36983         return this.layout;
36984     },
36985     
36986      /**
36987      * Adds a xtype elements to the layout of the nested panel
36988      * <pre><code>
36989
36990 panel.addxtype({
36991        xtype : 'ContentPanel',
36992        region: 'west',
36993        items: [ .... ]
36994    }
36995 );
36996
36997 panel.addxtype({
36998         xtype : 'NestedLayoutPanel',
36999         region: 'west',
37000         layout: {
37001            center: { },
37002            west: { }   
37003         },
37004         items : [ ... list of content panels or nested layout panels.. ]
37005    }
37006 );
37007 </code></pre>
37008      * @param {Object} cfg Xtype definition of item to add.
37009      */
37010     addxtype : function(cfg) {
37011         return this.layout.addxtype(cfg);
37012     
37013     }
37014 });
37015
37016 Roo.ScrollPanel = function(el, config, content){
37017     config = config || {};
37018     config.fitToFrame = true;
37019     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
37020     
37021     this.el.dom.style.overflow = "hidden";
37022     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
37023     this.el.removeClass("x-layout-inactive-content");
37024     this.el.on("mousewheel", this.onWheel, this);
37025
37026     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
37027     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
37028     up.unselectable(); down.unselectable();
37029     up.on("click", this.scrollUp, this);
37030     down.on("click", this.scrollDown, this);
37031     up.addClassOnOver("x-scroller-btn-over");
37032     down.addClassOnOver("x-scroller-btn-over");
37033     up.addClassOnClick("x-scroller-btn-click");
37034     down.addClassOnClick("x-scroller-btn-click");
37035     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
37036
37037     this.resizeEl = this.el;
37038     this.el = wrap; this.up = up; this.down = down;
37039 };
37040
37041 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
37042     increment : 100,
37043     wheelIncrement : 5,
37044     scrollUp : function(){
37045         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
37046     },
37047
37048     scrollDown : function(){
37049         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
37050     },
37051
37052     afterScroll : function(){
37053         var el = this.resizeEl;
37054         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
37055         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
37056         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
37057     },
37058
37059     setSize : function(){
37060         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
37061         this.afterScroll();
37062     },
37063
37064     onWheel : function(e){
37065         var d = e.getWheelDelta();
37066         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
37067         this.afterScroll();
37068         e.stopEvent();
37069     },
37070
37071     setContent : function(content, loadScripts){
37072         this.resizeEl.update(content, loadScripts);
37073     }
37074
37075 });
37076
37077
37078
37079 /**
37080  * @class Roo.TreePanel
37081  * @extends Roo.ContentPanel
37082  * @parent Roo.BorderLayout Roo.LayoutDialog builder
37083  * Treepanel component
37084  * 
37085  * @constructor
37086  * Create a new TreePanel. - defaults to fit/scoll contents.
37087  * @param {String/Object} config A string to set only the panel's title, or a config object
37088  */
37089 Roo.TreePanel = function(config){
37090     var el = config.el;
37091     var tree = config.tree;
37092     delete config.tree; 
37093     delete config.el; // hopefull!
37094     
37095     // wrapper for IE7 strict & safari scroll issue
37096     
37097     var treeEl = el.createChild();
37098     config.resizeEl = treeEl;
37099     
37100     
37101     
37102     Roo.TreePanel.superclass.constructor.call(this, el, config);
37103  
37104  
37105     this.tree = new Roo.tree.TreePanel(treeEl , tree);
37106     //console.log(tree);
37107     this.on('activate', function()
37108     {
37109         if (this.tree.rendered) {
37110             return;
37111         }
37112         //console.log('render tree');
37113         this.tree.render();
37114     });
37115     // this should not be needed.. - it's actually the 'el' that resizes?
37116     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
37117     
37118     //this.on('resize',  function (cp, w, h) {
37119     //        this.tree.innerCt.setWidth(w);
37120     //        this.tree.innerCt.setHeight(h);
37121     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
37122     //});
37123
37124         
37125     
37126 };
37127
37128 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
37129     fitToFrame : true,
37130     autoScroll : true,
37131     /*
37132      * @cfg {Roo.tree.TreePanel} tree [required] The tree TreePanel, with config etc.
37133      */
37134     tree : false
37135
37136 });
37137 /*
37138  * Based on:
37139  * Ext JS Library 1.1.1
37140  * Copyright(c) 2006-2007, Ext JS, LLC.
37141  *
37142  * Originally Released Under LGPL - original licence link has changed is not relivant.
37143  *
37144  * Fork - LGPL
37145  * <script type="text/javascript">
37146  */
37147  
37148
37149 /**
37150  * @class Roo.ReaderLayout
37151  * @extends Roo.BorderLayout
37152  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
37153  * center region containing two nested regions (a top one for a list view and one for item preview below),
37154  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
37155  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
37156  * expedites the setup of the overall layout and regions for this common application style.
37157  * Example:
37158  <pre><code>
37159 var reader = new Roo.ReaderLayout();
37160 var CP = Roo.ContentPanel;  // shortcut for adding
37161
37162 reader.beginUpdate();
37163 reader.add("north", new CP("north", "North"));
37164 reader.add("west", new CP("west", {title: "West"}));
37165 reader.add("east", new CP("east", {title: "East"}));
37166
37167 reader.regions.listView.add(new CP("listView", "List"));
37168 reader.regions.preview.add(new CP("preview", "Preview"));
37169 reader.endUpdate();
37170 </code></pre>
37171 * @constructor
37172 * Create a new ReaderLayout
37173 * @param {Object} config Configuration options
37174 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
37175 * document.body if omitted)
37176 */
37177 Roo.ReaderLayout = function(config, renderTo){
37178     var c = config || {size:{}};
37179     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
37180         north: c.north !== false ? Roo.apply({
37181             split:false,
37182             initialSize: 32,
37183             titlebar: false
37184         }, c.north) : false,
37185         west: c.west !== false ? Roo.apply({
37186             split:true,
37187             initialSize: 200,
37188             minSize: 175,
37189             maxSize: 400,
37190             titlebar: true,
37191             collapsible: true,
37192             animate: true,
37193             margins:{left:5,right:0,bottom:5,top:5},
37194             cmargins:{left:5,right:5,bottom:5,top:5}
37195         }, c.west) : false,
37196         east: c.east !== false ? Roo.apply({
37197             split:true,
37198             initialSize: 200,
37199             minSize: 175,
37200             maxSize: 400,
37201             titlebar: true,
37202             collapsible: true,
37203             animate: true,
37204             margins:{left:0,right:5,bottom:5,top:5},
37205             cmargins:{left:5,right:5,bottom:5,top:5}
37206         }, c.east) : false,
37207         center: Roo.apply({
37208             tabPosition: 'top',
37209             autoScroll:false,
37210             closeOnTab: true,
37211             titlebar:false,
37212             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
37213         }, c.center)
37214     });
37215
37216     this.el.addClass('x-reader');
37217
37218     this.beginUpdate();
37219
37220     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
37221         south: c.preview !== false ? Roo.apply({
37222             split:true,
37223             initialSize: 200,
37224             minSize: 100,
37225             autoScroll:true,
37226             collapsible:true,
37227             titlebar: true,
37228             cmargins:{top:5,left:0, right:0, bottom:0}
37229         }, c.preview) : false,
37230         center: Roo.apply({
37231             autoScroll:false,
37232             titlebar:false,
37233             minHeight:200
37234         }, c.listView)
37235     });
37236     this.add('center', new Roo.NestedLayoutPanel(inner,
37237             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
37238
37239     this.endUpdate();
37240
37241     this.regions.preview = inner.getRegion('south');
37242     this.regions.listView = inner.getRegion('center');
37243 };
37244
37245 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
37246  * Based on:
37247  * Ext JS Library 1.1.1
37248  * Copyright(c) 2006-2007, Ext JS, LLC.
37249  *
37250  * Originally Released Under LGPL - original licence link has changed is not relivant.
37251  *
37252  * Fork - LGPL
37253  * <script type="text/javascript">
37254  */
37255  
37256 /**
37257  * @class Roo.grid.Grid
37258  * @extends Roo.util.Observable
37259  * This class represents the primary interface of a component based grid control.
37260  * <br><br>Usage:<pre><code>
37261  var grid = new Roo.grid.Grid("my-container-id", {
37262      ds: myDataStore,
37263      cm: myColModel,
37264      selModel: mySelectionModel,
37265      autoSizeColumns: true,
37266      monitorWindowResize: false,
37267      trackMouseOver: true
37268  });
37269  // set any options
37270  grid.render();
37271  * </code></pre>
37272  * <b>Common Problems:</b><br/>
37273  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
37274  * element will correct this<br/>
37275  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
37276  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
37277  * are unpredictable.<br/>
37278  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
37279  * grid to calculate dimensions/offsets.<br/>
37280   * @constructor
37281  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
37282  * The container MUST have some type of size defined for the grid to fill. The container will be
37283  * automatically set to position relative if it isn't already.
37284  * @param {Object} config A config object that sets properties on this grid.
37285  */
37286 Roo.grid.Grid = function(container, config){
37287         // initialize the container
37288         this.container = Roo.get(container);
37289         this.container.update("");
37290         this.container.setStyle("overflow", "hidden");
37291     this.container.addClass('x-grid-container');
37292
37293     this.id = this.container.id;
37294
37295     Roo.apply(this, config);
37296     // check and correct shorthanded configs
37297     if(this.ds){
37298         this.dataSource = this.ds;
37299         delete this.ds;
37300     }
37301     if(this.cm){
37302         this.colModel = this.cm;
37303         delete this.cm;
37304     }
37305     if(this.sm){
37306         this.selModel = this.sm;
37307         delete this.sm;
37308     }
37309
37310     if (this.selModel) {
37311         this.selModel = Roo.factory(this.selModel, Roo.grid);
37312         this.sm = this.selModel;
37313         this.sm.xmodule = this.xmodule || false;
37314     }
37315     if (typeof(this.colModel.config) == 'undefined') {
37316         this.colModel = new Roo.grid.ColumnModel(this.colModel);
37317         this.cm = this.colModel;
37318         this.cm.xmodule = this.xmodule || false;
37319     }
37320     if (this.dataSource) {
37321         this.dataSource= Roo.factory(this.dataSource, Roo.data);
37322         this.ds = this.dataSource;
37323         this.ds.xmodule = this.xmodule || false;
37324          
37325     }
37326     
37327     
37328     
37329     if(this.width){
37330         this.container.setWidth(this.width);
37331     }
37332
37333     if(this.height){
37334         this.container.setHeight(this.height);
37335     }
37336     /** @private */
37337         this.addEvents({
37338         // raw events
37339         /**
37340          * @event click
37341          * The raw click event for the entire grid.
37342          * @param {Roo.EventObject} e
37343          */
37344         "click" : true,
37345         /**
37346          * @event dblclick
37347          * The raw dblclick event for the entire grid.
37348          * @param {Roo.EventObject} e
37349          */
37350         "dblclick" : true,
37351         /**
37352          * @event contextmenu
37353          * The raw contextmenu event for the entire grid.
37354          * @param {Roo.EventObject} e
37355          */
37356         "contextmenu" : true,
37357         /**
37358          * @event mousedown
37359          * The raw mousedown event for the entire grid.
37360          * @param {Roo.EventObject} e
37361          */
37362         "mousedown" : true,
37363         /**
37364          * @event mouseup
37365          * The raw mouseup event for the entire grid.
37366          * @param {Roo.EventObject} e
37367          */
37368         "mouseup" : true,
37369         /**
37370          * @event mouseover
37371          * The raw mouseover event for the entire grid.
37372          * @param {Roo.EventObject} e
37373          */
37374         "mouseover" : true,
37375         /**
37376          * @event mouseout
37377          * The raw mouseout event for the entire grid.
37378          * @param {Roo.EventObject} e
37379          */
37380         "mouseout" : true,
37381         /**
37382          * @event keypress
37383          * The raw keypress event for the entire grid.
37384          * @param {Roo.EventObject} e
37385          */
37386         "keypress" : true,
37387         /**
37388          * @event keydown
37389          * The raw keydown event for the entire grid.
37390          * @param {Roo.EventObject} e
37391          */
37392         "keydown" : true,
37393
37394         // custom events
37395
37396         /**
37397          * @event cellclick
37398          * Fires when a cell is clicked
37399          * @param {Grid} this
37400          * @param {Number} rowIndex
37401          * @param {Number} columnIndex
37402          * @param {Roo.EventObject} e
37403          */
37404         "cellclick" : true,
37405         /**
37406          * @event celldblclick
37407          * Fires when a cell is double clicked
37408          * @param {Grid} this
37409          * @param {Number} rowIndex
37410          * @param {Number} columnIndex
37411          * @param {Roo.EventObject} e
37412          */
37413         "celldblclick" : true,
37414         /**
37415          * @event rowclick
37416          * Fires when a row is clicked
37417          * @param {Grid} this
37418          * @param {Number} rowIndex
37419          * @param {Roo.EventObject} e
37420          */
37421         "rowclick" : true,
37422         /**
37423          * @event rowdblclick
37424          * Fires when a row is double clicked
37425          * @param {Grid} this
37426          * @param {Number} rowIndex
37427          * @param {Roo.EventObject} e
37428          */
37429         "rowdblclick" : true,
37430         /**
37431          * @event headerclick
37432          * Fires when a header is clicked
37433          * @param {Grid} this
37434          * @param {Number} columnIndex
37435          * @param {Roo.EventObject} e
37436          */
37437         "headerclick" : true,
37438         /**
37439          * @event headerdblclick
37440          * Fires when a header cell is double clicked
37441          * @param {Grid} this
37442          * @param {Number} columnIndex
37443          * @param {Roo.EventObject} e
37444          */
37445         "headerdblclick" : true,
37446         /**
37447          * @event rowcontextmenu
37448          * Fires when a row is right clicked
37449          * @param {Grid} this
37450          * @param {Number} rowIndex
37451          * @param {Roo.EventObject} e
37452          */
37453         "rowcontextmenu" : true,
37454         /**
37455          * @event cellcontextmenu
37456          * Fires when a cell is right clicked
37457          * @param {Grid} this
37458          * @param {Number} rowIndex
37459          * @param {Number} cellIndex
37460          * @param {Roo.EventObject} e
37461          */
37462          "cellcontextmenu" : true,
37463         /**
37464          * @event headercontextmenu
37465          * Fires when a header is right clicked
37466          * @param {Grid} this
37467          * @param {Number} columnIndex
37468          * @param {Roo.EventObject} e
37469          */
37470         "headercontextmenu" : true,
37471         /**
37472          * @event bodyscroll
37473          * Fires when the body element is scrolled
37474          * @param {Number} scrollLeft
37475          * @param {Number} scrollTop
37476          */
37477         "bodyscroll" : true,
37478         /**
37479          * @event columnresize
37480          * Fires when the user resizes a column
37481          * @param {Number} columnIndex
37482          * @param {Number} newSize
37483          */
37484         "columnresize" : true,
37485         /**
37486          * @event columnmove
37487          * Fires when the user moves a column
37488          * @param {Number} oldIndex
37489          * @param {Number} newIndex
37490          */
37491         "columnmove" : true,
37492         /**
37493          * @event startdrag
37494          * Fires when row(s) start being dragged
37495          * @param {Grid} this
37496          * @param {Roo.GridDD} dd The drag drop object
37497          * @param {event} e The raw browser event
37498          */
37499         "startdrag" : true,
37500         /**
37501          * @event enddrag
37502          * Fires when a drag operation is complete
37503          * @param {Grid} this
37504          * @param {Roo.GridDD} dd The drag drop object
37505          * @param {event} e The raw browser event
37506          */
37507         "enddrag" : true,
37508         /**
37509          * @event dragdrop
37510          * Fires when dragged row(s) are dropped on a valid DD target
37511          * @param {Grid} this
37512          * @param {Roo.GridDD} dd The drag drop object
37513          * @param {String} targetId The target drag drop object
37514          * @param {event} e The raw browser event
37515          */
37516         "dragdrop" : true,
37517         /**
37518          * @event dragover
37519          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
37520          * @param {Grid} this
37521          * @param {Roo.GridDD} dd The drag drop object
37522          * @param {String} targetId The target drag drop object
37523          * @param {event} e The raw browser event
37524          */
37525         "dragover" : true,
37526         /**
37527          * @event dragenter
37528          *  Fires when the dragged row(s) first cross another DD target while being dragged
37529          * @param {Grid} this
37530          * @param {Roo.GridDD} dd The drag drop object
37531          * @param {String} targetId The target drag drop object
37532          * @param {event} e The raw browser event
37533          */
37534         "dragenter" : true,
37535         /**
37536          * @event dragout
37537          * Fires when the dragged row(s) leave another DD target while being dragged
37538          * @param {Grid} this
37539          * @param {Roo.GridDD} dd The drag drop object
37540          * @param {String} targetId The target drag drop object
37541          * @param {event} e The raw browser event
37542          */
37543         "dragout" : true,
37544         /**
37545          * @event rowclass
37546          * Fires when a row is rendered, so you can change add a style to it.
37547          * @param {GridView} gridview   The grid view
37548          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
37549          */
37550         'rowclass' : true,
37551
37552         /**
37553          * @event render
37554          * Fires when the grid is rendered
37555          * @param {Grid} grid
37556          */
37557         'render' : true
37558     });
37559
37560     Roo.grid.Grid.superclass.constructor.call(this);
37561 };
37562 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
37563     
37564     /**
37565          * @cfg {Roo.grid.AbstractSelectionModel} sm The selection Model (default = Roo.grid.RowSelectionModel)
37566          */
37567         /**
37568          * @cfg {Roo.grid.GridView} view  The view that renders the grid (default = Roo.grid.GridView)
37569          */
37570         /**
37571          * @cfg {Roo.grid.ColumnModel} cm[] The columns of the grid
37572          */
37573         /**
37574          * @cfg {Roo.data.Store} ds The data store for the grid
37575          */
37576         /**
37577          * @cfg {Roo.Toolbar} toolbar a toolbar for buttons etc.
37578          */
37579          
37580          /**
37581          * @cfg {Roo.PagingToolbar} footer the paging toolbar
37582          */
37583         
37584         /**
37585      * @cfg {String} ddGroup - drag drop group.
37586      */
37587       /**
37588      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
37589      */
37590
37591     /**
37592      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
37593      */
37594     minColumnWidth : 25,
37595
37596     /**
37597      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
37598      * <b>on initial render.</b> It is more efficient to explicitly size the columns
37599      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
37600      */
37601     autoSizeColumns : false,
37602
37603     /**
37604      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
37605      */
37606     autoSizeHeaders : true,
37607
37608     /**
37609      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
37610      */
37611     monitorWindowResize : true,
37612
37613     /**
37614      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
37615      * rows measured to get a columns size. Default is 0 (all rows).
37616      */
37617     maxRowsToMeasure : 0,
37618
37619     /**
37620      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
37621      */
37622     trackMouseOver : true,
37623
37624     /**
37625     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
37626     */
37627       /**
37628     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
37629     */
37630     
37631     /**
37632     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
37633     */
37634     enableDragDrop : false,
37635     
37636     /**
37637     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
37638     */
37639     enableColumnMove : true,
37640     
37641     /**
37642     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
37643     */
37644     enableColumnHide : true,
37645     
37646     /**
37647     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
37648     */
37649     enableRowHeightSync : false,
37650     
37651     /**
37652     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
37653     */
37654     stripeRows : true,
37655     
37656     /**
37657     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
37658     */
37659     autoHeight : false,
37660
37661     /**
37662      * @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.
37663      */
37664     autoExpandColumn : false,
37665
37666     /**
37667     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
37668     * Default is 50.
37669     */
37670     autoExpandMin : 50,
37671
37672     /**
37673     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
37674     */
37675     autoExpandMax : 1000,
37676
37677     /**
37678     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
37679     */
37680     view : null,
37681
37682     /**
37683     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
37684     */
37685     loadMask : false,
37686     /**
37687     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
37688     */
37689     dropTarget: false,
37690      /**
37691     * @cfg {boolean} sortColMenu Sort the column order menu when it shows (usefull for long lists..) default false
37692     */ 
37693     sortColMenu : false,
37694     
37695     // private
37696     rendered : false,
37697
37698     /**
37699     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
37700     * of a fixed width. Default is false.
37701     */
37702     /**
37703     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
37704     */
37705     
37706     
37707     /**
37708     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
37709     * %0 is replaced with the number of selected rows.
37710     */
37711     ddText : "{0} selected row{1}",
37712     
37713     
37714     /**
37715      * Called once after all setup has been completed and the grid is ready to be rendered.
37716      * @return {Roo.grid.Grid} this
37717      */
37718     render : function()
37719     {
37720         var c = this.container;
37721         // try to detect autoHeight/width mode
37722         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
37723             this.autoHeight = true;
37724         }
37725         var view = this.getView();
37726         view.init(this);
37727
37728         c.on("click", this.onClick, this);
37729         c.on("dblclick", this.onDblClick, this);
37730         c.on("contextmenu", this.onContextMenu, this);
37731         c.on("keydown", this.onKeyDown, this);
37732         if (Roo.isTouch) {
37733             c.on("touchstart", this.onTouchStart, this);
37734         }
37735
37736         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
37737
37738         this.getSelectionModel().init(this);
37739
37740         view.render();
37741
37742         if(this.loadMask){
37743             this.loadMask = new Roo.LoadMask(this.container,
37744                     Roo.apply({store:this.dataSource}, this.loadMask));
37745         }
37746         
37747         
37748         if (this.toolbar && this.toolbar.xtype) {
37749             this.toolbar.container = this.getView().getHeaderPanel(true);
37750             this.toolbar = new Roo.Toolbar(this.toolbar);
37751         }
37752         if (this.footer && this.footer.xtype) {
37753             this.footer.dataSource = this.getDataSource();
37754             this.footer.container = this.getView().getFooterPanel(true);
37755             this.footer = Roo.factory(this.footer, Roo);
37756         }
37757         if (this.dropTarget && this.dropTarget.xtype) {
37758             delete this.dropTarget.xtype;
37759             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
37760         }
37761         
37762         
37763         this.rendered = true;
37764         this.fireEvent('render', this);
37765         return this;
37766     },
37767
37768     /**
37769      * Reconfigures the grid to use a different Store and Column Model.
37770      * The View will be bound to the new objects and refreshed.
37771      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
37772      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
37773      */
37774     reconfigure : function(dataSource, colModel){
37775         if(this.loadMask){
37776             this.loadMask.destroy();
37777             this.loadMask = new Roo.LoadMask(this.container,
37778                     Roo.apply({store:dataSource}, this.loadMask));
37779         }
37780         this.view.bind(dataSource, colModel);
37781         this.dataSource = dataSource;
37782         this.colModel = colModel;
37783         this.view.refresh(true);
37784     },
37785     /**
37786      * addColumns
37787      * Add's a column, default at the end..
37788      
37789      * @param {int} position to add (default end)
37790      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
37791      */
37792     addColumns : function(pos, ar)
37793     {
37794         
37795         for (var i =0;i< ar.length;i++) {
37796             var cfg = ar[i];
37797             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
37798             this.cm.lookup[cfg.id] = cfg;
37799         }
37800         
37801         
37802         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
37803             pos = this.cm.config.length; //this.cm.config.push(cfg);
37804         } 
37805         pos = Math.max(0,pos);
37806         ar.unshift(0);
37807         ar.unshift(pos);
37808         this.cm.config.splice.apply(this.cm.config, ar);
37809         
37810         
37811         
37812         this.view.generateRules(this.cm);
37813         this.view.refresh(true);
37814         
37815     },
37816     
37817     
37818     
37819     
37820     // private
37821     onKeyDown : function(e){
37822         this.fireEvent("keydown", e);
37823     },
37824
37825     /**
37826      * Destroy this grid.
37827      * @param {Boolean} removeEl True to remove the element
37828      */
37829     destroy : function(removeEl, keepListeners){
37830         if(this.loadMask){
37831             this.loadMask.destroy();
37832         }
37833         var c = this.container;
37834         c.removeAllListeners();
37835         this.view.destroy();
37836         this.colModel.purgeListeners();
37837         if(!keepListeners){
37838             this.purgeListeners();
37839         }
37840         c.update("");
37841         if(removeEl === true){
37842             c.remove();
37843         }
37844     },
37845
37846     // private
37847     processEvent : function(name, e){
37848         // does this fire select???
37849         //Roo.log('grid:processEvent '  + name);
37850         
37851         if (name != 'touchstart' ) {
37852             this.fireEvent(name, e);    
37853         }
37854         
37855         var t = e.getTarget();
37856         var v = this.view;
37857         var header = v.findHeaderIndex(t);
37858         if(header !== false){
37859             var ename = name == 'touchstart' ? 'click' : name;
37860              
37861             this.fireEvent("header" + ename, this, header, e);
37862         }else{
37863             var row = v.findRowIndex(t);
37864             var cell = v.findCellIndex(t);
37865             if (name == 'touchstart') {
37866                 // first touch is always a click.
37867                 // hopefull this happens after selection is updated.?
37868                 name = false;
37869                 
37870                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
37871                     var cs = this.selModel.getSelectedCell();
37872                     if (row == cs[0] && cell == cs[1]){
37873                         name = 'dblclick';
37874                     }
37875                 }
37876                 if (typeof(this.selModel.getSelections) != 'undefined') {
37877                     var cs = this.selModel.getSelections();
37878                     var ds = this.dataSource;
37879                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
37880                         name = 'dblclick';
37881                     }
37882                 }
37883                 if (!name) {
37884                     return;
37885                 }
37886             }
37887             
37888             
37889             if(row !== false){
37890                 this.fireEvent("row" + name, this, row, e);
37891                 if(cell !== false){
37892                     this.fireEvent("cell" + name, this, row, cell, e);
37893                 }
37894             }
37895         }
37896     },
37897
37898     // private
37899     onClick : function(e){
37900         this.processEvent("click", e);
37901     },
37902    // private
37903     onTouchStart : function(e){
37904         this.processEvent("touchstart", e);
37905     },
37906
37907     // private
37908     onContextMenu : function(e, t){
37909         this.processEvent("contextmenu", e);
37910     },
37911
37912     // private
37913     onDblClick : function(e){
37914         this.processEvent("dblclick", e);
37915     },
37916
37917     // private
37918     walkCells : function(row, col, step, fn, scope){
37919         var cm = this.colModel, clen = cm.getColumnCount();
37920         var ds = this.dataSource, rlen = ds.getCount(), first = true;
37921         if(step < 0){
37922             if(col < 0){
37923                 row--;
37924                 first = false;
37925             }
37926             while(row >= 0){
37927                 if(!first){
37928                     col = clen-1;
37929                 }
37930                 first = false;
37931                 while(col >= 0){
37932                     if(fn.call(scope || this, row, col, cm) === true){
37933                         return [row, col];
37934                     }
37935                     col--;
37936                 }
37937                 row--;
37938             }
37939         } else {
37940             if(col >= clen){
37941                 row++;
37942                 first = false;
37943             }
37944             while(row < rlen){
37945                 if(!first){
37946                     col = 0;
37947                 }
37948                 first = false;
37949                 while(col < clen){
37950                     if(fn.call(scope || this, row, col, cm) === true){
37951                         return [row, col];
37952                     }
37953                     col++;
37954                 }
37955                 row++;
37956             }
37957         }
37958         return null;
37959     },
37960
37961     // private
37962     getSelections : function(){
37963         return this.selModel.getSelections();
37964     },
37965
37966     /**
37967      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
37968      * but if manual update is required this method will initiate it.
37969      */
37970     autoSize : function(){
37971         if(this.rendered){
37972             this.view.layout();
37973             if(this.view.adjustForScroll){
37974                 this.view.adjustForScroll();
37975             }
37976         }
37977     },
37978
37979     /**
37980      * Returns the grid's underlying element.
37981      * @return {Element} The element
37982      */
37983     getGridEl : function(){
37984         return this.container;
37985     },
37986
37987     // private for compatibility, overridden by editor grid
37988     stopEditing : function(){},
37989
37990     /**
37991      * Returns the grid's SelectionModel.
37992      * @return {SelectionModel}
37993      */
37994     getSelectionModel : function(){
37995         if(!this.selModel){
37996             this.selModel = new Roo.grid.RowSelectionModel();
37997         }
37998         return this.selModel;
37999     },
38000
38001     /**
38002      * Returns the grid's DataSource.
38003      * @return {DataSource}
38004      */
38005     getDataSource : function(){
38006         return this.dataSource;
38007     },
38008
38009     /**
38010      * Returns the grid's ColumnModel.
38011      * @return {ColumnModel}
38012      */
38013     getColumnModel : function(){
38014         return this.colModel;
38015     },
38016
38017     /**
38018      * Returns the grid's GridView object.
38019      * @return {GridView}
38020      */
38021     getView : function(){
38022         if(!this.view){
38023             this.view = new Roo.grid.GridView(this.viewConfig);
38024             this.relayEvents(this.view, [
38025                 "beforerowremoved", "beforerowsinserted",
38026                 "beforerefresh", "rowremoved",
38027                 "rowsinserted", "rowupdated" ,"refresh"
38028             ]);
38029         }
38030         return this.view;
38031     },
38032     /**
38033      * Called to get grid's drag proxy text, by default returns this.ddText.
38034      * Override this to put something different in the dragged text.
38035      * @return {String}
38036      */
38037     getDragDropText : function(){
38038         var count = this.selModel.getCount();
38039         return String.format(this.ddText, count, count == 1 ? '' : 's');
38040     }
38041 });
38042 /*
38043  * Based on:
38044  * Ext JS Library 1.1.1
38045  * Copyright(c) 2006-2007, Ext JS, LLC.
38046  *
38047  * Originally Released Under LGPL - original licence link has changed is not relivant.
38048  *
38049  * Fork - LGPL
38050  * <script type="text/javascript">
38051  */
38052  /**
38053  * @class Roo.grid.AbstractGridView
38054  * @extends Roo.util.Observable
38055  * @abstract
38056  * Abstract base class for grid Views
38057  * @constructor
38058  */
38059 Roo.grid.AbstractGridView = function(){
38060         this.grid = null;
38061         
38062         this.events = {
38063             "beforerowremoved" : true,
38064             "beforerowsinserted" : true,
38065             "beforerefresh" : true,
38066             "rowremoved" : true,
38067             "rowsinserted" : true,
38068             "rowupdated" : true,
38069             "refresh" : true
38070         };
38071     Roo.grid.AbstractGridView.superclass.constructor.call(this);
38072 };
38073
38074 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
38075     rowClass : "x-grid-row",
38076     cellClass : "x-grid-cell",
38077     tdClass : "x-grid-td",
38078     hdClass : "x-grid-hd",
38079     splitClass : "x-grid-hd-split",
38080     
38081     init: function(grid){
38082         this.grid = grid;
38083                 var cid = this.grid.getGridEl().id;
38084         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
38085         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
38086         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
38087         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
38088         },
38089         
38090     getColumnRenderers : function(){
38091         var renderers = [];
38092         var cm = this.grid.colModel;
38093         var colCount = cm.getColumnCount();
38094         for(var i = 0; i < colCount; i++){
38095             renderers[i] = cm.getRenderer(i);
38096         }
38097         return renderers;
38098     },
38099     
38100     getColumnIds : function(){
38101         var ids = [];
38102         var cm = this.grid.colModel;
38103         var colCount = cm.getColumnCount();
38104         for(var i = 0; i < colCount; i++){
38105             ids[i] = cm.getColumnId(i);
38106         }
38107         return ids;
38108     },
38109     
38110     getDataIndexes : function(){
38111         if(!this.indexMap){
38112             this.indexMap = this.buildIndexMap();
38113         }
38114         return this.indexMap.colToData;
38115     },
38116     
38117     getColumnIndexByDataIndex : function(dataIndex){
38118         if(!this.indexMap){
38119             this.indexMap = this.buildIndexMap();
38120         }
38121         return this.indexMap.dataToCol[dataIndex];
38122     },
38123     
38124     /**
38125      * Set a css style for a column dynamically. 
38126      * @param {Number} colIndex The index of the column
38127      * @param {String} name The css property name
38128      * @param {String} value The css value
38129      */
38130     setCSSStyle : function(colIndex, name, value){
38131         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
38132         Roo.util.CSS.updateRule(selector, name, value);
38133     },
38134     
38135     generateRules : function(cm){
38136         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
38137         Roo.util.CSS.removeStyleSheet(rulesId);
38138         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38139             var cid = cm.getColumnId(i);
38140             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
38141                          this.tdSelector, cid, " {\n}\n",
38142                          this.hdSelector, cid, " {\n}\n",
38143                          this.splitSelector, cid, " {\n}\n");
38144         }
38145         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
38146     }
38147 });/*
38148  * Based on:
38149  * Ext JS Library 1.1.1
38150  * Copyright(c) 2006-2007, Ext JS, LLC.
38151  *
38152  * Originally Released Under LGPL - original licence link has changed is not relivant.
38153  *
38154  * Fork - LGPL
38155  * <script type="text/javascript">
38156  */
38157
38158 // private
38159 // This is a support class used internally by the Grid components
38160 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
38161     this.grid = grid;
38162     this.view = grid.getView();
38163     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
38164     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
38165     if(hd2){
38166         this.setHandleElId(Roo.id(hd));
38167         this.setOuterHandleElId(Roo.id(hd2));
38168     }
38169     this.scroll = false;
38170 };
38171 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
38172     maxDragWidth: 120,
38173     getDragData : function(e){
38174         var t = Roo.lib.Event.getTarget(e);
38175         var h = this.view.findHeaderCell(t);
38176         if(h){
38177             return {ddel: h.firstChild, header:h};
38178         }
38179         return false;
38180     },
38181
38182     onInitDrag : function(e){
38183         this.view.headersDisabled = true;
38184         var clone = this.dragData.ddel.cloneNode(true);
38185         clone.id = Roo.id();
38186         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
38187         this.proxy.update(clone);
38188         return true;
38189     },
38190
38191     afterValidDrop : function(){
38192         var v = this.view;
38193         setTimeout(function(){
38194             v.headersDisabled = false;
38195         }, 50);
38196     },
38197
38198     afterInvalidDrop : function(){
38199         var v = this.view;
38200         setTimeout(function(){
38201             v.headersDisabled = false;
38202         }, 50);
38203     }
38204 });
38205 /*
38206  * Based on:
38207  * Ext JS Library 1.1.1
38208  * Copyright(c) 2006-2007, Ext JS, LLC.
38209  *
38210  * Originally Released Under LGPL - original licence link has changed is not relivant.
38211  *
38212  * Fork - LGPL
38213  * <script type="text/javascript">
38214  */
38215 // private
38216 // This is a support class used internally by the Grid components
38217 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
38218     this.grid = grid;
38219     this.view = grid.getView();
38220     // split the proxies so they don't interfere with mouse events
38221     this.proxyTop = Roo.DomHelper.append(document.body, {
38222         cls:"col-move-top", html:"&#160;"
38223     }, true);
38224     this.proxyBottom = Roo.DomHelper.append(document.body, {
38225         cls:"col-move-bottom", html:"&#160;"
38226     }, true);
38227     this.proxyTop.hide = this.proxyBottom.hide = function(){
38228         this.setLeftTop(-100,-100);
38229         this.setStyle("visibility", "hidden");
38230     };
38231     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
38232     // temporarily disabled
38233     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
38234     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
38235 };
38236 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
38237     proxyOffsets : [-4, -9],
38238     fly: Roo.Element.fly,
38239
38240     getTargetFromEvent : function(e){
38241         var t = Roo.lib.Event.getTarget(e);
38242         var cindex = this.view.findCellIndex(t);
38243         if(cindex !== false){
38244             return this.view.getHeaderCell(cindex);
38245         }
38246         return null;
38247     },
38248
38249     nextVisible : function(h){
38250         var v = this.view, cm = this.grid.colModel;
38251         h = h.nextSibling;
38252         while(h){
38253             if(!cm.isHidden(v.getCellIndex(h))){
38254                 return h;
38255             }
38256             h = h.nextSibling;
38257         }
38258         return null;
38259     },
38260
38261     prevVisible : function(h){
38262         var v = this.view, cm = this.grid.colModel;
38263         h = h.prevSibling;
38264         while(h){
38265             if(!cm.isHidden(v.getCellIndex(h))){
38266                 return h;
38267             }
38268             h = h.prevSibling;
38269         }
38270         return null;
38271     },
38272
38273     positionIndicator : function(h, n, e){
38274         var x = Roo.lib.Event.getPageX(e);
38275         var r = Roo.lib.Dom.getRegion(n.firstChild);
38276         var px, pt, py = r.top + this.proxyOffsets[1];
38277         if((r.right - x) <= (r.right-r.left)/2){
38278             px = r.right+this.view.borderWidth;
38279             pt = "after";
38280         }else{
38281             px = r.left;
38282             pt = "before";
38283         }
38284         var oldIndex = this.view.getCellIndex(h);
38285         var newIndex = this.view.getCellIndex(n);
38286
38287         if(this.grid.colModel.isFixed(newIndex)){
38288             return false;
38289         }
38290
38291         var locked = this.grid.colModel.isLocked(newIndex);
38292
38293         if(pt == "after"){
38294             newIndex++;
38295         }
38296         if(oldIndex < newIndex){
38297             newIndex--;
38298         }
38299         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
38300             return false;
38301         }
38302         px +=  this.proxyOffsets[0];
38303         this.proxyTop.setLeftTop(px, py);
38304         this.proxyTop.show();
38305         if(!this.bottomOffset){
38306             this.bottomOffset = this.view.mainHd.getHeight();
38307         }
38308         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
38309         this.proxyBottom.show();
38310         return pt;
38311     },
38312
38313     onNodeEnter : function(n, dd, e, data){
38314         if(data.header != n){
38315             this.positionIndicator(data.header, n, e);
38316         }
38317     },
38318
38319     onNodeOver : function(n, dd, e, data){
38320         var result = false;
38321         if(data.header != n){
38322             result = this.positionIndicator(data.header, n, e);
38323         }
38324         if(!result){
38325             this.proxyTop.hide();
38326             this.proxyBottom.hide();
38327         }
38328         return result ? this.dropAllowed : this.dropNotAllowed;
38329     },
38330
38331     onNodeOut : function(n, dd, e, data){
38332         this.proxyTop.hide();
38333         this.proxyBottom.hide();
38334     },
38335
38336     onNodeDrop : function(n, dd, e, data){
38337         var h = data.header;
38338         if(h != n){
38339             var cm = this.grid.colModel;
38340             var x = Roo.lib.Event.getPageX(e);
38341             var r = Roo.lib.Dom.getRegion(n.firstChild);
38342             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
38343             var oldIndex = this.view.getCellIndex(h);
38344             var newIndex = this.view.getCellIndex(n);
38345             var locked = cm.isLocked(newIndex);
38346             if(pt == "after"){
38347                 newIndex++;
38348             }
38349             if(oldIndex < newIndex){
38350                 newIndex--;
38351             }
38352             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
38353                 return false;
38354             }
38355             cm.setLocked(oldIndex, locked, true);
38356             cm.moveColumn(oldIndex, newIndex);
38357             this.grid.fireEvent("columnmove", oldIndex, newIndex);
38358             return true;
38359         }
38360         return false;
38361     }
38362 });
38363 /*
38364  * Based on:
38365  * Ext JS Library 1.1.1
38366  * Copyright(c) 2006-2007, Ext JS, LLC.
38367  *
38368  * Originally Released Under LGPL - original licence link has changed is not relivant.
38369  *
38370  * Fork - LGPL
38371  * <script type="text/javascript">
38372  */
38373   
38374 /**
38375  * @class Roo.grid.GridView
38376  * @extends Roo.util.Observable
38377  *
38378  * @constructor
38379  * @param {Object} config
38380  */
38381 Roo.grid.GridView = function(config){
38382     Roo.grid.GridView.superclass.constructor.call(this);
38383     this.el = null;
38384
38385     Roo.apply(this, config);
38386 };
38387
38388 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
38389
38390     unselectable :  'unselectable="on"',
38391     unselectableCls :  'x-unselectable',
38392     
38393     
38394     rowClass : "x-grid-row",
38395
38396     cellClass : "x-grid-col",
38397
38398     tdClass : "x-grid-td",
38399
38400     hdClass : "x-grid-hd",
38401
38402     splitClass : "x-grid-split",
38403
38404     sortClasses : ["sort-asc", "sort-desc"],
38405
38406     enableMoveAnim : false,
38407
38408     hlColor: "C3DAF9",
38409
38410     dh : Roo.DomHelper,
38411
38412     fly : Roo.Element.fly,
38413
38414     css : Roo.util.CSS,
38415
38416     borderWidth: 1,
38417
38418     splitOffset: 3,
38419
38420     scrollIncrement : 22,
38421
38422     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
38423
38424     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
38425
38426     bind : function(ds, cm){
38427         if(this.ds){
38428             this.ds.un("load", this.onLoad, this);
38429             this.ds.un("datachanged", this.onDataChange, this);
38430             this.ds.un("add", this.onAdd, this);
38431             this.ds.un("remove", this.onRemove, this);
38432             this.ds.un("update", this.onUpdate, this);
38433             this.ds.un("clear", this.onClear, this);
38434         }
38435         if(ds){
38436             ds.on("load", this.onLoad, this);
38437             ds.on("datachanged", this.onDataChange, this);
38438             ds.on("add", this.onAdd, this);
38439             ds.on("remove", this.onRemove, this);
38440             ds.on("update", this.onUpdate, this);
38441             ds.on("clear", this.onClear, this);
38442         }
38443         this.ds = ds;
38444
38445         if(this.cm){
38446             this.cm.un("widthchange", this.onColWidthChange, this);
38447             this.cm.un("headerchange", this.onHeaderChange, this);
38448             this.cm.un("hiddenchange", this.onHiddenChange, this);
38449             this.cm.un("columnmoved", this.onColumnMove, this);
38450             this.cm.un("columnlockchange", this.onColumnLock, this);
38451         }
38452         if(cm){
38453             this.generateRules(cm);
38454             cm.on("widthchange", this.onColWidthChange, this);
38455             cm.on("headerchange", this.onHeaderChange, this);
38456             cm.on("hiddenchange", this.onHiddenChange, this);
38457             cm.on("columnmoved", this.onColumnMove, this);
38458             cm.on("columnlockchange", this.onColumnLock, this);
38459         }
38460         this.cm = cm;
38461     },
38462
38463     init: function(grid){
38464         Roo.grid.GridView.superclass.init.call(this, grid);
38465
38466         this.bind(grid.dataSource, grid.colModel);
38467
38468         grid.on("headerclick", this.handleHeaderClick, this);
38469
38470         if(grid.trackMouseOver){
38471             grid.on("mouseover", this.onRowOver, this);
38472             grid.on("mouseout", this.onRowOut, this);
38473         }
38474         grid.cancelTextSelection = function(){};
38475         this.gridId = grid.id;
38476
38477         var tpls = this.templates || {};
38478
38479         if(!tpls.master){
38480             tpls.master = new Roo.Template(
38481                '<div class="x-grid" hidefocus="true">',
38482                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
38483                   '<div class="x-grid-topbar"></div>',
38484                   '<div class="x-grid-scroller"><div></div></div>',
38485                   '<div class="x-grid-locked">',
38486                       '<div class="x-grid-header">{lockedHeader}</div>',
38487                       '<div class="x-grid-body">{lockedBody}</div>',
38488                   "</div>",
38489                   '<div class="x-grid-viewport">',
38490                       '<div class="x-grid-header">{header}</div>',
38491                       '<div class="x-grid-body">{body}</div>',
38492                   "</div>",
38493                   '<div class="x-grid-bottombar"></div>',
38494                  
38495                   '<div class="x-grid-resize-proxy">&#160;</div>',
38496                "</div>"
38497             );
38498             tpls.master.disableformats = true;
38499         }
38500
38501         if(!tpls.header){
38502             tpls.header = new Roo.Template(
38503                '<table border="0" cellspacing="0" cellpadding="0">',
38504                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
38505                "</table>{splits}"
38506             );
38507             tpls.header.disableformats = true;
38508         }
38509         tpls.header.compile();
38510
38511         if(!tpls.hcell){
38512             tpls.hcell = new Roo.Template(
38513                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
38514                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
38515                 "</div></td>"
38516              );
38517              tpls.hcell.disableFormats = true;
38518         }
38519         tpls.hcell.compile();
38520
38521         if(!tpls.hsplit){
38522             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
38523                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
38524             tpls.hsplit.disableFormats = true;
38525         }
38526         tpls.hsplit.compile();
38527
38528         if(!tpls.body){
38529             tpls.body = new Roo.Template(
38530                '<table border="0" cellspacing="0" cellpadding="0">',
38531                "<tbody>{rows}</tbody>",
38532                "</table>"
38533             );
38534             tpls.body.disableFormats = true;
38535         }
38536         tpls.body.compile();
38537
38538         if(!tpls.row){
38539             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
38540             tpls.row.disableFormats = true;
38541         }
38542         tpls.row.compile();
38543
38544         if(!tpls.cell){
38545             tpls.cell = new Roo.Template(
38546                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
38547                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
38548                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
38549                 "</td>"
38550             );
38551             tpls.cell.disableFormats = true;
38552         }
38553         tpls.cell.compile();
38554
38555         this.templates = tpls;
38556     },
38557
38558     // remap these for backwards compat
38559     onColWidthChange : function(){
38560         this.updateColumns.apply(this, arguments);
38561     },
38562     onHeaderChange : function(){
38563         this.updateHeaders.apply(this, arguments);
38564     }, 
38565     onHiddenChange : function(){
38566         this.handleHiddenChange.apply(this, arguments);
38567     },
38568     onColumnMove : function(){
38569         this.handleColumnMove.apply(this, arguments);
38570     },
38571     onColumnLock : function(){
38572         this.handleLockChange.apply(this, arguments);
38573     },
38574
38575     onDataChange : function(){
38576         this.refresh();
38577         this.updateHeaderSortState();
38578     },
38579
38580     onClear : function(){
38581         this.refresh();
38582     },
38583
38584     onUpdate : function(ds, record){
38585         this.refreshRow(record);
38586     },
38587
38588     refreshRow : function(record){
38589         var ds = this.ds, index;
38590         if(typeof record == 'number'){
38591             index = record;
38592             record = ds.getAt(index);
38593         }else{
38594             index = ds.indexOf(record);
38595         }
38596         this.insertRows(ds, index, index, true);
38597         this.onRemove(ds, record, index+1, true);
38598         this.syncRowHeights(index, index);
38599         this.layout();
38600         this.fireEvent("rowupdated", this, index, record);
38601     },
38602
38603     onAdd : function(ds, records, index){
38604         this.insertRows(ds, index, index + (records.length-1));
38605     },
38606
38607     onRemove : function(ds, record, index, isUpdate){
38608         if(isUpdate !== true){
38609             this.fireEvent("beforerowremoved", this, index, record);
38610         }
38611         var bt = this.getBodyTable(), lt = this.getLockedTable();
38612         if(bt.rows[index]){
38613             bt.firstChild.removeChild(bt.rows[index]);
38614         }
38615         if(lt.rows[index]){
38616             lt.firstChild.removeChild(lt.rows[index]);
38617         }
38618         if(isUpdate !== true){
38619             this.stripeRows(index);
38620             this.syncRowHeights(index, index);
38621             this.layout();
38622             this.fireEvent("rowremoved", this, index, record);
38623         }
38624     },
38625
38626     onLoad : function(){
38627         this.scrollToTop();
38628     },
38629
38630     /**
38631      * Scrolls the grid to the top
38632      */
38633     scrollToTop : function(){
38634         if(this.scroller){
38635             this.scroller.dom.scrollTop = 0;
38636             this.syncScroll();
38637         }
38638     },
38639
38640     /**
38641      * Gets a panel in the header of the grid that can be used for toolbars etc.
38642      * After modifying the contents of this panel a call to grid.autoSize() may be
38643      * required to register any changes in size.
38644      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
38645      * @return Roo.Element
38646      */
38647     getHeaderPanel : function(doShow){
38648         if(doShow){
38649             this.headerPanel.show();
38650         }
38651         return this.headerPanel;
38652     },
38653
38654     /**
38655      * Gets a panel in the footer of the grid that can be used for toolbars etc.
38656      * After modifying the contents of this panel a call to grid.autoSize() may be
38657      * required to register any changes in size.
38658      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
38659      * @return Roo.Element
38660      */
38661     getFooterPanel : function(doShow){
38662         if(doShow){
38663             this.footerPanel.show();
38664         }
38665         return this.footerPanel;
38666     },
38667
38668     initElements : function(){
38669         var E = Roo.Element;
38670         var el = this.grid.getGridEl().dom.firstChild;
38671         var cs = el.childNodes;
38672
38673         this.el = new E(el);
38674         
38675          this.focusEl = new E(el.firstChild);
38676         this.focusEl.swallowEvent("click", true);
38677         
38678         this.headerPanel = new E(cs[1]);
38679         this.headerPanel.enableDisplayMode("block");
38680
38681         this.scroller = new E(cs[2]);
38682         this.scrollSizer = new E(this.scroller.dom.firstChild);
38683
38684         this.lockedWrap = new E(cs[3]);
38685         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
38686         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
38687
38688         this.mainWrap = new E(cs[4]);
38689         this.mainHd = new E(this.mainWrap.dom.firstChild);
38690         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
38691
38692         this.footerPanel = new E(cs[5]);
38693         this.footerPanel.enableDisplayMode("block");
38694
38695         this.resizeProxy = new E(cs[6]);
38696
38697         this.headerSelector = String.format(
38698            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
38699            this.lockedHd.id, this.mainHd.id
38700         );
38701
38702         this.splitterSelector = String.format(
38703            '#{0} div.x-grid-split, #{1} div.x-grid-split',
38704            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
38705         );
38706     },
38707     idToCssName : function(s)
38708     {
38709         return s.replace(/[^a-z0-9]+/ig, '-');
38710     },
38711
38712     getHeaderCell : function(index){
38713         return Roo.DomQuery.select(this.headerSelector)[index];
38714     },
38715
38716     getHeaderCellMeasure : function(index){
38717         return this.getHeaderCell(index).firstChild;
38718     },
38719
38720     getHeaderCellText : function(index){
38721         return this.getHeaderCell(index).firstChild.firstChild;
38722     },
38723
38724     getLockedTable : function(){
38725         return this.lockedBody.dom.firstChild;
38726     },
38727
38728     getBodyTable : function(){
38729         return this.mainBody.dom.firstChild;
38730     },
38731
38732     getLockedRow : function(index){
38733         return this.getLockedTable().rows[index];
38734     },
38735
38736     getRow : function(index){
38737         return this.getBodyTable().rows[index];
38738     },
38739
38740     getRowComposite : function(index){
38741         if(!this.rowEl){
38742             this.rowEl = new Roo.CompositeElementLite();
38743         }
38744         var els = [], lrow, mrow;
38745         if(lrow = this.getLockedRow(index)){
38746             els.push(lrow);
38747         }
38748         if(mrow = this.getRow(index)){
38749             els.push(mrow);
38750         }
38751         this.rowEl.elements = els;
38752         return this.rowEl;
38753     },
38754     /**
38755      * Gets the 'td' of the cell
38756      * 
38757      * @param {Integer} rowIndex row to select
38758      * @param {Integer} colIndex column to select
38759      * 
38760      * @return {Object} 
38761      */
38762     getCell : function(rowIndex, colIndex){
38763         var locked = this.cm.getLockedCount();
38764         var source;
38765         if(colIndex < locked){
38766             source = this.lockedBody.dom.firstChild;
38767         }else{
38768             source = this.mainBody.dom.firstChild;
38769             colIndex -= locked;
38770         }
38771         return source.rows[rowIndex].childNodes[colIndex];
38772     },
38773
38774     getCellText : function(rowIndex, colIndex){
38775         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
38776     },
38777
38778     getCellBox : function(cell){
38779         var b = this.fly(cell).getBox();
38780         if(Roo.isOpera){ // opera fails to report the Y
38781             b.y = cell.offsetTop + this.mainBody.getY();
38782         }
38783         return b;
38784     },
38785
38786     getCellIndex : function(cell){
38787         var id = String(cell.className).match(this.cellRE);
38788         if(id){
38789             return parseInt(id[1], 10);
38790         }
38791         return 0;
38792     },
38793
38794     findHeaderIndex : function(n){
38795         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
38796         return r ? this.getCellIndex(r) : false;
38797     },
38798
38799     findHeaderCell : function(n){
38800         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
38801         return r ? r : false;
38802     },
38803
38804     findRowIndex : function(n){
38805         if(!n){
38806             return false;
38807         }
38808         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
38809         return r ? r.rowIndex : false;
38810     },
38811
38812     findCellIndex : function(node){
38813         var stop = this.el.dom;
38814         while(node && node != stop){
38815             if(this.findRE.test(node.className)){
38816                 return this.getCellIndex(node);
38817             }
38818             node = node.parentNode;
38819         }
38820         return false;
38821     },
38822
38823     getColumnId : function(index){
38824         return this.cm.getColumnId(index);
38825     },
38826
38827     getSplitters : function()
38828     {
38829         if(this.splitterSelector){
38830            return Roo.DomQuery.select(this.splitterSelector);
38831         }else{
38832             return null;
38833       }
38834     },
38835
38836     getSplitter : function(index){
38837         return this.getSplitters()[index];
38838     },
38839
38840     onRowOver : function(e, t){
38841         var row;
38842         if((row = this.findRowIndex(t)) !== false){
38843             this.getRowComposite(row).addClass("x-grid-row-over");
38844         }
38845     },
38846
38847     onRowOut : function(e, t){
38848         var row;
38849         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
38850             this.getRowComposite(row).removeClass("x-grid-row-over");
38851         }
38852     },
38853
38854     renderHeaders : function(){
38855         var cm = this.cm;
38856         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
38857         var cb = [], lb = [], sb = [], lsb = [], p = {};
38858         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38859             p.cellId = "x-grid-hd-0-" + i;
38860             p.splitId = "x-grid-csplit-0-" + i;
38861             p.id = cm.getColumnId(i);
38862             p.value = cm.getColumnHeader(i) || "";
38863             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
38864             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
38865             if(!cm.isLocked(i)){
38866                 cb[cb.length] = ct.apply(p);
38867                 sb[sb.length] = st.apply(p);
38868             }else{
38869                 lb[lb.length] = ct.apply(p);
38870                 lsb[lsb.length] = st.apply(p);
38871             }
38872         }
38873         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
38874                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
38875     },
38876
38877     updateHeaders : function(){
38878         var html = this.renderHeaders();
38879         this.lockedHd.update(html[0]);
38880         this.mainHd.update(html[1]);
38881     },
38882
38883     /**
38884      * Focuses the specified row.
38885      * @param {Number} row The row index
38886      */
38887     focusRow : function(row)
38888     {
38889         //Roo.log('GridView.focusRow');
38890         var x = this.scroller.dom.scrollLeft;
38891         this.focusCell(row, 0, false);
38892         this.scroller.dom.scrollLeft = x;
38893     },
38894
38895     /**
38896      * Focuses the specified cell.
38897      * @param {Number} row The row index
38898      * @param {Number} col The column index
38899      * @param {Boolean} hscroll false to disable horizontal scrolling
38900      */
38901     focusCell : function(row, col, hscroll)
38902     {
38903         //Roo.log('GridView.focusCell');
38904         var el = this.ensureVisible(row, col, hscroll);
38905         this.focusEl.alignTo(el, "tl-tl");
38906         if(Roo.isGecko){
38907             this.focusEl.focus();
38908         }else{
38909             this.focusEl.focus.defer(1, this.focusEl);
38910         }
38911     },
38912
38913     /**
38914      * Scrolls the specified cell into view
38915      * @param {Number} row The row index
38916      * @param {Number} col The column index
38917      * @param {Boolean} hscroll false to disable horizontal scrolling
38918      */
38919     ensureVisible : function(row, col, hscroll)
38920     {
38921         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
38922         //return null; //disable for testing.
38923         if(typeof row != "number"){
38924             row = row.rowIndex;
38925         }
38926         if(row < 0 && row >= this.ds.getCount()){
38927             return  null;
38928         }
38929         col = (col !== undefined ? col : 0);
38930         var cm = this.grid.colModel;
38931         while(cm.isHidden(col)){
38932             col++;
38933         }
38934
38935         var el = this.getCell(row, col);
38936         if(!el){
38937             return null;
38938         }
38939         var c = this.scroller.dom;
38940
38941         var ctop = parseInt(el.offsetTop, 10);
38942         var cleft = parseInt(el.offsetLeft, 10);
38943         var cbot = ctop + el.offsetHeight;
38944         var cright = cleft + el.offsetWidth;
38945         
38946         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
38947         var stop = parseInt(c.scrollTop, 10);
38948         var sleft = parseInt(c.scrollLeft, 10);
38949         var sbot = stop + ch;
38950         var sright = sleft + c.clientWidth;
38951         /*
38952         Roo.log('GridView.ensureVisible:' +
38953                 ' ctop:' + ctop +
38954                 ' c.clientHeight:' + c.clientHeight +
38955                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
38956                 ' stop:' + stop +
38957                 ' cbot:' + cbot +
38958                 ' sbot:' + sbot +
38959                 ' ch:' + ch  
38960                 );
38961         */
38962         if(ctop < stop){
38963             c.scrollTop = ctop;
38964             //Roo.log("set scrolltop to ctop DISABLE?");
38965         }else if(cbot > sbot){
38966             //Roo.log("set scrolltop to cbot-ch");
38967             c.scrollTop = cbot-ch;
38968         }
38969         
38970         if(hscroll !== false){
38971             if(cleft < sleft){
38972                 c.scrollLeft = cleft;
38973             }else if(cright > sright){
38974                 c.scrollLeft = cright-c.clientWidth;
38975             }
38976         }
38977          
38978         return el;
38979     },
38980
38981     updateColumns : function(){
38982         this.grid.stopEditing();
38983         var cm = this.grid.colModel, colIds = this.getColumnIds();
38984         //var totalWidth = cm.getTotalWidth();
38985         var pos = 0;
38986         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38987             //if(cm.isHidden(i)) continue;
38988             var w = cm.getColumnWidth(i);
38989             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
38990             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
38991         }
38992         this.updateSplitters();
38993     },
38994
38995     generateRules : function(cm){
38996         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
38997         Roo.util.CSS.removeStyleSheet(rulesId);
38998         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38999             var cid = cm.getColumnId(i);
39000             var align = '';
39001             if(cm.config[i].align){
39002                 align = 'text-align:'+cm.config[i].align+';';
39003             }
39004             var hidden = '';
39005             if(cm.isHidden(i)){
39006                 hidden = 'display:none;';
39007             }
39008             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
39009             ruleBuf.push(
39010                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
39011                     this.hdSelector, cid, " {\n", align, width, "}\n",
39012                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
39013                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
39014         }
39015         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
39016     },
39017
39018     updateSplitters : function(){
39019         var cm = this.cm, s = this.getSplitters();
39020         if(s){ // splitters not created yet
39021             var pos = 0, locked = true;
39022             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
39023                 if(cm.isHidden(i)) {
39024                     continue;
39025                 }
39026                 var w = cm.getColumnWidth(i); // make sure it's a number
39027                 if(!cm.isLocked(i) && locked){
39028                     pos = 0;
39029                     locked = false;
39030                 }
39031                 pos += w;
39032                 s[i].style.left = (pos-this.splitOffset) + "px";
39033             }
39034         }
39035     },
39036
39037     handleHiddenChange : function(colModel, colIndex, hidden){
39038         if(hidden){
39039             this.hideColumn(colIndex);
39040         }else{
39041             this.unhideColumn(colIndex);
39042         }
39043     },
39044
39045     hideColumn : function(colIndex){
39046         var cid = this.getColumnId(colIndex);
39047         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
39048         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
39049         if(Roo.isSafari){
39050             this.updateHeaders();
39051         }
39052         this.updateSplitters();
39053         this.layout();
39054     },
39055
39056     unhideColumn : function(colIndex){
39057         var cid = this.getColumnId(colIndex);
39058         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
39059         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
39060
39061         if(Roo.isSafari){
39062             this.updateHeaders();
39063         }
39064         this.updateSplitters();
39065         this.layout();
39066     },
39067
39068     insertRows : function(dm, firstRow, lastRow, isUpdate){
39069         if(firstRow == 0 && lastRow == dm.getCount()-1){
39070             this.refresh();
39071         }else{
39072             if(!isUpdate){
39073                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
39074             }
39075             var s = this.getScrollState();
39076             var markup = this.renderRows(firstRow, lastRow);
39077             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
39078             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
39079             this.restoreScroll(s);
39080             if(!isUpdate){
39081                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
39082                 this.syncRowHeights(firstRow, lastRow);
39083                 this.stripeRows(firstRow);
39084                 this.layout();
39085             }
39086         }
39087     },
39088
39089     bufferRows : function(markup, target, index){
39090         var before = null, trows = target.rows, tbody = target.tBodies[0];
39091         if(index < trows.length){
39092             before = trows[index];
39093         }
39094         var b = document.createElement("div");
39095         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
39096         var rows = b.firstChild.rows;
39097         for(var i = 0, len = rows.length; i < len; i++){
39098             if(before){
39099                 tbody.insertBefore(rows[0], before);
39100             }else{
39101                 tbody.appendChild(rows[0]);
39102             }
39103         }
39104         b.innerHTML = "";
39105         b = null;
39106     },
39107
39108     deleteRows : function(dm, firstRow, lastRow){
39109         if(dm.getRowCount()<1){
39110             this.fireEvent("beforerefresh", this);
39111             this.mainBody.update("");
39112             this.lockedBody.update("");
39113             this.fireEvent("refresh", this);
39114         }else{
39115             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
39116             var bt = this.getBodyTable();
39117             var tbody = bt.firstChild;
39118             var rows = bt.rows;
39119             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
39120                 tbody.removeChild(rows[firstRow]);
39121             }
39122             this.stripeRows(firstRow);
39123             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
39124         }
39125     },
39126
39127     updateRows : function(dataSource, firstRow, lastRow){
39128         var s = this.getScrollState();
39129         this.refresh();
39130         this.restoreScroll(s);
39131     },
39132
39133     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
39134         if(!noRefresh){
39135            this.refresh();
39136         }
39137         this.updateHeaderSortState();
39138     },
39139
39140     getScrollState : function(){
39141         
39142         var sb = this.scroller.dom;
39143         return {left: sb.scrollLeft, top: sb.scrollTop};
39144     },
39145
39146     stripeRows : function(startRow){
39147         if(!this.grid.stripeRows || this.ds.getCount() < 1){
39148             return;
39149         }
39150         startRow = startRow || 0;
39151         var rows = this.getBodyTable().rows;
39152         var lrows = this.getLockedTable().rows;
39153         var cls = ' x-grid-row-alt ';
39154         for(var i = startRow, len = rows.length; i < len; i++){
39155             var row = rows[i], lrow = lrows[i];
39156             var isAlt = ((i+1) % 2 == 0);
39157             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
39158             if(isAlt == hasAlt){
39159                 continue;
39160             }
39161             if(isAlt){
39162                 row.className += " x-grid-row-alt";
39163             }else{
39164                 row.className = row.className.replace("x-grid-row-alt", "");
39165             }
39166             if(lrow){
39167                 lrow.className = row.className;
39168             }
39169         }
39170     },
39171
39172     restoreScroll : function(state){
39173         //Roo.log('GridView.restoreScroll');
39174         var sb = this.scroller.dom;
39175         sb.scrollLeft = state.left;
39176         sb.scrollTop = state.top;
39177         this.syncScroll();
39178     },
39179
39180     syncScroll : function(){
39181         //Roo.log('GridView.syncScroll');
39182         var sb = this.scroller.dom;
39183         var sh = this.mainHd.dom;
39184         var bs = this.mainBody.dom;
39185         var lv = this.lockedBody.dom;
39186         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
39187         lv.scrollTop = bs.scrollTop = sb.scrollTop;
39188     },
39189
39190     handleScroll : function(e){
39191         this.syncScroll();
39192         var sb = this.scroller.dom;
39193         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
39194         e.stopEvent();
39195     },
39196
39197     handleWheel : function(e){
39198         var d = e.getWheelDelta();
39199         this.scroller.dom.scrollTop -= d*22;
39200         // set this here to prevent jumpy scrolling on large tables
39201         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
39202         e.stopEvent();
39203     },
39204
39205     renderRows : function(startRow, endRow){
39206         // pull in all the crap needed to render rows
39207         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
39208         var colCount = cm.getColumnCount();
39209
39210         if(ds.getCount() < 1){
39211             return ["", ""];
39212         }
39213
39214         // build a map for all the columns
39215         var cs = [];
39216         for(var i = 0; i < colCount; i++){
39217             var name = cm.getDataIndex(i);
39218             cs[i] = {
39219                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
39220                 renderer : cm.getRenderer(i),
39221                 id : cm.getColumnId(i),
39222                 locked : cm.isLocked(i),
39223                 has_editor : cm.isCellEditable(i)
39224             };
39225         }
39226
39227         startRow = startRow || 0;
39228         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
39229
39230         // records to render
39231         var rs = ds.getRange(startRow, endRow);
39232
39233         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
39234     },
39235
39236     // As much as I hate to duplicate code, this was branched because FireFox really hates
39237     // [].join("") on strings. The performance difference was substantial enough to
39238     // branch this function
39239     doRender : Roo.isGecko ?
39240             function(cs, rs, ds, startRow, colCount, stripe){
39241                 var ts = this.templates, ct = ts.cell, rt = ts.row;
39242                 // buffers
39243                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
39244                 
39245                 var hasListener = this.grid.hasListener('rowclass');
39246                 var rowcfg = {};
39247                 for(var j = 0, len = rs.length; j < len; j++){
39248                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
39249                     for(var i = 0; i < colCount; i++){
39250                         c = cs[i];
39251                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
39252                         p.id = c.id;
39253                         p.css = p.attr = "";
39254                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
39255                         if(p.value == undefined || p.value === "") {
39256                             p.value = "&#160;";
39257                         }
39258                         if(c.has_editor){
39259                             p.css += ' x-grid-editable-cell';
39260                         }
39261                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
39262                             p.css +=  ' x-grid-dirty-cell';
39263                         }
39264                         var markup = ct.apply(p);
39265                         if(!c.locked){
39266                             cb+= markup;
39267                         }else{
39268                             lcb+= markup;
39269                         }
39270                     }
39271                     var alt = [];
39272                     if(stripe && ((rowIndex+1) % 2 == 0)){
39273                         alt.push("x-grid-row-alt")
39274                     }
39275                     if(r.dirty){
39276                         alt.push(  " x-grid-dirty-row");
39277                     }
39278                     rp.cells = lcb;
39279                     if(this.getRowClass){
39280                         alt.push(this.getRowClass(r, rowIndex));
39281                     }
39282                     if (hasListener) {
39283                         rowcfg = {
39284                              
39285                             record: r,
39286                             rowIndex : rowIndex,
39287                             rowClass : ''
39288                         };
39289                         this.grid.fireEvent('rowclass', this, rowcfg);
39290                         alt.push(rowcfg.rowClass);
39291                     }
39292                     rp.alt = alt.join(" ");
39293                     lbuf+= rt.apply(rp);
39294                     rp.cells = cb;
39295                     buf+=  rt.apply(rp);
39296                 }
39297                 return [lbuf, buf];
39298             } :
39299             function(cs, rs, ds, startRow, colCount, stripe){
39300                 var ts = this.templates, ct = ts.cell, rt = ts.row;
39301                 // buffers
39302                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
39303                 var hasListener = this.grid.hasListener('rowclass');
39304  
39305                 var rowcfg = {};
39306                 for(var j = 0, len = rs.length; j < len; j++){
39307                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
39308                     for(var i = 0; i < colCount; i++){
39309                         c = cs[i];
39310                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
39311                         p.id = c.id;
39312                         p.css = p.attr = "";
39313                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
39314                         if(p.value == undefined || p.value === "") {
39315                             p.value = "&#160;";
39316                         }
39317                         //Roo.log(c);
39318                          if(c.has_editor){
39319                             p.css += ' x-grid-editable-cell';
39320                         }
39321                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
39322                             p.css += ' x-grid-dirty-cell' 
39323                         }
39324                         
39325                         var markup = ct.apply(p);
39326                         if(!c.locked){
39327                             cb[cb.length] = markup;
39328                         }else{
39329                             lcb[lcb.length] = markup;
39330                         }
39331                     }
39332                     var alt = [];
39333                     if(stripe && ((rowIndex+1) % 2 == 0)){
39334                         alt.push( "x-grid-row-alt");
39335                     }
39336                     if(r.dirty){
39337                         alt.push(" x-grid-dirty-row");
39338                     }
39339                     rp.cells = lcb;
39340                     if(this.getRowClass){
39341                         alt.push( this.getRowClass(r, rowIndex));
39342                     }
39343                     if (hasListener) {
39344                         rowcfg = {
39345                              
39346                             record: r,
39347                             rowIndex : rowIndex,
39348                             rowClass : ''
39349                         };
39350                         this.grid.fireEvent('rowclass', this, rowcfg);
39351                         alt.push(rowcfg.rowClass);
39352                     }
39353                     
39354                     rp.alt = alt.join(" ");
39355                     rp.cells = lcb.join("");
39356                     lbuf[lbuf.length] = rt.apply(rp);
39357                     rp.cells = cb.join("");
39358                     buf[buf.length] =  rt.apply(rp);
39359                 }
39360                 return [lbuf.join(""), buf.join("")];
39361             },
39362
39363     renderBody : function(){
39364         var markup = this.renderRows();
39365         var bt = this.templates.body;
39366         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
39367     },
39368
39369     /**
39370      * Refreshes the grid
39371      * @param {Boolean} headersToo
39372      */
39373     refresh : function(headersToo){
39374         this.fireEvent("beforerefresh", this);
39375         this.grid.stopEditing();
39376         var result = this.renderBody();
39377         this.lockedBody.update(result[0]);
39378         this.mainBody.update(result[1]);
39379         if(headersToo === true){
39380             this.updateHeaders();
39381             this.updateColumns();
39382             this.updateSplitters();
39383             this.updateHeaderSortState();
39384         }
39385         this.syncRowHeights();
39386         this.layout();
39387         this.fireEvent("refresh", this);
39388     },
39389
39390     handleColumnMove : function(cm, oldIndex, newIndex){
39391         this.indexMap = null;
39392         var s = this.getScrollState();
39393         this.refresh(true);
39394         this.restoreScroll(s);
39395         this.afterMove(newIndex);
39396     },
39397
39398     afterMove : function(colIndex){
39399         if(this.enableMoveAnim && Roo.enableFx){
39400             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
39401         }
39402         // if multisort - fix sortOrder, and reload..
39403         if (this.grid.dataSource.multiSort) {
39404             // the we can call sort again..
39405             var dm = this.grid.dataSource;
39406             var cm = this.grid.colModel;
39407             var so = [];
39408             for(var i = 0; i < cm.config.length; i++ ) {
39409                 
39410                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
39411                     continue; // dont' bother, it's not in sort list or being set.
39412                 }
39413                 
39414                 so.push(cm.config[i].dataIndex);
39415             };
39416             dm.sortOrder = so;
39417             dm.load(dm.lastOptions);
39418             
39419             
39420         }
39421         
39422     },
39423
39424     updateCell : function(dm, rowIndex, dataIndex){
39425         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
39426         if(typeof colIndex == "undefined"){ // not present in grid
39427             return;
39428         }
39429         var cm = this.grid.colModel;
39430         var cell = this.getCell(rowIndex, colIndex);
39431         var cellText = this.getCellText(rowIndex, colIndex);
39432
39433         var p = {
39434             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
39435             id : cm.getColumnId(colIndex),
39436             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
39437         };
39438         var renderer = cm.getRenderer(colIndex);
39439         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
39440         if(typeof val == "undefined" || val === "") {
39441             val = "&#160;";
39442         }
39443         cellText.innerHTML = val;
39444         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
39445         this.syncRowHeights(rowIndex, rowIndex);
39446     },
39447
39448     calcColumnWidth : function(colIndex, maxRowsToMeasure){
39449         var maxWidth = 0;
39450         if(this.grid.autoSizeHeaders){
39451             var h = this.getHeaderCellMeasure(colIndex);
39452             maxWidth = Math.max(maxWidth, h.scrollWidth);
39453         }
39454         var tb, index;
39455         if(this.cm.isLocked(colIndex)){
39456             tb = this.getLockedTable();
39457             index = colIndex;
39458         }else{
39459             tb = this.getBodyTable();
39460             index = colIndex - this.cm.getLockedCount();
39461         }
39462         if(tb && tb.rows){
39463             var rows = tb.rows;
39464             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
39465             for(var i = 0; i < stopIndex; i++){
39466                 var cell = rows[i].childNodes[index].firstChild;
39467                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
39468             }
39469         }
39470         return maxWidth + /*margin for error in IE*/ 5;
39471     },
39472     /**
39473      * Autofit a column to its content.
39474      * @param {Number} colIndex
39475      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
39476      */
39477      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
39478          if(this.cm.isHidden(colIndex)){
39479              return; // can't calc a hidden column
39480          }
39481         if(forceMinSize){
39482             var cid = this.cm.getColumnId(colIndex);
39483             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
39484            if(this.grid.autoSizeHeaders){
39485                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
39486            }
39487         }
39488         var newWidth = this.calcColumnWidth(colIndex);
39489         this.cm.setColumnWidth(colIndex,
39490             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
39491         if(!suppressEvent){
39492             this.grid.fireEvent("columnresize", colIndex, newWidth);
39493         }
39494     },
39495
39496     /**
39497      * Autofits all columns to their content and then expands to fit any extra space in the grid
39498      */
39499      autoSizeColumns : function(){
39500         var cm = this.grid.colModel;
39501         var colCount = cm.getColumnCount();
39502         for(var i = 0; i < colCount; i++){
39503             this.autoSizeColumn(i, true, true);
39504         }
39505         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
39506             this.fitColumns();
39507         }else{
39508             this.updateColumns();
39509             this.layout();
39510         }
39511     },
39512
39513     /**
39514      * Autofits all columns to the grid's width proportionate with their current size
39515      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
39516      */
39517     fitColumns : function(reserveScrollSpace){
39518         var cm = this.grid.colModel;
39519         var colCount = cm.getColumnCount();
39520         var cols = [];
39521         var width = 0;
39522         var i, w;
39523         for (i = 0; i < colCount; i++){
39524             if(!cm.isHidden(i) && !cm.isFixed(i)){
39525                 w = cm.getColumnWidth(i);
39526                 cols.push(i);
39527                 cols.push(w);
39528                 width += w;
39529             }
39530         }
39531         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
39532         if(reserveScrollSpace){
39533             avail -= 17;
39534         }
39535         var frac = (avail - cm.getTotalWidth())/width;
39536         while (cols.length){
39537             w = cols.pop();
39538             i = cols.pop();
39539             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
39540         }
39541         this.updateColumns();
39542         this.layout();
39543     },
39544
39545     onRowSelect : function(rowIndex){
39546         var row = this.getRowComposite(rowIndex);
39547         row.addClass("x-grid-row-selected");
39548     },
39549
39550     onRowDeselect : function(rowIndex){
39551         var row = this.getRowComposite(rowIndex);
39552         row.removeClass("x-grid-row-selected");
39553     },
39554
39555     onCellSelect : function(row, col){
39556         var cell = this.getCell(row, col);
39557         if(cell){
39558             Roo.fly(cell).addClass("x-grid-cell-selected");
39559         }
39560     },
39561
39562     onCellDeselect : function(row, col){
39563         var cell = this.getCell(row, col);
39564         if(cell){
39565             Roo.fly(cell).removeClass("x-grid-cell-selected");
39566         }
39567     },
39568
39569     updateHeaderSortState : function(){
39570         
39571         // sort state can be single { field: xxx, direction : yyy}
39572         // or   { xxx=>ASC , yyy : DESC ..... }
39573         
39574         var mstate = {};
39575         if (!this.ds.multiSort) { 
39576             var state = this.ds.getSortState();
39577             if(!state){
39578                 return;
39579             }
39580             mstate[state.field] = state.direction;
39581             // FIXME... - this is not used here.. but might be elsewhere..
39582             this.sortState = state;
39583             
39584         } else {
39585             mstate = this.ds.sortToggle;
39586         }
39587         //remove existing sort classes..
39588         
39589         var sc = this.sortClasses;
39590         var hds = this.el.select(this.headerSelector).removeClass(sc);
39591         
39592         for(var f in mstate) {
39593         
39594             var sortColumn = this.cm.findColumnIndex(f);
39595             
39596             if(sortColumn != -1){
39597                 var sortDir = mstate[f];        
39598                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
39599             }
39600         }
39601         
39602          
39603         
39604     },
39605
39606
39607     handleHeaderClick : function(g, index,e){
39608         
39609         Roo.log("header click");
39610         
39611         if (Roo.isTouch) {
39612             // touch events on header are handled by context
39613             this.handleHdCtx(g,index,e);
39614             return;
39615         }
39616         
39617         
39618         if(this.headersDisabled){
39619             return;
39620         }
39621         var dm = g.dataSource, cm = g.colModel;
39622         if(!cm.isSortable(index)){
39623             return;
39624         }
39625         g.stopEditing();
39626         
39627         if (dm.multiSort) {
39628             // update the sortOrder
39629             var so = [];
39630             for(var i = 0; i < cm.config.length; i++ ) {
39631                 
39632                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
39633                     continue; // dont' bother, it's not in sort list or being set.
39634                 }
39635                 
39636                 so.push(cm.config[i].dataIndex);
39637             };
39638             dm.sortOrder = so;
39639         }
39640         
39641         
39642         dm.sort(cm.getDataIndex(index));
39643     },
39644
39645
39646     destroy : function(){
39647         if(this.colMenu){
39648             this.colMenu.removeAll();
39649             Roo.menu.MenuMgr.unregister(this.colMenu);
39650             this.colMenu.getEl().remove();
39651             delete this.colMenu;
39652         }
39653         if(this.hmenu){
39654             this.hmenu.removeAll();
39655             Roo.menu.MenuMgr.unregister(this.hmenu);
39656             this.hmenu.getEl().remove();
39657             delete this.hmenu;
39658         }
39659         if(this.grid.enableColumnMove){
39660             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
39661             if(dds){
39662                 for(var dd in dds){
39663                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
39664                         var elid = dds[dd].dragElId;
39665                         dds[dd].unreg();
39666                         Roo.get(elid).remove();
39667                     } else if(dds[dd].config.isTarget){
39668                         dds[dd].proxyTop.remove();
39669                         dds[dd].proxyBottom.remove();
39670                         dds[dd].unreg();
39671                     }
39672                     if(Roo.dd.DDM.locationCache[dd]){
39673                         delete Roo.dd.DDM.locationCache[dd];
39674                     }
39675                 }
39676                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
39677             }
39678         }
39679         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
39680         this.bind(null, null);
39681         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
39682     },
39683
39684     handleLockChange : function(){
39685         this.refresh(true);
39686     },
39687
39688     onDenyColumnLock : function(){
39689
39690     },
39691
39692     onDenyColumnHide : function(){
39693
39694     },
39695
39696     handleHdMenuClick : function(item){
39697         var index = this.hdCtxIndex;
39698         var cm = this.cm, ds = this.ds;
39699         switch(item.id){
39700             case "asc":
39701                 ds.sort(cm.getDataIndex(index), "ASC");
39702                 break;
39703             case "desc":
39704                 ds.sort(cm.getDataIndex(index), "DESC");
39705                 break;
39706             case "lock":
39707                 var lc = cm.getLockedCount();
39708                 if(cm.getColumnCount(true) <= lc+1){
39709                     this.onDenyColumnLock();
39710                     return;
39711                 }
39712                 if(lc != index){
39713                     cm.setLocked(index, true, true);
39714                     cm.moveColumn(index, lc);
39715                     this.grid.fireEvent("columnmove", index, lc);
39716                 }else{
39717                     cm.setLocked(index, true);
39718                 }
39719             break;
39720             case "unlock":
39721                 var lc = cm.getLockedCount();
39722                 if((lc-1) != index){
39723                     cm.setLocked(index, false, true);
39724                     cm.moveColumn(index, lc-1);
39725                     this.grid.fireEvent("columnmove", index, lc-1);
39726                 }else{
39727                     cm.setLocked(index, false);
39728                 }
39729             break;
39730             case 'wider': // used to expand cols on touch..
39731             case 'narrow':
39732                 var cw = cm.getColumnWidth(index);
39733                 cw += (item.id == 'wider' ? 1 : -1) * 50;
39734                 cw = Math.max(0, cw);
39735                 cw = Math.min(cw,4000);
39736                 cm.setColumnWidth(index, cw);
39737                 break;
39738                 
39739             default:
39740                 index = cm.getIndexById(item.id.substr(4));
39741                 if(index != -1){
39742                     if(item.checked && cm.getColumnCount(true) <= 1){
39743                         this.onDenyColumnHide();
39744                         return false;
39745                     }
39746                     cm.setHidden(index, item.checked);
39747                 }
39748         }
39749         return true;
39750     },
39751
39752     beforeColMenuShow : function(){
39753         var cm = this.cm,  colCount = cm.getColumnCount();
39754         this.colMenu.removeAll();
39755         
39756         var items = [];
39757         for(var i = 0; i < colCount; i++){
39758             items.push({
39759                 id: "col-"+cm.getColumnId(i),
39760                 text: cm.getColumnHeader(i),
39761                 checked: !cm.isHidden(i),
39762                 hideOnClick:false
39763             });
39764         }
39765         
39766         if (this.grid.sortColMenu) {
39767             items.sort(function(a,b) {
39768                 if (a.text == b.text) {
39769                     return 0;
39770                 }
39771                 return a.text.toUpperCase() > b.text.toUpperCase() ? 1 : -1;
39772             });
39773         }
39774         
39775         for(var i = 0; i < colCount; i++){
39776             this.colMenu.add(new Roo.menu.CheckItem(items[i]));
39777         }
39778     },
39779
39780     handleHdCtx : function(g, index, e){
39781         e.stopEvent();
39782         var hd = this.getHeaderCell(index);
39783         this.hdCtxIndex = index;
39784         var ms = this.hmenu.items, cm = this.cm;
39785         ms.get("asc").setDisabled(!cm.isSortable(index));
39786         ms.get("desc").setDisabled(!cm.isSortable(index));
39787         if(this.grid.enableColLock !== false){
39788             ms.get("lock").setDisabled(cm.isLocked(index));
39789             ms.get("unlock").setDisabled(!cm.isLocked(index));
39790         }
39791         this.hmenu.show(hd, "tl-bl");
39792     },
39793
39794     handleHdOver : function(e){
39795         var hd = this.findHeaderCell(e.getTarget());
39796         if(hd && !this.headersDisabled){
39797             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
39798                this.fly(hd).addClass("x-grid-hd-over");
39799             }
39800         }
39801     },
39802
39803     handleHdOut : function(e){
39804         var hd = this.findHeaderCell(e.getTarget());
39805         if(hd){
39806             this.fly(hd).removeClass("x-grid-hd-over");
39807         }
39808     },
39809
39810     handleSplitDblClick : function(e, t){
39811         var i = this.getCellIndex(t);
39812         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
39813             this.autoSizeColumn(i, true);
39814             this.layout();
39815         }
39816     },
39817
39818     render : function(){
39819
39820         var cm = this.cm;
39821         var colCount = cm.getColumnCount();
39822
39823         if(this.grid.monitorWindowResize === true){
39824             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
39825         }
39826         var header = this.renderHeaders();
39827         var body = this.templates.body.apply({rows:""});
39828         var html = this.templates.master.apply({
39829             lockedBody: body,
39830             body: body,
39831             lockedHeader: header[0],
39832             header: header[1]
39833         });
39834
39835         //this.updateColumns();
39836
39837         this.grid.getGridEl().dom.innerHTML = html;
39838
39839         this.initElements();
39840         
39841         // a kludge to fix the random scolling effect in webkit
39842         this.el.on("scroll", function() {
39843             this.el.dom.scrollTop=0; // hopefully not recursive..
39844         },this);
39845
39846         this.scroller.on("scroll", this.handleScroll, this);
39847         this.lockedBody.on("mousewheel", this.handleWheel, this);
39848         this.mainBody.on("mousewheel", this.handleWheel, this);
39849
39850         this.mainHd.on("mouseover", this.handleHdOver, this);
39851         this.mainHd.on("mouseout", this.handleHdOut, this);
39852         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
39853                 {delegate: "."+this.splitClass});
39854
39855         this.lockedHd.on("mouseover", this.handleHdOver, this);
39856         this.lockedHd.on("mouseout", this.handleHdOut, this);
39857         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
39858                 {delegate: "."+this.splitClass});
39859
39860         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
39861             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
39862         }
39863
39864         this.updateSplitters();
39865
39866         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
39867             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
39868             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
39869         }
39870
39871         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
39872             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
39873             this.hmenu.add(
39874                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
39875                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
39876             );
39877             if(this.grid.enableColLock !== false){
39878                 this.hmenu.add('-',
39879                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
39880                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
39881                 );
39882             }
39883             if (Roo.isTouch) {
39884                  this.hmenu.add('-',
39885                     {id:"wider", text: this.columnsWiderText},
39886                     {id:"narrow", text: this.columnsNarrowText }
39887                 );
39888                 
39889                  
39890             }
39891             
39892             if(this.grid.enableColumnHide !== false){
39893
39894                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
39895                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
39896                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
39897
39898                 this.hmenu.add('-',
39899                     {id:"columns", text: this.columnsText, menu: this.colMenu}
39900                 );
39901             }
39902             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
39903
39904             this.grid.on("headercontextmenu", this.handleHdCtx, this);
39905         }
39906
39907         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
39908             this.dd = new Roo.grid.GridDragZone(this.grid, {
39909                 ddGroup : this.grid.ddGroup || 'GridDD'
39910             });
39911             
39912         }
39913
39914         /*
39915         for(var i = 0; i < colCount; i++){
39916             if(cm.isHidden(i)){
39917                 this.hideColumn(i);
39918             }
39919             if(cm.config[i].align){
39920                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
39921                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
39922             }
39923         }*/
39924         
39925         this.updateHeaderSortState();
39926
39927         this.beforeInitialResize();
39928         this.layout(true);
39929
39930         // two part rendering gives faster view to the user
39931         this.renderPhase2.defer(1, this);
39932     },
39933
39934     renderPhase2 : function(){
39935         // render the rows now
39936         this.refresh();
39937         if(this.grid.autoSizeColumns){
39938             this.autoSizeColumns();
39939         }
39940     },
39941
39942     beforeInitialResize : function(){
39943
39944     },
39945
39946     onColumnSplitterMoved : function(i, w){
39947         this.userResized = true;
39948         var cm = this.grid.colModel;
39949         cm.setColumnWidth(i, w, true);
39950         var cid = cm.getColumnId(i);
39951         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
39952         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
39953         this.updateSplitters();
39954         this.layout();
39955         this.grid.fireEvent("columnresize", i, w);
39956     },
39957
39958     syncRowHeights : function(startIndex, endIndex){
39959         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
39960             startIndex = startIndex || 0;
39961             var mrows = this.getBodyTable().rows;
39962             var lrows = this.getLockedTable().rows;
39963             var len = mrows.length-1;
39964             endIndex = Math.min(endIndex || len, len);
39965             for(var i = startIndex; i <= endIndex; i++){
39966                 var m = mrows[i], l = lrows[i];
39967                 var h = Math.max(m.offsetHeight, l.offsetHeight);
39968                 m.style.height = l.style.height = h + "px";
39969             }
39970         }
39971     },
39972
39973     layout : function(initialRender, is2ndPass)
39974     {
39975         var g = this.grid;
39976         var auto = g.autoHeight;
39977         var scrollOffset = 16;
39978         var c = g.getGridEl(), cm = this.cm,
39979                 expandCol = g.autoExpandColumn,
39980                 gv = this;
39981         //c.beginMeasure();
39982
39983         if(!c.dom.offsetWidth){ // display:none?
39984             if(initialRender){
39985                 this.lockedWrap.show();
39986                 this.mainWrap.show();
39987             }
39988             return;
39989         }
39990
39991         var hasLock = this.cm.isLocked(0);
39992
39993         var tbh = this.headerPanel.getHeight();
39994         var bbh = this.footerPanel.getHeight();
39995
39996         if(auto){
39997             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
39998             var newHeight = ch + c.getBorderWidth("tb");
39999             if(g.maxHeight){
40000                 newHeight = Math.min(g.maxHeight, newHeight);
40001             }
40002             c.setHeight(newHeight);
40003         }
40004
40005         if(g.autoWidth){
40006             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
40007         }
40008
40009         var s = this.scroller;
40010
40011         var csize = c.getSize(true);
40012
40013         this.el.setSize(csize.width, csize.height);
40014
40015         this.headerPanel.setWidth(csize.width);
40016         this.footerPanel.setWidth(csize.width);
40017
40018         var hdHeight = this.mainHd.getHeight();
40019         var vw = csize.width;
40020         var vh = csize.height - (tbh + bbh);
40021
40022         s.setSize(vw, vh);
40023
40024         var bt = this.getBodyTable();
40025         
40026         if(cm.getLockedCount() == cm.config.length){
40027             bt = this.getLockedTable();
40028         }
40029         
40030         var ltWidth = hasLock ?
40031                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
40032
40033         var scrollHeight = bt.offsetHeight;
40034         var scrollWidth = ltWidth + bt.offsetWidth;
40035         var vscroll = false, hscroll = false;
40036
40037         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
40038
40039         var lw = this.lockedWrap, mw = this.mainWrap;
40040         var lb = this.lockedBody, mb = this.mainBody;
40041
40042         setTimeout(function(){
40043             var t = s.dom.offsetTop;
40044             var w = s.dom.clientWidth,
40045                 h = s.dom.clientHeight;
40046
40047             lw.setTop(t);
40048             lw.setSize(ltWidth, h);
40049
40050             mw.setLeftTop(ltWidth, t);
40051             mw.setSize(w-ltWidth, h);
40052
40053             lb.setHeight(h-hdHeight);
40054             mb.setHeight(h-hdHeight);
40055
40056             if(is2ndPass !== true && !gv.userResized && expandCol){
40057                 // high speed resize without full column calculation
40058                 
40059                 var ci = cm.getIndexById(expandCol);
40060                 if (ci < 0) {
40061                     ci = cm.findColumnIndex(expandCol);
40062                 }
40063                 ci = Math.max(0, ci); // make sure it's got at least the first col.
40064                 var expandId = cm.getColumnId(ci);
40065                 var  tw = cm.getTotalWidth(false);
40066                 var currentWidth = cm.getColumnWidth(ci);
40067                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
40068                 if(currentWidth != cw){
40069                     cm.setColumnWidth(ci, cw, true);
40070                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
40071                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
40072                     gv.updateSplitters();
40073                     gv.layout(false, true);
40074                 }
40075             }
40076
40077             if(initialRender){
40078                 lw.show();
40079                 mw.show();
40080             }
40081             //c.endMeasure();
40082         }, 10);
40083     },
40084
40085     onWindowResize : function(){
40086         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
40087             return;
40088         }
40089         this.layout();
40090     },
40091
40092     appendFooter : function(parentEl){
40093         return null;
40094     },
40095
40096     sortAscText : "Sort Ascending",
40097     sortDescText : "Sort Descending",
40098     lockText : "Lock Column",
40099     unlockText : "Unlock Column",
40100     columnsText : "Columns",
40101  
40102     columnsWiderText : "Wider",
40103     columnsNarrowText : "Thinner"
40104 });
40105
40106
40107 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
40108     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
40109     this.proxy.el.addClass('x-grid3-col-dd');
40110 };
40111
40112 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
40113     handleMouseDown : function(e){
40114
40115     },
40116
40117     callHandleMouseDown : function(e){
40118         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
40119     }
40120 });
40121 /*
40122  * Based on:
40123  * Ext JS Library 1.1.1
40124  * Copyright(c) 2006-2007, Ext JS, LLC.
40125  *
40126  * Originally Released Under LGPL - original licence link has changed is not relivant.
40127  *
40128  * Fork - LGPL
40129  * <script type="text/javascript">
40130  */
40131  /**
40132  * @extends Roo.dd.DDProxy
40133  * @class Roo.grid.SplitDragZone
40134  * Support for Column Header resizing
40135  * @constructor
40136  * @param {Object} config
40137  */
40138 // private
40139 // This is a support class used internally by the Grid components
40140 Roo.grid.SplitDragZone = function(grid, hd, hd2){
40141     this.grid = grid;
40142     this.view = grid.getView();
40143     this.proxy = this.view.resizeProxy;
40144     Roo.grid.SplitDragZone.superclass.constructor.call(
40145         this,
40146         hd, // ID
40147         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
40148         {  // CONFIG
40149             dragElId : Roo.id(this.proxy.dom),
40150             resizeFrame:false
40151         }
40152     );
40153     
40154     this.setHandleElId(Roo.id(hd));
40155     if (hd2 !== false) {
40156         this.setOuterHandleElId(Roo.id(hd2));
40157     }
40158     
40159     this.scroll = false;
40160 };
40161 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
40162     fly: Roo.Element.fly,
40163
40164     b4StartDrag : function(x, y){
40165         this.view.headersDisabled = true;
40166         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
40167                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
40168         );
40169         this.proxy.setHeight(h);
40170         
40171         // for old system colWidth really stored the actual width?
40172         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
40173         // which in reality did not work.. - it worked only for fixed sizes
40174         // for resizable we need to use actual sizes.
40175         var w = this.cm.getColumnWidth(this.cellIndex);
40176         if (!this.view.mainWrap) {
40177             // bootstrap.
40178             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
40179         }
40180         
40181         
40182         
40183         // this was w-this.grid.minColumnWidth;
40184         // doesnt really make sense? - w = thie curren width or the rendered one?
40185         var minw = Math.max(w-this.grid.minColumnWidth, 0);
40186         this.resetConstraints();
40187         this.setXConstraint(minw, 1000);
40188         this.setYConstraint(0, 0);
40189         this.minX = x - minw;
40190         this.maxX = x + 1000;
40191         this.startPos = x;
40192         if (!this.view.mainWrap) { // this is Bootstrap code..
40193             this.getDragEl().style.display='block';
40194         }
40195         
40196         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
40197     },
40198
40199
40200     handleMouseDown : function(e){
40201         ev = Roo.EventObject.setEvent(e);
40202         var t = this.fly(ev.getTarget());
40203         if(t.hasClass("x-grid-split")){
40204             this.cellIndex = this.view.getCellIndex(t.dom);
40205             this.split = t.dom;
40206             this.cm = this.grid.colModel;
40207             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
40208                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
40209             }
40210         }
40211     },
40212
40213     endDrag : function(e){
40214         this.view.headersDisabled = false;
40215         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
40216         var diff = endX - this.startPos;
40217         // 
40218         var w = this.cm.getColumnWidth(this.cellIndex);
40219         if (!this.view.mainWrap) {
40220             w = 0;
40221         }
40222         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
40223     },
40224
40225     autoOffset : function(){
40226         this.setDelta(0,0);
40227     }
40228 });/*
40229  * Based on:
40230  * Ext JS Library 1.1.1
40231  * Copyright(c) 2006-2007, Ext JS, LLC.
40232  *
40233  * Originally Released Under LGPL - original licence link has changed is not relivant.
40234  *
40235  * Fork - LGPL
40236  * <script type="text/javascript">
40237  */
40238  
40239 // private
40240 // This is a support class used internally by the Grid components
40241 Roo.grid.GridDragZone = function(grid, config){
40242     this.view = grid.getView();
40243     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
40244     if(this.view.lockedBody){
40245         this.setHandleElId(Roo.id(this.view.mainBody.dom));
40246         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
40247     }
40248     this.scroll = false;
40249     this.grid = grid;
40250     this.ddel = document.createElement('div');
40251     this.ddel.className = 'x-grid-dd-wrap';
40252 };
40253
40254 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
40255     ddGroup : "GridDD",
40256
40257     getDragData : function(e){
40258         var t = Roo.lib.Event.getTarget(e);
40259         var rowIndex = this.view.findRowIndex(t);
40260         var sm = this.grid.selModel;
40261             
40262         //Roo.log(rowIndex);
40263         
40264         if (sm.getSelectedCell) {
40265             // cell selection..
40266             if (!sm.getSelectedCell()) {
40267                 return false;
40268             }
40269             if (rowIndex != sm.getSelectedCell()[0]) {
40270                 return false;
40271             }
40272         
40273         }
40274         if (sm.getSelections && sm.getSelections().length < 1) {
40275             return false;
40276         }
40277         
40278         
40279         // before it used to all dragging of unseleted... - now we dont do that.
40280         if(rowIndex !== false){
40281             
40282             // if editorgrid.. 
40283             
40284             
40285             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
40286                
40287             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
40288               //  
40289             //}
40290             if (e.hasModifier()){
40291                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
40292             }
40293             
40294             Roo.log("getDragData");
40295             
40296             return {
40297                 grid: this.grid,
40298                 ddel: this.ddel,
40299                 rowIndex: rowIndex,
40300                 selections: sm.getSelections ? sm.getSelections() : (
40301                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
40302             };
40303         }
40304         return false;
40305     },
40306     
40307     
40308     onInitDrag : function(e){
40309         var data = this.dragData;
40310         this.ddel.innerHTML = this.grid.getDragDropText();
40311         this.proxy.update(this.ddel);
40312         // fire start drag?
40313     },
40314
40315     afterRepair : function(){
40316         this.dragging = false;
40317     },
40318
40319     getRepairXY : function(e, data){
40320         return false;
40321     },
40322
40323     onEndDrag : function(data, e){
40324         // fire end drag?
40325     },
40326
40327     onValidDrop : function(dd, e, id){
40328         // fire drag drop?
40329         this.hideProxy();
40330     },
40331
40332     beforeInvalidDrop : function(e, id){
40333
40334     }
40335 });/*
40336  * Based on:
40337  * Ext JS Library 1.1.1
40338  * Copyright(c) 2006-2007, Ext JS, LLC.
40339  *
40340  * Originally Released Under LGPL - original licence link has changed is not relivant.
40341  *
40342  * Fork - LGPL
40343  * <script type="text/javascript">
40344  */
40345  
40346
40347 /**
40348  * @class Roo.grid.ColumnModel
40349  * @extends Roo.util.Observable
40350  * This is the default implementation of a ColumnModel used by the Grid. It defines
40351  * the columns in the grid.
40352  * <br>Usage:<br>
40353  <pre><code>
40354  var colModel = new Roo.grid.ColumnModel([
40355         {header: "Ticker", width: 60, sortable: true, locked: true},
40356         {header: "Company Name", width: 150, sortable: true},
40357         {header: "Market Cap.", width: 100, sortable: true},
40358         {header: "$ Sales", width: 100, sortable: true, renderer: money},
40359         {header: "Employees", width: 100, sortable: true, resizable: false}
40360  ]);
40361  </code></pre>
40362  * <p>
40363  
40364  * The config options listed for this class are options which may appear in each
40365  * individual column definition.
40366  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
40367  * @constructor
40368  * @param {Object} config An Array of column config objects. See this class's
40369  * config objects for details.
40370 */
40371 Roo.grid.ColumnModel = function(config){
40372         /**
40373      * The config passed into the constructor
40374      */
40375     this.config = []; //config;
40376     this.lookup = {};
40377
40378     // if no id, create one
40379     // if the column does not have a dataIndex mapping,
40380     // map it to the order it is in the config
40381     for(var i = 0, len = config.length; i < len; i++){
40382         this.addColumn(config[i]);
40383         
40384     }
40385
40386     /**
40387      * The width of columns which have no width specified (defaults to 100)
40388      * @type Number
40389      */
40390     this.defaultWidth = 100;
40391
40392     /**
40393      * Default sortable of columns which have no sortable specified (defaults to false)
40394      * @type Boolean
40395      */
40396     this.defaultSortable = false;
40397
40398     this.addEvents({
40399         /**
40400              * @event widthchange
40401              * Fires when the width of a column changes.
40402              * @param {ColumnModel} this
40403              * @param {Number} columnIndex The column index
40404              * @param {Number} newWidth The new width
40405              */
40406             "widthchange": true,
40407         /**
40408              * @event headerchange
40409              * Fires when the text of a header changes.
40410              * @param {ColumnModel} this
40411              * @param {Number} columnIndex The column index
40412              * @param {Number} newText The new header text
40413              */
40414             "headerchange": true,
40415         /**
40416              * @event hiddenchange
40417              * Fires when a column is hidden or "unhidden".
40418              * @param {ColumnModel} this
40419              * @param {Number} columnIndex The column index
40420              * @param {Boolean} hidden true if hidden, false otherwise
40421              */
40422             "hiddenchange": true,
40423             /**
40424          * @event columnmoved
40425          * Fires when a column is moved.
40426          * @param {ColumnModel} this
40427          * @param {Number} oldIndex
40428          * @param {Number} newIndex
40429          */
40430         "columnmoved" : true,
40431         /**
40432          * @event columlockchange
40433          * Fires when a column's locked state is changed
40434          * @param {ColumnModel} this
40435          * @param {Number} colIndex
40436          * @param {Boolean} locked true if locked
40437          */
40438         "columnlockchange" : true
40439     });
40440     Roo.grid.ColumnModel.superclass.constructor.call(this);
40441 };
40442 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
40443     /**
40444      * @cfg {String} header [required] The header text to display in the Grid view.
40445      */
40446         /**
40447      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
40448      */
40449         /**
40450      * @cfg {String} smHeader Header at Bootsrap Small width
40451      */
40452         /**
40453      * @cfg {String} mdHeader Header at Bootsrap Medium width
40454      */
40455         /**
40456      * @cfg {String} lgHeader Header at Bootsrap Large width
40457      */
40458         /**
40459      * @cfg {String} xlHeader Header at Bootsrap extra Large width
40460      */
40461     /**
40462      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
40463      * {@link Roo.data.Record} definition from which to draw the column's value. If not
40464      * specified, the column's index is used as an index into the Record's data Array.
40465      */
40466     /**
40467      * @cfg {Number} width  The initial width in pixels of the column. Using this
40468      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
40469      */
40470     /**
40471      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
40472      * Defaults to the value of the {@link #defaultSortable} property.
40473      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
40474      */
40475     /**
40476      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
40477      */
40478     /**
40479      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
40480      */
40481     /**
40482      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
40483      */
40484     /**
40485      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
40486      */
40487     /**
40488      * @cfg {Function} renderer A function used to generate HTML markup for a cell
40489      * given the cell's data value. See {@link #setRenderer}. If not specified, the
40490      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
40491      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
40492      */
40493        /**
40494      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
40495      */
40496     /**
40497      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
40498      */
40499     /**
40500      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
40501      */
40502     /**
40503      * @cfg {String} cursor ( auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing)
40504      */
40505     /**
40506      * @cfg {String} tooltip mouse over tooltip text
40507      */
40508     /**
40509      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
40510      */
40511     /**
40512      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
40513      */
40514     /**
40515      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
40516      */
40517     /**
40518      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
40519      */
40520         /**
40521      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
40522      */
40523     /**
40524      * Returns the id of the column at the specified index.
40525      * @param {Number} index The column index
40526      * @return {String} the id
40527      */
40528     getColumnId : function(index){
40529         return this.config[index].id;
40530     },
40531
40532     /**
40533      * Returns the column for a specified id.
40534      * @param {String} id The column id
40535      * @return {Object} the column
40536      */
40537     getColumnById : function(id){
40538         return this.lookup[id];
40539     },
40540
40541     
40542     /**
40543      * Returns the column Object for a specified dataIndex.
40544      * @param {String} dataIndex The column dataIndex
40545      * @return {Object|Boolean} the column or false if not found
40546      */
40547     getColumnByDataIndex: function(dataIndex){
40548         var index = this.findColumnIndex(dataIndex);
40549         return index > -1 ? this.config[index] : false;
40550     },
40551     
40552     /**
40553      * Returns the index for a specified column id.
40554      * @param {String} id The column id
40555      * @return {Number} the index, or -1 if not found
40556      */
40557     getIndexById : function(id){
40558         for(var i = 0, len = this.config.length; i < len; i++){
40559             if(this.config[i].id == id){
40560                 return i;
40561             }
40562         }
40563         return -1;
40564     },
40565     
40566     /**
40567      * Returns the index for a specified column dataIndex.
40568      * @param {String} dataIndex The column dataIndex
40569      * @return {Number} the index, or -1 if not found
40570      */
40571     
40572     findColumnIndex : function(dataIndex){
40573         for(var i = 0, len = this.config.length; i < len; i++){
40574             if(this.config[i].dataIndex == dataIndex){
40575                 return i;
40576             }
40577         }
40578         return -1;
40579     },
40580     
40581     
40582     moveColumn : function(oldIndex, newIndex){
40583         var c = this.config[oldIndex];
40584         this.config.splice(oldIndex, 1);
40585         this.config.splice(newIndex, 0, c);
40586         this.dataMap = null;
40587         this.fireEvent("columnmoved", this, oldIndex, newIndex);
40588     },
40589
40590     isLocked : function(colIndex){
40591         return this.config[colIndex].locked === true;
40592     },
40593
40594     setLocked : function(colIndex, value, suppressEvent){
40595         if(this.isLocked(colIndex) == value){
40596             return;
40597         }
40598         this.config[colIndex].locked = value;
40599         if(!suppressEvent){
40600             this.fireEvent("columnlockchange", this, colIndex, value);
40601         }
40602     },
40603
40604     getTotalLockedWidth : function(){
40605         var totalWidth = 0;
40606         for(var i = 0; i < this.config.length; i++){
40607             if(this.isLocked(i) && !this.isHidden(i)){
40608                 this.totalWidth += this.getColumnWidth(i);
40609             }
40610         }
40611         return totalWidth;
40612     },
40613
40614     getLockedCount : function(){
40615         for(var i = 0, len = this.config.length; i < len; i++){
40616             if(!this.isLocked(i)){
40617                 return i;
40618             }
40619         }
40620         
40621         return this.config.length;
40622     },
40623
40624     /**
40625      * Returns the number of columns.
40626      * @return {Number}
40627      */
40628     getColumnCount : function(visibleOnly){
40629         if(visibleOnly === true){
40630             var c = 0;
40631             for(var i = 0, len = this.config.length; i < len; i++){
40632                 if(!this.isHidden(i)){
40633                     c++;
40634                 }
40635             }
40636             return c;
40637         }
40638         return this.config.length;
40639     },
40640
40641     /**
40642      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
40643      * @param {Function} fn
40644      * @param {Object} scope (optional)
40645      * @return {Array} result
40646      */
40647     getColumnsBy : function(fn, scope){
40648         var r = [];
40649         for(var i = 0, len = this.config.length; i < len; i++){
40650             var c = this.config[i];
40651             if(fn.call(scope||this, c, i) === true){
40652                 r[r.length] = c;
40653             }
40654         }
40655         return r;
40656     },
40657
40658     /**
40659      * Returns true if the specified column is sortable.
40660      * @param {Number} col The column index
40661      * @return {Boolean}
40662      */
40663     isSortable : function(col){
40664         if(typeof this.config[col].sortable == "undefined"){
40665             return this.defaultSortable;
40666         }
40667         return this.config[col].sortable;
40668     },
40669
40670     /**
40671      * Returns the rendering (formatting) function defined for the column.
40672      * @param {Number} col The column index.
40673      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
40674      */
40675     getRenderer : function(col){
40676         if(!this.config[col].renderer){
40677             return Roo.grid.ColumnModel.defaultRenderer;
40678         }
40679         return this.config[col].renderer;
40680     },
40681
40682     /**
40683      * Sets the rendering (formatting) function for a column.
40684      * @param {Number} col The column index
40685      * @param {Function} fn The function to use to process the cell's raw data
40686      * to return HTML markup for the grid view. The render function is called with
40687      * the following parameters:<ul>
40688      * <li>Data value.</li>
40689      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
40690      * <li>css A CSS style string to apply to the table cell.</li>
40691      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
40692      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
40693      * <li>Row index</li>
40694      * <li>Column index</li>
40695      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
40696      */
40697     setRenderer : function(col, fn){
40698         this.config[col].renderer = fn;
40699     },
40700
40701     /**
40702      * Returns the width for the specified column.
40703      * @param {Number} col The column index
40704      * @param (optional) {String} gridSize bootstrap width size.
40705      * @return {Number}
40706      */
40707     getColumnWidth : function(col, gridSize)
40708         {
40709                 var cfg = this.config[col];
40710                 
40711                 if (typeof(gridSize) == 'undefined') {
40712                         return cfg.width * 1 || this.defaultWidth;
40713                 }
40714                 if (gridSize === false) { // if we set it..
40715                         return cfg.width || false;
40716                 }
40717                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
40718                 
40719                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
40720                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
40721                                 continue;
40722                         }
40723                         return cfg[ sizes[i] ];
40724                 }
40725                 return 1;
40726                 
40727     },
40728
40729     /**
40730      * Sets the width for a column.
40731      * @param {Number} col The column index
40732      * @param {Number} width The new width
40733      */
40734     setColumnWidth : function(col, width, suppressEvent){
40735         this.config[col].width = width;
40736         this.totalWidth = null;
40737         if(!suppressEvent){
40738              this.fireEvent("widthchange", this, col, width);
40739         }
40740     },
40741
40742     /**
40743      * Returns the total width of all columns.
40744      * @param {Boolean} includeHidden True to include hidden column widths
40745      * @return {Number}
40746      */
40747     getTotalWidth : function(includeHidden){
40748         if(!this.totalWidth){
40749             this.totalWidth = 0;
40750             for(var i = 0, len = this.config.length; i < len; i++){
40751                 if(includeHidden || !this.isHidden(i)){
40752                     this.totalWidth += this.getColumnWidth(i);
40753                 }
40754             }
40755         }
40756         return this.totalWidth;
40757     },
40758
40759     /**
40760      * Returns the header for the specified column.
40761      * @param {Number} col The column index
40762      * @return {String}
40763      */
40764     getColumnHeader : function(col){
40765         return this.config[col].header;
40766     },
40767
40768     /**
40769      * Sets the header for a column.
40770      * @param {Number} col The column index
40771      * @param {String} header The new header
40772      */
40773     setColumnHeader : function(col, header){
40774         this.config[col].header = header;
40775         this.fireEvent("headerchange", this, col, header);
40776     },
40777
40778     /**
40779      * Returns the tooltip for the specified column.
40780      * @param {Number} col The column index
40781      * @return {String}
40782      */
40783     getColumnTooltip : function(col){
40784             return this.config[col].tooltip;
40785     },
40786     /**
40787      * Sets the tooltip for a column.
40788      * @param {Number} col The column index
40789      * @param {String} tooltip The new tooltip
40790      */
40791     setColumnTooltip : function(col, tooltip){
40792             this.config[col].tooltip = tooltip;
40793     },
40794
40795     /**
40796      * Returns the dataIndex for the specified column.
40797      * @param {Number} col The column index
40798      * @return {Number}
40799      */
40800     getDataIndex : function(col){
40801         return this.config[col].dataIndex;
40802     },
40803
40804     /**
40805      * Sets the dataIndex for a column.
40806      * @param {Number} col The column index
40807      * @param {Number} dataIndex The new dataIndex
40808      */
40809     setDataIndex : function(col, dataIndex){
40810         this.config[col].dataIndex = dataIndex;
40811     },
40812
40813     
40814     
40815     /**
40816      * Returns true if the cell is editable.
40817      * @param {Number} colIndex The column index
40818      * @param {Number} rowIndex The row index - this is nto actually used..?
40819      * @return {Boolean}
40820      */
40821     isCellEditable : function(colIndex, rowIndex){
40822         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
40823     },
40824
40825     /**
40826      * Returns the editor defined for the cell/column.
40827      * return false or null to disable editing.
40828      * @param {Number} colIndex The column index
40829      * @param {Number} rowIndex The row index
40830      * @return {Object}
40831      */
40832     getCellEditor : function(colIndex, rowIndex){
40833         return this.config[colIndex].editor;
40834     },
40835
40836     /**
40837      * Sets if a column is editable.
40838      * @param {Number} col The column index
40839      * @param {Boolean} editable True if the column is editable
40840      */
40841     setEditable : function(col, editable){
40842         this.config[col].editable = editable;
40843     },
40844
40845
40846     /**
40847      * Returns true if the column is hidden.
40848      * @param {Number} colIndex The column index
40849      * @return {Boolean}
40850      */
40851     isHidden : function(colIndex){
40852         return this.config[colIndex].hidden;
40853     },
40854
40855
40856     /**
40857      * Returns true if the column width cannot be changed
40858      */
40859     isFixed : function(colIndex){
40860         return this.config[colIndex].fixed;
40861     },
40862
40863     /**
40864      * Returns true if the column can be resized
40865      * @return {Boolean}
40866      */
40867     isResizable : function(colIndex){
40868         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
40869     },
40870     /**
40871      * Sets if a column is hidden.
40872      * @param {Number} colIndex The column index
40873      * @param {Boolean} hidden True if the column is hidden
40874      */
40875     setHidden : function(colIndex, hidden){
40876         this.config[colIndex].hidden = hidden;
40877         this.totalWidth = null;
40878         this.fireEvent("hiddenchange", this, colIndex, hidden);
40879     },
40880
40881     /**
40882      * Sets the editor for a column.
40883      * @param {Number} col The column index
40884      * @param {Object} editor The editor object
40885      */
40886     setEditor : function(col, editor){
40887         this.config[col].editor = editor;
40888     },
40889     /**
40890      * Add a column (experimental...) - defaults to adding to the end..
40891      * @param {Object} config 
40892     */
40893     addColumn : function(c)
40894     {
40895     
40896         var i = this.config.length;
40897         this.config[i] = c;
40898         
40899         if(typeof c.dataIndex == "undefined"){
40900             c.dataIndex = i;
40901         }
40902         if(typeof c.renderer == "string"){
40903             c.renderer = Roo.util.Format[c.renderer];
40904         }
40905         if(typeof c.id == "undefined"){
40906             c.id = Roo.id();
40907         }
40908         if(c.editor && c.editor.xtype){
40909             c.editor  = Roo.factory(c.editor, Roo.grid);
40910         }
40911         if(c.editor && c.editor.isFormField){
40912             c.editor = new Roo.grid.GridEditor(c.editor);
40913         }
40914         this.lookup[c.id] = c;
40915     }
40916     
40917 });
40918
40919 Roo.grid.ColumnModel.defaultRenderer = function(value)
40920 {
40921     if(typeof value == "object") {
40922         return value;
40923     }
40924         if(typeof value == "string" && value.length < 1){
40925             return "&#160;";
40926         }
40927     
40928         return String.format("{0}", value);
40929 };
40930
40931 // Alias for backwards compatibility
40932 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
40933 /*
40934  * Based on:
40935  * Ext JS Library 1.1.1
40936  * Copyright(c) 2006-2007, Ext JS, LLC.
40937  *
40938  * Originally Released Under LGPL - original licence link has changed is not relivant.
40939  *
40940  * Fork - LGPL
40941  * <script type="text/javascript">
40942  */
40943
40944 /**
40945  * @class Roo.grid.AbstractSelectionModel
40946  * @extends Roo.util.Observable
40947  * @abstract
40948  * Abstract base class for grid SelectionModels.  It provides the interface that should be
40949  * implemented by descendant classes.  This class should not be directly instantiated.
40950  * @constructor
40951  */
40952 Roo.grid.AbstractSelectionModel = function(){
40953     this.locked = false;
40954     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
40955 };
40956
40957 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
40958     /** @ignore Called by the grid automatically. Do not call directly. */
40959     init : function(grid){
40960         this.grid = grid;
40961         this.initEvents();
40962     },
40963
40964     /**
40965      * Locks the selections.
40966      */
40967     lock : function(){
40968         this.locked = true;
40969     },
40970
40971     /**
40972      * Unlocks the selections.
40973      */
40974     unlock : function(){
40975         this.locked = false;
40976     },
40977
40978     /**
40979      * Returns true if the selections are locked.
40980      * @return {Boolean}
40981      */
40982     isLocked : function(){
40983         return this.locked;
40984     }
40985 });/*
40986  * Based on:
40987  * Ext JS Library 1.1.1
40988  * Copyright(c) 2006-2007, Ext JS, LLC.
40989  *
40990  * Originally Released Under LGPL - original licence link has changed is not relivant.
40991  *
40992  * Fork - LGPL
40993  * <script type="text/javascript">
40994  */
40995 /**
40996  * @extends Roo.grid.AbstractSelectionModel
40997  * @class Roo.grid.RowSelectionModel
40998  * The default SelectionModel used by {@link Roo.grid.Grid}.
40999  * It supports multiple selections and keyboard selection/navigation. 
41000  * @constructor
41001  * @param {Object} config
41002  */
41003 Roo.grid.RowSelectionModel = function(config){
41004     Roo.apply(this, config);
41005     this.selections = new Roo.util.MixedCollection(false, function(o){
41006         return o.id;
41007     });
41008
41009     this.last = false;
41010     this.lastActive = false;
41011
41012     this.addEvents({
41013         /**
41014         * @event selectionchange
41015         * Fires when the selection changes
41016         * @param {SelectionModel} this
41017         */
41018        "selectionchange" : true,
41019        /**
41020         * @event afterselectionchange
41021         * Fires after the selection changes (eg. by key press or clicking)
41022         * @param {SelectionModel} this
41023         */
41024        "afterselectionchange" : true,
41025        /**
41026         * @event beforerowselect
41027         * Fires when a row is selected being selected, return false to cancel.
41028         * @param {SelectionModel} this
41029         * @param {Number} rowIndex The selected index
41030         * @param {Boolean} keepExisting False if other selections will be cleared
41031         */
41032        "beforerowselect" : true,
41033        /**
41034         * @event rowselect
41035         * Fires when a row is selected.
41036         * @param {SelectionModel} this
41037         * @param {Number} rowIndex The selected index
41038         * @param {Roo.data.Record} r The record
41039         */
41040        "rowselect" : true,
41041        /**
41042         * @event rowdeselect
41043         * Fires when a row is deselected.
41044         * @param {SelectionModel} this
41045         * @param {Number} rowIndex The selected index
41046         */
41047         "rowdeselect" : true
41048     });
41049     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
41050     this.locked = false;
41051 };
41052
41053 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
41054     /**
41055      * @cfg {Boolean} singleSelect
41056      * True to allow selection of only one row at a time (defaults to false)
41057      */
41058     singleSelect : false,
41059
41060     // private
41061     initEvents : function(){
41062
41063         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
41064             this.grid.on("mousedown", this.handleMouseDown, this);
41065         }else{ // allow click to work like normal
41066             this.grid.on("rowclick", this.handleDragableRowClick, this);
41067         }
41068         // bootstrap does not have a view..
41069         var view = this.grid.view ? this.grid.view : this.grid;
41070         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
41071             "up" : function(e){
41072                 if(!e.shiftKey){
41073                     this.selectPrevious(e.shiftKey);
41074                 }else if(this.last !== false && this.lastActive !== false){
41075                     var last = this.last;
41076                     this.selectRange(this.last,  this.lastActive-1);
41077                     view.focusRow(this.lastActive);
41078                     if(last !== false){
41079                         this.last = last;
41080                     }
41081                 }else{
41082                     this.selectFirstRow();
41083                 }
41084                 this.fireEvent("afterselectionchange", this);
41085             },
41086             "down" : function(e){
41087                 if(!e.shiftKey){
41088                     this.selectNext(e.shiftKey);
41089                 }else if(this.last !== false && this.lastActive !== false){
41090                     var last = this.last;
41091                     this.selectRange(this.last,  this.lastActive+1);
41092                     view.focusRow(this.lastActive);
41093                     if(last !== false){
41094                         this.last = last;
41095                     }
41096                 }else{
41097                     this.selectFirstRow();
41098                 }
41099                 this.fireEvent("afterselectionchange", this);
41100             },
41101             scope: this
41102         });
41103
41104          
41105         view.on("refresh", this.onRefresh, this);
41106         view.on("rowupdated", this.onRowUpdated, this);
41107         view.on("rowremoved", this.onRemove, this);
41108     },
41109
41110     // private
41111     onRefresh : function(){
41112         var ds = this.grid.ds, i, v = this.grid.view;
41113         var s = this.selections;
41114         s.each(function(r){
41115             if((i = ds.indexOfId(r.id)) != -1){
41116                 v.onRowSelect(i);
41117                 s.add(ds.getAt(i)); // updating the selection relate data
41118             }else{
41119                 s.remove(r);
41120             }
41121         });
41122     },
41123
41124     // private
41125     onRemove : function(v, index, r){
41126         this.selections.remove(r);
41127     },
41128
41129     // private
41130     onRowUpdated : function(v, index, r){
41131         if(this.isSelected(r)){
41132             v.onRowSelect(index);
41133         }
41134     },
41135
41136     /**
41137      * Select records.
41138      * @param {Array} records The records to select
41139      * @param {Boolean} keepExisting (optional) True to keep existing selections
41140      */
41141     selectRecords : function(records, keepExisting){
41142         if(!keepExisting){
41143             this.clearSelections();
41144         }
41145         var ds = this.grid.ds;
41146         for(var i = 0, len = records.length; i < len; i++){
41147             this.selectRow(ds.indexOf(records[i]), true);
41148         }
41149     },
41150
41151     /**
41152      * Gets the number of selected rows.
41153      * @return {Number}
41154      */
41155     getCount : function(){
41156         return this.selections.length;
41157     },
41158
41159     /**
41160      * Selects the first row in the grid.
41161      */
41162     selectFirstRow : function(){
41163         this.selectRow(0);
41164     },
41165
41166     /**
41167      * Select the last row.
41168      * @param {Boolean} keepExisting (optional) True to keep existing selections
41169      */
41170     selectLastRow : function(keepExisting){
41171         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
41172     },
41173
41174     /**
41175      * Selects the row immediately following the last selected row.
41176      * @param {Boolean} keepExisting (optional) True to keep existing selections
41177      */
41178     selectNext : function(keepExisting){
41179         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
41180             this.selectRow(this.last+1, keepExisting);
41181             var view = this.grid.view ? this.grid.view : this.grid;
41182             view.focusRow(this.last);
41183         }
41184     },
41185
41186     /**
41187      * Selects the row that precedes the last selected row.
41188      * @param {Boolean} keepExisting (optional) True to keep existing selections
41189      */
41190     selectPrevious : function(keepExisting){
41191         if(this.last){
41192             this.selectRow(this.last-1, keepExisting);
41193             var view = this.grid.view ? this.grid.view : this.grid;
41194             view.focusRow(this.last);
41195         }
41196     },
41197
41198     /**
41199      * Returns the selected records
41200      * @return {Array} Array of selected records
41201      */
41202     getSelections : function(){
41203         return [].concat(this.selections.items);
41204     },
41205
41206     /**
41207      * Returns the first selected record.
41208      * @return {Record}
41209      */
41210     getSelected : function(){
41211         return this.selections.itemAt(0);
41212     },
41213
41214
41215     /**
41216      * Clears all selections.
41217      */
41218     clearSelections : function(fast){
41219         if(this.locked) {
41220             return;
41221         }
41222         if(fast !== true){
41223             var ds = this.grid.ds;
41224             var s = this.selections;
41225             s.each(function(r){
41226                 this.deselectRow(ds.indexOfId(r.id));
41227             }, this);
41228             s.clear();
41229         }else{
41230             this.selections.clear();
41231         }
41232         this.last = false;
41233     },
41234
41235
41236     /**
41237      * Selects all rows.
41238      */
41239     selectAll : function(){
41240         if(this.locked) {
41241             return;
41242         }
41243         this.selections.clear();
41244         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
41245             this.selectRow(i, true);
41246         }
41247     },
41248
41249     /**
41250      * Returns True if there is a selection.
41251      * @return {Boolean}
41252      */
41253     hasSelection : function(){
41254         return this.selections.length > 0;
41255     },
41256
41257     /**
41258      * Returns True if the specified row is selected.
41259      * @param {Number/Record} record The record or index of the record to check
41260      * @return {Boolean}
41261      */
41262     isSelected : function(index){
41263         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
41264         return (r && this.selections.key(r.id) ? true : false);
41265     },
41266
41267     /**
41268      * Returns True if the specified record id is selected.
41269      * @param {String} id The id of record to check
41270      * @return {Boolean}
41271      */
41272     isIdSelected : function(id){
41273         return (this.selections.key(id) ? true : false);
41274     },
41275
41276     // private
41277     handleMouseDown : function(e, t)
41278     {
41279         var view = this.grid.view ? this.grid.view : this.grid;
41280         var rowIndex;
41281         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
41282             return;
41283         };
41284         if(e.shiftKey && this.last !== false){
41285             var last = this.last;
41286             this.selectRange(last, rowIndex, e.ctrlKey);
41287             this.last = last; // reset the last
41288             view.focusRow(rowIndex);
41289         }else{
41290             var isSelected = this.isSelected(rowIndex);
41291             if(e.button !== 0 && isSelected){
41292                 view.focusRow(rowIndex);
41293             }else if(e.ctrlKey && isSelected){
41294                 this.deselectRow(rowIndex);
41295             }else if(!isSelected){
41296                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
41297                 view.focusRow(rowIndex);
41298             }
41299         }
41300         this.fireEvent("afterselectionchange", this);
41301     },
41302     // private
41303     handleDragableRowClick :  function(grid, rowIndex, e) 
41304     {
41305         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
41306             this.selectRow(rowIndex, false);
41307             var view = this.grid.view ? this.grid.view : this.grid;
41308             view.focusRow(rowIndex);
41309              this.fireEvent("afterselectionchange", this);
41310         }
41311     },
41312     
41313     /**
41314      * Selects multiple rows.
41315      * @param {Array} rows Array of the indexes of the row to select
41316      * @param {Boolean} keepExisting (optional) True to keep existing selections
41317      */
41318     selectRows : function(rows, keepExisting){
41319         if(!keepExisting){
41320             this.clearSelections();
41321         }
41322         for(var i = 0, len = rows.length; i < len; i++){
41323             this.selectRow(rows[i], true);
41324         }
41325     },
41326
41327     /**
41328      * Selects a range of rows. All rows in between startRow and endRow are also selected.
41329      * @param {Number} startRow The index of the first row in the range
41330      * @param {Number} endRow The index of the last row in the range
41331      * @param {Boolean} keepExisting (optional) True to retain existing selections
41332      */
41333     selectRange : function(startRow, endRow, keepExisting){
41334         if(this.locked) {
41335             return;
41336         }
41337         if(!keepExisting){
41338             this.clearSelections();
41339         }
41340         if(startRow <= endRow){
41341             for(var i = startRow; i <= endRow; i++){
41342                 this.selectRow(i, true);
41343             }
41344         }else{
41345             for(var i = startRow; i >= endRow; i--){
41346                 this.selectRow(i, true);
41347             }
41348         }
41349     },
41350
41351     /**
41352      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
41353      * @param {Number} startRow The index of the first row in the range
41354      * @param {Number} endRow The index of the last row in the range
41355      */
41356     deselectRange : function(startRow, endRow, preventViewNotify){
41357         if(this.locked) {
41358             return;
41359         }
41360         for(var i = startRow; i <= endRow; i++){
41361             this.deselectRow(i, preventViewNotify);
41362         }
41363     },
41364
41365     /**
41366      * Selects a row.
41367      * @param {Number} row The index of the row to select
41368      * @param {Boolean} keepExisting (optional) True to keep existing selections
41369      */
41370     selectRow : function(index, keepExisting, preventViewNotify){
41371         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
41372             return;
41373         }
41374         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
41375             if(!keepExisting || this.singleSelect){
41376                 this.clearSelections();
41377             }
41378             var r = this.grid.ds.getAt(index);
41379             this.selections.add(r);
41380             this.last = this.lastActive = index;
41381             if(!preventViewNotify){
41382                 var view = this.grid.view ? this.grid.view : this.grid;
41383                 view.onRowSelect(index);
41384             }
41385             this.fireEvent("rowselect", this, index, r);
41386             this.fireEvent("selectionchange", this);
41387         }
41388     },
41389
41390     /**
41391      * Deselects a row.
41392      * @param {Number} row The index of the row to deselect
41393      */
41394     deselectRow : function(index, preventViewNotify){
41395         if(this.locked) {
41396             return;
41397         }
41398         if(this.last == index){
41399             this.last = false;
41400         }
41401         if(this.lastActive == index){
41402             this.lastActive = false;
41403         }
41404         var r = this.grid.ds.getAt(index);
41405         this.selections.remove(r);
41406         if(!preventViewNotify){
41407             var view = this.grid.view ? this.grid.view : this.grid;
41408             view.onRowDeselect(index);
41409         }
41410         this.fireEvent("rowdeselect", this, index);
41411         this.fireEvent("selectionchange", this);
41412     },
41413
41414     // private
41415     restoreLast : function(){
41416         if(this._last){
41417             this.last = this._last;
41418         }
41419     },
41420
41421     // private
41422     acceptsNav : function(row, col, cm){
41423         return !cm.isHidden(col) && cm.isCellEditable(col, row);
41424     },
41425
41426     // private
41427     onEditorKey : function(field, e){
41428         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
41429         if(k == e.TAB){
41430             e.stopEvent();
41431             ed.completeEdit();
41432             if(e.shiftKey){
41433                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
41434             }else{
41435                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
41436             }
41437         }else if(k == e.ENTER && !e.ctrlKey){
41438             e.stopEvent();
41439             ed.completeEdit();
41440             if(e.shiftKey){
41441                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
41442             }else{
41443                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
41444             }
41445         }else if(k == e.ESC){
41446             ed.cancelEdit();
41447         }
41448         if(newCell){
41449             g.startEditing(newCell[0], newCell[1]);
41450         }
41451     }
41452 });/*
41453  * Based on:
41454  * Ext JS Library 1.1.1
41455  * Copyright(c) 2006-2007, Ext JS, LLC.
41456  *
41457  * Originally Released Under LGPL - original licence link has changed is not relivant.
41458  *
41459  * Fork - LGPL
41460  * <script type="text/javascript">
41461  */
41462 /**
41463  * @class Roo.grid.CellSelectionModel
41464  * @extends Roo.grid.AbstractSelectionModel
41465  * This class provides the basic implementation for cell selection in a grid.
41466  * @constructor
41467  * @param {Object} config The object containing the configuration of this model.
41468  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
41469  */
41470 Roo.grid.CellSelectionModel = function(config){
41471     Roo.apply(this, config);
41472
41473     this.selection = null;
41474
41475     this.addEvents({
41476         /**
41477              * @event beforerowselect
41478              * Fires before a cell is selected.
41479              * @param {SelectionModel} this
41480              * @param {Number} rowIndex The selected row index
41481              * @param {Number} colIndex The selected cell index
41482              */
41483             "beforecellselect" : true,
41484         /**
41485              * @event cellselect
41486              * Fires when a cell is selected.
41487              * @param {SelectionModel} this
41488              * @param {Number} rowIndex The selected row index
41489              * @param {Number} colIndex The selected cell index
41490              */
41491             "cellselect" : true,
41492         /**
41493              * @event selectionchange
41494              * Fires when the active selection changes.
41495              * @param {SelectionModel} this
41496              * @param {Object} selection null for no selection or an object (o) with two properties
41497                 <ul>
41498                 <li>o.record: the record object for the row the selection is in</li>
41499                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
41500                 </ul>
41501              */
41502             "selectionchange" : true,
41503         /**
41504              * @event tabend
41505              * Fires when the tab (or enter) was pressed on the last editable cell
41506              * You can use this to trigger add new row.
41507              * @param {SelectionModel} this
41508              */
41509             "tabend" : true,
41510          /**
41511              * @event beforeeditnext
41512              * Fires before the next editable sell is made active
41513              * You can use this to skip to another cell or fire the tabend
41514              *    if you set cell to false
41515              * @param {Object} eventdata object : { cell : [ row, col ] } 
41516              */
41517             "beforeeditnext" : true
41518     });
41519     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
41520 };
41521
41522 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
41523     
41524     enter_is_tab: false,
41525
41526     /** @ignore */
41527     initEvents : function(){
41528         this.grid.on("mousedown", this.handleMouseDown, this);
41529         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
41530         var view = this.grid.view;
41531         view.on("refresh", this.onViewChange, this);
41532         view.on("rowupdated", this.onRowUpdated, this);
41533         view.on("beforerowremoved", this.clearSelections, this);
41534         view.on("beforerowsinserted", this.clearSelections, this);
41535         if(this.grid.isEditor){
41536             this.grid.on("beforeedit", this.beforeEdit,  this);
41537         }
41538     },
41539
41540         //private
41541     beforeEdit : function(e){
41542         this.select(e.row, e.column, false, true, e.record);
41543     },
41544
41545         //private
41546     onRowUpdated : function(v, index, r){
41547         if(this.selection && this.selection.record == r){
41548             v.onCellSelect(index, this.selection.cell[1]);
41549         }
41550     },
41551
41552         //private
41553     onViewChange : function(){
41554         this.clearSelections(true);
41555     },
41556
41557         /**
41558          * Returns the currently selected cell,.
41559          * @return {Array} The selected cell (row, column) or null if none selected.
41560          */
41561     getSelectedCell : function(){
41562         return this.selection ? this.selection.cell : null;
41563     },
41564
41565     /**
41566      * Clears all selections.
41567      * @param {Boolean} true to prevent the gridview from being notified about the change.
41568      */
41569     clearSelections : function(preventNotify){
41570         var s = this.selection;
41571         if(s){
41572             if(preventNotify !== true){
41573                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
41574             }
41575             this.selection = null;
41576             this.fireEvent("selectionchange", this, null);
41577         }
41578     },
41579
41580     /**
41581      * Returns true if there is a selection.
41582      * @return {Boolean}
41583      */
41584     hasSelection : function(){
41585         return this.selection ? true : false;
41586     },
41587
41588     /** @ignore */
41589     handleMouseDown : function(e, t){
41590         var v = this.grid.getView();
41591         if(this.isLocked()){
41592             return;
41593         };
41594         var row = v.findRowIndex(t);
41595         var cell = v.findCellIndex(t);
41596         if(row !== false && cell !== false){
41597             this.select(row, cell);
41598         }
41599     },
41600
41601     /**
41602      * Selects a cell.
41603      * @param {Number} rowIndex
41604      * @param {Number} collIndex
41605      */
41606     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
41607         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
41608             this.clearSelections();
41609             r = r || this.grid.dataSource.getAt(rowIndex);
41610             this.selection = {
41611                 record : r,
41612                 cell : [rowIndex, colIndex]
41613             };
41614             if(!preventViewNotify){
41615                 var v = this.grid.getView();
41616                 v.onCellSelect(rowIndex, colIndex);
41617                 if(preventFocus !== true){
41618                     v.focusCell(rowIndex, colIndex);
41619                 }
41620             }
41621             this.fireEvent("cellselect", this, rowIndex, colIndex);
41622             this.fireEvent("selectionchange", this, this.selection);
41623         }
41624     },
41625
41626         //private
41627     isSelectable : function(rowIndex, colIndex, cm){
41628         return !cm.isHidden(colIndex);
41629     },
41630
41631     /** @ignore */
41632     handleKeyDown : function(e){
41633         //Roo.log('Cell Sel Model handleKeyDown');
41634         if(!e.isNavKeyPress()){
41635             return;
41636         }
41637         var g = this.grid, s = this.selection;
41638         if(!s){
41639             e.stopEvent();
41640             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
41641             if(cell){
41642                 this.select(cell[0], cell[1]);
41643             }
41644             return;
41645         }
41646         var sm = this;
41647         var walk = function(row, col, step){
41648             return g.walkCells(row, col, step, sm.isSelectable,  sm);
41649         };
41650         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
41651         var newCell;
41652
41653       
41654
41655         switch(k){
41656             case e.TAB:
41657                 // handled by onEditorKey
41658                 if (g.isEditor && g.editing) {
41659                     return;
41660                 }
41661                 if(e.shiftKey) {
41662                     newCell = walk(r, c-1, -1);
41663                 } else {
41664                     newCell = walk(r, c+1, 1);
41665                 }
41666                 break;
41667             
41668             case e.DOWN:
41669                newCell = walk(r+1, c, 1);
41670                 break;
41671             
41672             case e.UP:
41673                 newCell = walk(r-1, c, -1);
41674                 break;
41675             
41676             case e.RIGHT:
41677                 newCell = walk(r, c+1, 1);
41678                 break;
41679             
41680             case e.LEFT:
41681                 newCell = walk(r, c-1, -1);
41682                 break;
41683             
41684             case e.ENTER:
41685                 
41686                 if(g.isEditor && !g.editing){
41687                    g.startEditing(r, c);
41688                    e.stopEvent();
41689                    return;
41690                 }
41691                 
41692                 
41693              break;
41694         };
41695         if(newCell){
41696             this.select(newCell[0], newCell[1]);
41697             e.stopEvent();
41698             
41699         }
41700     },
41701
41702     acceptsNav : function(row, col, cm){
41703         return !cm.isHidden(col) && cm.isCellEditable(col, row);
41704     },
41705     /**
41706      * Selects a cell.
41707      * @param {Number} field (not used) - as it's normally used as a listener
41708      * @param {Number} e - event - fake it by using
41709      *
41710      * var e = Roo.EventObjectImpl.prototype;
41711      * e.keyCode = e.TAB
41712      *
41713      * 
41714      */
41715     onEditorKey : function(field, e){
41716         
41717         var k = e.getKey(),
41718             newCell,
41719             g = this.grid,
41720             ed = g.activeEditor,
41721             forward = false;
41722         ///Roo.log('onEditorKey' + k);
41723         
41724         
41725         if (this.enter_is_tab && k == e.ENTER) {
41726             k = e.TAB;
41727         }
41728         
41729         if(k == e.TAB){
41730             if(e.shiftKey){
41731                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
41732             }else{
41733                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
41734                 forward = true;
41735             }
41736             
41737             e.stopEvent();
41738             
41739         } else if(k == e.ENTER &&  !e.ctrlKey){
41740             ed.completeEdit();
41741             e.stopEvent();
41742             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
41743         
41744                 } else if(k == e.ESC){
41745             ed.cancelEdit();
41746         }
41747                 
41748         if (newCell) {
41749             var ecall = { cell : newCell, forward : forward };
41750             this.fireEvent('beforeeditnext', ecall );
41751             newCell = ecall.cell;
41752                         forward = ecall.forward;
41753         }
41754                 
41755         if(newCell){
41756             //Roo.log('next cell after edit');
41757             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
41758         } else if (forward) {
41759             // tabbed past last
41760             this.fireEvent.defer(100, this, ['tabend',this]);
41761         }
41762     }
41763 });/*
41764  * Based on:
41765  * Ext JS Library 1.1.1
41766  * Copyright(c) 2006-2007, Ext JS, LLC.
41767  *
41768  * Originally Released Under LGPL - original licence link has changed is not relivant.
41769  *
41770  * Fork - LGPL
41771  * <script type="text/javascript">
41772  */
41773  
41774 /**
41775  * @class Roo.grid.EditorGrid
41776  * @extends Roo.grid.Grid
41777  * Class for creating and editable grid.
41778  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
41779  * The container MUST have some type of size defined for the grid to fill. The container will be 
41780  * automatically set to position relative if it isn't already.
41781  * @param {Object} dataSource The data model to bind to
41782  * @param {Object} colModel The column model with info about this grid's columns
41783  */
41784 Roo.grid.EditorGrid = function(container, config){
41785     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
41786     this.getGridEl().addClass("xedit-grid");
41787
41788     if(!this.selModel){
41789         this.selModel = new Roo.grid.CellSelectionModel();
41790     }
41791
41792     this.activeEditor = null;
41793
41794         this.addEvents({
41795             /**
41796              * @event beforeedit
41797              * Fires before cell editing is triggered. The edit event object has the following properties <br />
41798              * <ul style="padding:5px;padding-left:16px;">
41799              * <li>grid - This grid</li>
41800              * <li>record - The record being edited</li>
41801              * <li>field - The field name being edited</li>
41802              * <li>value - The value for the field being edited.</li>
41803              * <li>row - The grid row index</li>
41804              * <li>column - The grid column index</li>
41805              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
41806              * </ul>
41807              * @param {Object} e An edit event (see above for description)
41808              */
41809             "beforeedit" : true,
41810             /**
41811              * @event afteredit
41812              * Fires after a cell is edited. <br />
41813              * <ul style="padding:5px;padding-left:16px;">
41814              * <li>grid - This grid</li>
41815              * <li>record - The record being edited</li>
41816              * <li>field - The field name being edited</li>
41817              * <li>value - The value being set</li>
41818              * <li>originalValue - The original value for the field, before the edit.</li>
41819              * <li>row - The grid row index</li>
41820              * <li>column - The grid column index</li>
41821              * </ul>
41822              * @param {Object} e An edit event (see above for description)
41823              */
41824             "afteredit" : true,
41825             /**
41826              * @event validateedit
41827              * Fires after a cell is edited, but before the value is set in the record. 
41828          * You can use this to modify the value being set in the field, Return false
41829              * to cancel the change. The edit event object has the following properties <br />
41830              * <ul style="padding:5px;padding-left:16px;">
41831          * <li>editor - This editor</li>
41832              * <li>grid - This grid</li>
41833              * <li>record - The record being edited</li>
41834              * <li>field - The field name being edited</li>
41835              * <li>value - The value being set</li>
41836              * <li>originalValue - The original value for the field, before the edit.</li>
41837              * <li>row - The grid row index</li>
41838              * <li>column - The grid column index</li>
41839              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
41840              * </ul>
41841              * @param {Object} e An edit event (see above for description)
41842              */
41843             "validateedit" : true
41844         });
41845     this.on("bodyscroll", this.stopEditing,  this);
41846     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
41847 };
41848
41849 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
41850     /**
41851      * @cfg {Number} clicksToEdit
41852      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
41853      */
41854     clicksToEdit: 2,
41855
41856     // private
41857     isEditor : true,
41858     // private
41859     trackMouseOver: false, // causes very odd FF errors
41860
41861     onCellDblClick : function(g, row, col){
41862         this.startEditing(row, col);
41863     },
41864
41865     onEditComplete : function(ed, value, startValue){
41866         this.editing = false;
41867         this.activeEditor = null;
41868         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
41869         var r = ed.record;
41870         var field = this.colModel.getDataIndex(ed.col);
41871         var e = {
41872             grid: this,
41873             record: r,
41874             field: field,
41875             originalValue: startValue,
41876             value: value,
41877             row: ed.row,
41878             column: ed.col,
41879             cancel:false,
41880             editor: ed
41881         };
41882         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
41883         cell.show();
41884           
41885         if(String(value) !== String(startValue)){
41886             
41887             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
41888                 r.set(field, e.value);
41889                 // if we are dealing with a combo box..
41890                 // then we also set the 'name' colum to be the displayField
41891                 if (ed.field.displayField && ed.field.name) {
41892                     r.set(ed.field.name, ed.field.el.dom.value);
41893                 }
41894                 
41895                 delete e.cancel; //?? why!!!
41896                 this.fireEvent("afteredit", e);
41897             }
41898         } else {
41899             this.fireEvent("afteredit", e); // always fire it!
41900         }
41901         this.view.focusCell(ed.row, ed.col);
41902     },
41903
41904     /**
41905      * Starts editing the specified for the specified row/column
41906      * @param {Number} rowIndex
41907      * @param {Number} colIndex
41908      */
41909     startEditing : function(row, col){
41910         this.stopEditing();
41911         if(this.colModel.isCellEditable(col, row)){
41912             this.view.ensureVisible(row, col, true);
41913           
41914             var r = this.dataSource.getAt(row);
41915             var field = this.colModel.getDataIndex(col);
41916             var cell = Roo.get(this.view.getCell(row,col));
41917             var e = {
41918                 grid: this,
41919                 record: r,
41920                 field: field,
41921                 value: r.data[field],
41922                 row: row,
41923                 column: col,
41924                 cancel:false 
41925             };
41926             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
41927                 this.editing = true;
41928                 var ed = this.colModel.getCellEditor(col, row);
41929                 
41930                 if (!ed) {
41931                     return;
41932                 }
41933                 if(!ed.rendered){
41934                     ed.render(ed.parentEl || document.body);
41935                 }
41936                 ed.field.reset();
41937                
41938                 cell.hide();
41939                 
41940                 (function(){ // complex but required for focus issues in safari, ie and opera
41941                     ed.row = row;
41942                     ed.col = col;
41943                     ed.record = r;
41944                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
41945                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
41946                     this.activeEditor = ed;
41947                     var v = r.data[field];
41948                     ed.startEdit(this.view.getCell(row, col), v);
41949                     // combo's with 'displayField and name set
41950                     if (ed.field.displayField && ed.field.name) {
41951                         ed.field.el.dom.value = r.data[ed.field.name];
41952                     }
41953                     
41954                     
41955                 }).defer(50, this);
41956             }
41957         }
41958     },
41959         
41960     /**
41961      * Stops any active editing
41962      */
41963     stopEditing : function(){
41964         if(this.activeEditor){
41965             this.activeEditor.completeEdit();
41966         }
41967         this.activeEditor = null;
41968     },
41969         
41970          /**
41971      * Called to get grid's drag proxy text, by default returns this.ddText.
41972      * @return {String}
41973      */
41974     getDragDropText : function(){
41975         var count = this.selModel.getSelectedCell() ? 1 : 0;
41976         return String.format(this.ddText, count, count == 1 ? '' : 's');
41977     }
41978         
41979 });/*
41980  * Based on:
41981  * Ext JS Library 1.1.1
41982  * Copyright(c) 2006-2007, Ext JS, LLC.
41983  *
41984  * Originally Released Under LGPL - original licence link has changed is not relivant.
41985  *
41986  * Fork - LGPL
41987  * <script type="text/javascript">
41988  */
41989
41990 // private - not really -- you end up using it !
41991 // This is a support class used internally by the Grid components
41992
41993 /**
41994  * @class Roo.grid.GridEditor
41995  * @extends Roo.Editor
41996  * Class for creating and editable grid elements.
41997  * @param {Object} config any settings (must include field)
41998  */
41999 Roo.grid.GridEditor = function(field, config){
42000     if (!config && field.field) {
42001         config = field;
42002         field = Roo.factory(config.field, Roo.form);
42003     }
42004     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
42005     field.monitorTab = false;
42006 };
42007
42008 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
42009     
42010     /**
42011      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
42012      */
42013     
42014     alignment: "tl-tl",
42015     autoSize: "width",
42016     hideEl : false,
42017     cls: "x-small-editor x-grid-editor",
42018     shim:false,
42019     shadow:"frame"
42020 });/*
42021  * Based on:
42022  * Ext JS Library 1.1.1
42023  * Copyright(c) 2006-2007, Ext JS, LLC.
42024  *
42025  * Originally Released Under LGPL - original licence link has changed is not relivant.
42026  *
42027  * Fork - LGPL
42028  * <script type="text/javascript">
42029  */
42030   
42031
42032   
42033 Roo.grid.PropertyRecord = Roo.data.Record.create([
42034     {name:'name',type:'string'},  'value'
42035 ]);
42036
42037
42038 Roo.grid.PropertyStore = function(grid, source){
42039     this.grid = grid;
42040     this.store = new Roo.data.Store({
42041         recordType : Roo.grid.PropertyRecord
42042     });
42043     this.store.on('update', this.onUpdate,  this);
42044     if(source){
42045         this.setSource(source);
42046     }
42047     Roo.grid.PropertyStore.superclass.constructor.call(this);
42048 };
42049
42050
42051
42052 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
42053     setSource : function(o){
42054         this.source = o;
42055         this.store.removeAll();
42056         var data = [];
42057         for(var k in o){
42058             if(this.isEditableValue(o[k])){
42059                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
42060             }
42061         }
42062         this.store.loadRecords({records: data}, {}, true);
42063     },
42064
42065     onUpdate : function(ds, record, type){
42066         if(type == Roo.data.Record.EDIT){
42067             var v = record.data['value'];
42068             var oldValue = record.modified['value'];
42069             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
42070                 this.source[record.id] = v;
42071                 record.commit();
42072                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
42073             }else{
42074                 record.reject();
42075             }
42076         }
42077     },
42078
42079     getProperty : function(row){
42080        return this.store.getAt(row);
42081     },
42082
42083     isEditableValue: function(val){
42084         if(val && val instanceof Date){
42085             return true;
42086         }else if(typeof val == 'object' || typeof val == 'function'){
42087             return false;
42088         }
42089         return true;
42090     },
42091
42092     setValue : function(prop, value){
42093         this.source[prop] = value;
42094         this.store.getById(prop).set('value', value);
42095     },
42096
42097     getSource : function(){
42098         return this.source;
42099     }
42100 });
42101
42102 Roo.grid.PropertyColumnModel = function(grid, store){
42103     this.grid = grid;
42104     var g = Roo.grid;
42105     g.PropertyColumnModel.superclass.constructor.call(this, [
42106         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
42107         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
42108     ]);
42109     this.store = store;
42110     this.bselect = Roo.DomHelper.append(document.body, {
42111         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
42112             {tag: 'option', value: 'true', html: 'true'},
42113             {tag: 'option', value: 'false', html: 'false'}
42114         ]
42115     });
42116     Roo.id(this.bselect);
42117     var f = Roo.form;
42118     this.editors = {
42119         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
42120         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
42121         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
42122         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
42123         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
42124     };
42125     this.renderCellDelegate = this.renderCell.createDelegate(this);
42126     this.renderPropDelegate = this.renderProp.createDelegate(this);
42127 };
42128
42129 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
42130     
42131     
42132     nameText : 'Name',
42133     valueText : 'Value',
42134     
42135     dateFormat : 'm/j/Y',
42136     
42137     
42138     renderDate : function(dateVal){
42139         return dateVal.dateFormat(this.dateFormat);
42140     },
42141
42142     renderBool : function(bVal){
42143         return bVal ? 'true' : 'false';
42144     },
42145
42146     isCellEditable : function(colIndex, rowIndex){
42147         return colIndex == 1;
42148     },
42149
42150     getRenderer : function(col){
42151         return col == 1 ?
42152             this.renderCellDelegate : this.renderPropDelegate;
42153     },
42154
42155     renderProp : function(v){
42156         return this.getPropertyName(v);
42157     },
42158
42159     renderCell : function(val){
42160         var rv = val;
42161         if(val instanceof Date){
42162             rv = this.renderDate(val);
42163         }else if(typeof val == 'boolean'){
42164             rv = this.renderBool(val);
42165         }
42166         return Roo.util.Format.htmlEncode(rv);
42167     },
42168
42169     getPropertyName : function(name){
42170         var pn = this.grid.propertyNames;
42171         return pn && pn[name] ? pn[name] : name;
42172     },
42173
42174     getCellEditor : function(colIndex, rowIndex){
42175         var p = this.store.getProperty(rowIndex);
42176         var n = p.data['name'], val = p.data['value'];
42177         
42178         if(typeof(this.grid.customEditors[n]) == 'string'){
42179             return this.editors[this.grid.customEditors[n]];
42180         }
42181         if(typeof(this.grid.customEditors[n]) != 'undefined'){
42182             return this.grid.customEditors[n];
42183         }
42184         if(val instanceof Date){
42185             return this.editors['date'];
42186         }else if(typeof val == 'number'){
42187             return this.editors['number'];
42188         }else if(typeof val == 'boolean'){
42189             return this.editors['boolean'];
42190         }else{
42191             return this.editors['string'];
42192         }
42193     }
42194 });
42195
42196 /**
42197  * @class Roo.grid.PropertyGrid
42198  * @extends Roo.grid.EditorGrid
42199  * This class represents the  interface of a component based property grid control.
42200  * <br><br>Usage:<pre><code>
42201  var grid = new Roo.grid.PropertyGrid("my-container-id", {
42202       
42203  });
42204  // set any options
42205  grid.render();
42206  * </code></pre>
42207   
42208  * @constructor
42209  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
42210  * The container MUST have some type of size defined for the grid to fill. The container will be
42211  * automatically set to position relative if it isn't already.
42212  * @param {Object} config A config object that sets properties on this grid.
42213  */
42214 Roo.grid.PropertyGrid = function(container, config){
42215     config = config || {};
42216     var store = new Roo.grid.PropertyStore(this);
42217     this.store = store;
42218     var cm = new Roo.grid.PropertyColumnModel(this, store);
42219     store.store.sort('name', 'ASC');
42220     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
42221         ds: store.store,
42222         cm: cm,
42223         enableColLock:false,
42224         enableColumnMove:false,
42225         stripeRows:false,
42226         trackMouseOver: false,
42227         clicksToEdit:1
42228     }, config));
42229     this.getGridEl().addClass('x-props-grid');
42230     this.lastEditRow = null;
42231     this.on('columnresize', this.onColumnResize, this);
42232     this.addEvents({
42233          /**
42234              * @event beforepropertychange
42235              * Fires before a property changes (return false to stop?)
42236              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
42237              * @param {String} id Record Id
42238              * @param {String} newval New Value
42239          * @param {String} oldval Old Value
42240              */
42241         "beforepropertychange": true,
42242         /**
42243              * @event propertychange
42244              * Fires after a property changes
42245              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
42246              * @param {String} id Record Id
42247              * @param {String} newval New Value
42248          * @param {String} oldval Old Value
42249              */
42250         "propertychange": true
42251     });
42252     this.customEditors = this.customEditors || {};
42253 };
42254 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
42255     
42256      /**
42257      * @cfg {Object} customEditors map of colnames=> custom editors.
42258      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
42259      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
42260      * false disables editing of the field.
42261          */
42262     
42263       /**
42264      * @cfg {Object} propertyNames map of property Names to their displayed value
42265          */
42266     
42267     render : function(){
42268         Roo.grid.PropertyGrid.superclass.render.call(this);
42269         this.autoSize.defer(100, this);
42270     },
42271
42272     autoSize : function(){
42273         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
42274         if(this.view){
42275             this.view.fitColumns();
42276         }
42277     },
42278
42279     onColumnResize : function(){
42280         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
42281         this.autoSize();
42282     },
42283     /**
42284      * Sets the data for the Grid
42285      * accepts a Key => Value object of all the elements avaiable.
42286      * @param {Object} data  to appear in grid.
42287      */
42288     setSource : function(source){
42289         this.store.setSource(source);
42290         //this.autoSize();
42291     },
42292     /**
42293      * Gets all the data from the grid.
42294      * @return {Object} data  data stored in grid
42295      */
42296     getSource : function(){
42297         return this.store.getSource();
42298     }
42299 });/*
42300   
42301  * Licence LGPL
42302  
42303  */
42304  
42305 /**
42306  * @class Roo.grid.Calendar
42307  * @extends Roo.grid.Grid
42308  * This class extends the Grid to provide a calendar widget
42309  * <br><br>Usage:<pre><code>
42310  var grid = new Roo.grid.Calendar("my-container-id", {
42311      ds: myDataStore,
42312      cm: myColModel,
42313      selModel: mySelectionModel,
42314      autoSizeColumns: true,
42315      monitorWindowResize: false,
42316      trackMouseOver: true
42317      eventstore : real data store..
42318  });
42319  // set any options
42320  grid.render();
42321   
42322   * @constructor
42323  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
42324  * The container MUST have some type of size defined for the grid to fill. The container will be
42325  * automatically set to position relative if it isn't already.
42326  * @param {Object} config A config object that sets properties on this grid.
42327  */
42328 Roo.grid.Calendar = function(container, config){
42329         // initialize the container
42330         this.container = Roo.get(container);
42331         this.container.update("");
42332         this.container.setStyle("overflow", "hidden");
42333     this.container.addClass('x-grid-container');
42334
42335     this.id = this.container.id;
42336
42337     Roo.apply(this, config);
42338     // check and correct shorthanded configs
42339     
42340     var rows = [];
42341     var d =1;
42342     for (var r = 0;r < 6;r++) {
42343         
42344         rows[r]=[];
42345         for (var c =0;c < 7;c++) {
42346             rows[r][c]= '';
42347         }
42348     }
42349     if (this.eventStore) {
42350         this.eventStore= Roo.factory(this.eventStore, Roo.data);
42351         this.eventStore.on('load',this.onLoad, this);
42352         this.eventStore.on('beforeload',this.clearEvents, this);
42353          
42354     }
42355     
42356     this.dataSource = new Roo.data.Store({
42357             proxy: new Roo.data.MemoryProxy(rows),
42358             reader: new Roo.data.ArrayReader({}, [
42359                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
42360     });
42361
42362     this.dataSource.load();
42363     this.ds = this.dataSource;
42364     this.ds.xmodule = this.xmodule || false;
42365     
42366     
42367     var cellRender = function(v,x,r)
42368     {
42369         return String.format(
42370             '<div class="fc-day  fc-widget-content"><div>' +
42371                 '<div class="fc-event-container"></div>' +
42372                 '<div class="fc-day-number">{0}</div>'+
42373                 
42374                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
42375             '</div></div>', v);
42376     
42377     }
42378     
42379     
42380     this.colModel = new Roo.grid.ColumnModel( [
42381         {
42382             xtype: 'ColumnModel',
42383             xns: Roo.grid,
42384             dataIndex : 'weekday0',
42385             header : 'Sunday',
42386             renderer : cellRender
42387         },
42388         {
42389             xtype: 'ColumnModel',
42390             xns: Roo.grid,
42391             dataIndex : 'weekday1',
42392             header : 'Monday',
42393             renderer : cellRender
42394         },
42395         {
42396             xtype: 'ColumnModel',
42397             xns: Roo.grid,
42398             dataIndex : 'weekday2',
42399             header : 'Tuesday',
42400             renderer : cellRender
42401         },
42402         {
42403             xtype: 'ColumnModel',
42404             xns: Roo.grid,
42405             dataIndex : 'weekday3',
42406             header : 'Wednesday',
42407             renderer : cellRender
42408         },
42409         {
42410             xtype: 'ColumnModel',
42411             xns: Roo.grid,
42412             dataIndex : 'weekday4',
42413             header : 'Thursday',
42414             renderer : cellRender
42415         },
42416         {
42417             xtype: 'ColumnModel',
42418             xns: Roo.grid,
42419             dataIndex : 'weekday5',
42420             header : 'Friday',
42421             renderer : cellRender
42422         },
42423         {
42424             xtype: 'ColumnModel',
42425             xns: Roo.grid,
42426             dataIndex : 'weekday6',
42427             header : 'Saturday',
42428             renderer : cellRender
42429         }
42430     ]);
42431     this.cm = this.colModel;
42432     this.cm.xmodule = this.xmodule || false;
42433  
42434         
42435           
42436     //this.selModel = new Roo.grid.CellSelectionModel();
42437     //this.sm = this.selModel;
42438     //this.selModel.init(this);
42439     
42440     
42441     if(this.width){
42442         this.container.setWidth(this.width);
42443     }
42444
42445     if(this.height){
42446         this.container.setHeight(this.height);
42447     }
42448     /** @private */
42449         this.addEvents({
42450         // raw events
42451         /**
42452          * @event click
42453          * The raw click event for the entire grid.
42454          * @param {Roo.EventObject} e
42455          */
42456         "click" : true,
42457         /**
42458          * @event dblclick
42459          * The raw dblclick event for the entire grid.
42460          * @param {Roo.EventObject} e
42461          */
42462         "dblclick" : true,
42463         /**
42464          * @event contextmenu
42465          * The raw contextmenu event for the entire grid.
42466          * @param {Roo.EventObject} e
42467          */
42468         "contextmenu" : true,
42469         /**
42470          * @event mousedown
42471          * The raw mousedown event for the entire grid.
42472          * @param {Roo.EventObject} e
42473          */
42474         "mousedown" : true,
42475         /**
42476          * @event mouseup
42477          * The raw mouseup event for the entire grid.
42478          * @param {Roo.EventObject} e
42479          */
42480         "mouseup" : true,
42481         /**
42482          * @event mouseover
42483          * The raw mouseover event for the entire grid.
42484          * @param {Roo.EventObject} e
42485          */
42486         "mouseover" : true,
42487         /**
42488          * @event mouseout
42489          * The raw mouseout event for the entire grid.
42490          * @param {Roo.EventObject} e
42491          */
42492         "mouseout" : true,
42493         /**
42494          * @event keypress
42495          * The raw keypress event for the entire grid.
42496          * @param {Roo.EventObject} e
42497          */
42498         "keypress" : true,
42499         /**
42500          * @event keydown
42501          * The raw keydown event for the entire grid.
42502          * @param {Roo.EventObject} e
42503          */
42504         "keydown" : true,
42505
42506         // custom events
42507
42508         /**
42509          * @event cellclick
42510          * Fires when a cell is clicked
42511          * @param {Grid} this
42512          * @param {Number} rowIndex
42513          * @param {Number} columnIndex
42514          * @param {Roo.EventObject} e
42515          */
42516         "cellclick" : true,
42517         /**
42518          * @event celldblclick
42519          * Fires when a cell is double clicked
42520          * @param {Grid} this
42521          * @param {Number} rowIndex
42522          * @param {Number} columnIndex
42523          * @param {Roo.EventObject} e
42524          */
42525         "celldblclick" : true,
42526         /**
42527          * @event rowclick
42528          * Fires when a row is clicked
42529          * @param {Grid} this
42530          * @param {Number} rowIndex
42531          * @param {Roo.EventObject} e
42532          */
42533         "rowclick" : true,
42534         /**
42535          * @event rowdblclick
42536          * Fires when a row is double clicked
42537          * @param {Grid} this
42538          * @param {Number} rowIndex
42539          * @param {Roo.EventObject} e
42540          */
42541         "rowdblclick" : true,
42542         /**
42543          * @event headerclick
42544          * Fires when a header is clicked
42545          * @param {Grid} this
42546          * @param {Number} columnIndex
42547          * @param {Roo.EventObject} e
42548          */
42549         "headerclick" : true,
42550         /**
42551          * @event headerdblclick
42552          * Fires when a header cell is double clicked
42553          * @param {Grid} this
42554          * @param {Number} columnIndex
42555          * @param {Roo.EventObject} e
42556          */
42557         "headerdblclick" : true,
42558         /**
42559          * @event rowcontextmenu
42560          * Fires when a row is right clicked
42561          * @param {Grid} this
42562          * @param {Number} rowIndex
42563          * @param {Roo.EventObject} e
42564          */
42565         "rowcontextmenu" : true,
42566         /**
42567          * @event cellcontextmenu
42568          * Fires when a cell is right clicked
42569          * @param {Grid} this
42570          * @param {Number} rowIndex
42571          * @param {Number} cellIndex
42572          * @param {Roo.EventObject} e
42573          */
42574          "cellcontextmenu" : true,
42575         /**
42576          * @event headercontextmenu
42577          * Fires when a header is right clicked
42578          * @param {Grid} this
42579          * @param {Number} columnIndex
42580          * @param {Roo.EventObject} e
42581          */
42582         "headercontextmenu" : true,
42583         /**
42584          * @event bodyscroll
42585          * Fires when the body element is scrolled
42586          * @param {Number} scrollLeft
42587          * @param {Number} scrollTop
42588          */
42589         "bodyscroll" : true,
42590         /**
42591          * @event columnresize
42592          * Fires when the user resizes a column
42593          * @param {Number} columnIndex
42594          * @param {Number} newSize
42595          */
42596         "columnresize" : true,
42597         /**
42598          * @event columnmove
42599          * Fires when the user moves a column
42600          * @param {Number} oldIndex
42601          * @param {Number} newIndex
42602          */
42603         "columnmove" : true,
42604         /**
42605          * @event startdrag
42606          * Fires when row(s) start being dragged
42607          * @param {Grid} this
42608          * @param {Roo.GridDD} dd The drag drop object
42609          * @param {event} e The raw browser event
42610          */
42611         "startdrag" : true,
42612         /**
42613          * @event enddrag
42614          * Fires when a drag operation is complete
42615          * @param {Grid} this
42616          * @param {Roo.GridDD} dd The drag drop object
42617          * @param {event} e The raw browser event
42618          */
42619         "enddrag" : true,
42620         /**
42621          * @event dragdrop
42622          * Fires when dragged row(s) are dropped on a valid DD target
42623          * @param {Grid} this
42624          * @param {Roo.GridDD} dd The drag drop object
42625          * @param {String} targetId The target drag drop object
42626          * @param {event} e The raw browser event
42627          */
42628         "dragdrop" : true,
42629         /**
42630          * @event dragover
42631          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
42632          * @param {Grid} this
42633          * @param {Roo.GridDD} dd The drag drop object
42634          * @param {String} targetId The target drag drop object
42635          * @param {event} e The raw browser event
42636          */
42637         "dragover" : true,
42638         /**
42639          * @event dragenter
42640          *  Fires when the dragged row(s) first cross another DD target while being dragged
42641          * @param {Grid} this
42642          * @param {Roo.GridDD} dd The drag drop object
42643          * @param {String} targetId The target drag drop object
42644          * @param {event} e The raw browser event
42645          */
42646         "dragenter" : true,
42647         /**
42648          * @event dragout
42649          * Fires when the dragged row(s) leave another DD target while being dragged
42650          * @param {Grid} this
42651          * @param {Roo.GridDD} dd The drag drop object
42652          * @param {String} targetId The target drag drop object
42653          * @param {event} e The raw browser event
42654          */
42655         "dragout" : true,
42656         /**
42657          * @event rowclass
42658          * Fires when a row is rendered, so you can change add a style to it.
42659          * @param {GridView} gridview   The grid view
42660          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
42661          */
42662         'rowclass' : true,
42663
42664         /**
42665          * @event render
42666          * Fires when the grid is rendered
42667          * @param {Grid} grid
42668          */
42669         'render' : true,
42670             /**
42671              * @event select
42672              * Fires when a date is selected
42673              * @param {DatePicker} this
42674              * @param {Date} date The selected date
42675              */
42676         'select': true,
42677         /**
42678              * @event monthchange
42679              * Fires when the displayed month changes 
42680              * @param {DatePicker} this
42681              * @param {Date} date The selected month
42682              */
42683         'monthchange': true,
42684         /**
42685              * @event evententer
42686              * Fires when mouse over an event
42687              * @param {Calendar} this
42688              * @param {event} Event
42689              */
42690         'evententer': true,
42691         /**
42692              * @event eventleave
42693              * Fires when the mouse leaves an
42694              * @param {Calendar} this
42695              * @param {event}
42696              */
42697         'eventleave': true,
42698         /**
42699              * @event eventclick
42700              * Fires when the mouse click an
42701              * @param {Calendar} this
42702              * @param {event}
42703              */
42704         'eventclick': true,
42705         /**
42706              * @event eventrender
42707              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
42708              * @param {Calendar} this
42709              * @param {data} data to be modified
42710              */
42711         'eventrender': true
42712         
42713     });
42714
42715     Roo.grid.Grid.superclass.constructor.call(this);
42716     this.on('render', function() {
42717         this.view.el.addClass('x-grid-cal'); 
42718         
42719         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
42720
42721     },this);
42722     
42723     if (!Roo.grid.Calendar.style) {
42724         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
42725             
42726             
42727             '.x-grid-cal .x-grid-col' :  {
42728                 height: 'auto !important',
42729                 'vertical-align': 'top'
42730             },
42731             '.x-grid-cal  .fc-event-hori' : {
42732                 height: '14px'
42733             }
42734              
42735             
42736         }, Roo.id());
42737     }
42738
42739     
42740     
42741 };
42742 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
42743     /**
42744      * @cfg {Store} eventStore The store that loads events.
42745      */
42746     eventStore : 25,
42747
42748      
42749     activeDate : false,
42750     startDay : 0,
42751     autoWidth : true,
42752     monitorWindowResize : false,
42753
42754     
42755     resizeColumns : function() {
42756         var col = (this.view.el.getWidth() / 7) - 3;
42757         // loop through cols, and setWidth
42758         for(var i =0 ; i < 7 ; i++){
42759             this.cm.setColumnWidth(i, col);
42760         }
42761     },
42762      setDate :function(date) {
42763         
42764         Roo.log('setDate?');
42765         
42766         this.resizeColumns();
42767         var vd = this.activeDate;
42768         this.activeDate = date;
42769 //        if(vd && this.el){
42770 //            var t = date.getTime();
42771 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
42772 //                Roo.log('using add remove');
42773 //                
42774 //                this.fireEvent('monthchange', this, date);
42775 //                
42776 //                this.cells.removeClass("fc-state-highlight");
42777 //                this.cells.each(function(c){
42778 //                   if(c.dateValue == t){
42779 //                       c.addClass("fc-state-highlight");
42780 //                       setTimeout(function(){
42781 //                            try{c.dom.firstChild.focus();}catch(e){}
42782 //                       }, 50);
42783 //                       return false;
42784 //                   }
42785 //                   return true;
42786 //                });
42787 //                return;
42788 //            }
42789 //        }
42790         
42791         var days = date.getDaysInMonth();
42792         
42793         var firstOfMonth = date.getFirstDateOfMonth();
42794         var startingPos = firstOfMonth.getDay()-this.startDay;
42795         
42796         if(startingPos < this.startDay){
42797             startingPos += 7;
42798         }
42799         
42800         var pm = date.add(Date.MONTH, -1);
42801         var prevStart = pm.getDaysInMonth()-startingPos;
42802 //        
42803         
42804         
42805         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
42806         
42807         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
42808         //this.cells.addClassOnOver('fc-state-hover');
42809         
42810         var cells = this.cells.elements;
42811         var textEls = this.textNodes;
42812         
42813         //Roo.each(cells, function(cell){
42814         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
42815         //});
42816         
42817         days += startingPos;
42818
42819         // convert everything to numbers so it's fast
42820         var day = 86400000;
42821         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
42822         //Roo.log(d);
42823         //Roo.log(pm);
42824         //Roo.log(prevStart);
42825         
42826         var today = new Date().clearTime().getTime();
42827         var sel = date.clearTime().getTime();
42828         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
42829         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
42830         var ddMatch = this.disabledDatesRE;
42831         var ddText = this.disabledDatesText;
42832         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
42833         var ddaysText = this.disabledDaysText;
42834         var format = this.format;
42835         
42836         var setCellClass = function(cal, cell){
42837             
42838             //Roo.log('set Cell Class');
42839             cell.title = "";
42840             var t = d.getTime();
42841             
42842             //Roo.log(d);
42843             
42844             
42845             cell.dateValue = t;
42846             if(t == today){
42847                 cell.className += " fc-today";
42848                 cell.className += " fc-state-highlight";
42849                 cell.title = cal.todayText;
42850             }
42851             if(t == sel){
42852                 // disable highlight in other month..
42853                 cell.className += " fc-state-highlight";
42854                 
42855             }
42856             // disabling
42857             if(t < min) {
42858                 //cell.className = " fc-state-disabled";
42859                 cell.title = cal.minText;
42860                 return;
42861             }
42862             if(t > max) {
42863                 //cell.className = " fc-state-disabled";
42864                 cell.title = cal.maxText;
42865                 return;
42866             }
42867             if(ddays){
42868                 if(ddays.indexOf(d.getDay()) != -1){
42869                     // cell.title = ddaysText;
42870                    // cell.className = " fc-state-disabled";
42871                 }
42872             }
42873             if(ddMatch && format){
42874                 var fvalue = d.dateFormat(format);
42875                 if(ddMatch.test(fvalue)){
42876                     cell.title = ddText.replace("%0", fvalue);
42877                    cell.className = " fc-state-disabled";
42878                 }
42879             }
42880             
42881             if (!cell.initialClassName) {
42882                 cell.initialClassName = cell.dom.className;
42883             }
42884             
42885             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
42886         };
42887
42888         var i = 0;
42889         
42890         for(; i < startingPos; i++) {
42891             cells[i].dayName =  (++prevStart);
42892             Roo.log(textEls[i]);
42893             d.setDate(d.getDate()+1);
42894             
42895             //cells[i].className = "fc-past fc-other-month";
42896             setCellClass(this, cells[i]);
42897         }
42898         
42899         var intDay = 0;
42900         
42901         for(; i < days; i++){
42902             intDay = i - startingPos + 1;
42903             cells[i].dayName =  (intDay);
42904             d.setDate(d.getDate()+1);
42905             
42906             cells[i].className = ''; // "x-date-active";
42907             setCellClass(this, cells[i]);
42908         }
42909         var extraDays = 0;
42910         
42911         for(; i < 42; i++) {
42912             //textEls[i].innerHTML = (++extraDays);
42913             
42914             d.setDate(d.getDate()+1);
42915             cells[i].dayName = (++extraDays);
42916             cells[i].className = "fc-future fc-other-month";
42917             setCellClass(this, cells[i]);
42918         }
42919         
42920         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
42921         
42922         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
42923         
42924         // this will cause all the cells to mis
42925         var rows= [];
42926         var i =0;
42927         for (var r = 0;r < 6;r++) {
42928             for (var c =0;c < 7;c++) {
42929                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
42930             }    
42931         }
42932         
42933         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
42934         for(i=0;i<cells.length;i++) {
42935             
42936             this.cells.elements[i].dayName = cells[i].dayName ;
42937             this.cells.elements[i].className = cells[i].className;
42938             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
42939             this.cells.elements[i].title = cells[i].title ;
42940             this.cells.elements[i].dateValue = cells[i].dateValue ;
42941         }
42942         
42943         
42944         
42945         
42946         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
42947         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
42948         
42949         ////if(totalRows != 6){
42950             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
42951            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
42952        // }
42953         
42954         this.fireEvent('monthchange', this, date);
42955         
42956         
42957     },
42958  /**
42959      * Returns the grid's SelectionModel.
42960      * @return {SelectionModel}
42961      */
42962     getSelectionModel : function(){
42963         if(!this.selModel){
42964             this.selModel = new Roo.grid.CellSelectionModel();
42965         }
42966         return this.selModel;
42967     },
42968
42969     load: function() {
42970         this.eventStore.load()
42971         
42972         
42973         
42974     },
42975     
42976     findCell : function(dt) {
42977         dt = dt.clearTime().getTime();
42978         var ret = false;
42979         this.cells.each(function(c){
42980             //Roo.log("check " +c.dateValue + '?=' + dt);
42981             if(c.dateValue == dt){
42982                 ret = c;
42983                 return false;
42984             }
42985             return true;
42986         });
42987         
42988         return ret;
42989     },
42990     
42991     findCells : function(rec) {
42992         var s = rec.data.start_dt.clone().clearTime().getTime();
42993        // Roo.log(s);
42994         var e= rec.data.end_dt.clone().clearTime().getTime();
42995        // Roo.log(e);
42996         var ret = [];
42997         this.cells.each(function(c){
42998              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
42999             
43000             if(c.dateValue > e){
43001                 return ;
43002             }
43003             if(c.dateValue < s){
43004                 return ;
43005             }
43006             ret.push(c);
43007         });
43008         
43009         return ret;    
43010     },
43011     
43012     findBestRow: function(cells)
43013     {
43014         var ret = 0;
43015         
43016         for (var i =0 ; i < cells.length;i++) {
43017             ret  = Math.max(cells[i].rows || 0,ret);
43018         }
43019         return ret;
43020         
43021     },
43022     
43023     
43024     addItem : function(rec)
43025     {
43026         // look for vertical location slot in
43027         var cells = this.findCells(rec);
43028         
43029         rec.row = this.findBestRow(cells);
43030         
43031         // work out the location.
43032         
43033         var crow = false;
43034         var rows = [];
43035         for(var i =0; i < cells.length; i++) {
43036             if (!crow) {
43037                 crow = {
43038                     start : cells[i],
43039                     end :  cells[i]
43040                 };
43041                 continue;
43042             }
43043             if (crow.start.getY() == cells[i].getY()) {
43044                 // on same row.
43045                 crow.end = cells[i];
43046                 continue;
43047             }
43048             // different row.
43049             rows.push(crow);
43050             crow = {
43051                 start: cells[i],
43052                 end : cells[i]
43053             };
43054             
43055         }
43056         
43057         rows.push(crow);
43058         rec.els = [];
43059         rec.rows = rows;
43060         rec.cells = cells;
43061         for (var i = 0; i < cells.length;i++) {
43062             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
43063             
43064         }
43065         
43066         
43067     },
43068     
43069     clearEvents: function() {
43070         
43071         if (!this.eventStore.getCount()) {
43072             return;
43073         }
43074         // reset number of rows in cells.
43075         Roo.each(this.cells.elements, function(c){
43076             c.rows = 0;
43077         });
43078         
43079         this.eventStore.each(function(e) {
43080             this.clearEvent(e);
43081         },this);
43082         
43083     },
43084     
43085     clearEvent : function(ev)
43086     {
43087         if (ev.els) {
43088             Roo.each(ev.els, function(el) {
43089                 el.un('mouseenter' ,this.onEventEnter, this);
43090                 el.un('mouseleave' ,this.onEventLeave, this);
43091                 el.remove();
43092             },this);
43093             ev.els = [];
43094         }
43095     },
43096     
43097     
43098     renderEvent : function(ev,ctr) {
43099         if (!ctr) {
43100              ctr = this.view.el.select('.fc-event-container',true).first();
43101         }
43102         
43103          
43104         this.clearEvent(ev);
43105             //code
43106        
43107         
43108         
43109         ev.els = [];
43110         var cells = ev.cells;
43111         var rows = ev.rows;
43112         this.fireEvent('eventrender', this, ev);
43113         
43114         for(var i =0; i < rows.length; i++) {
43115             
43116             cls = '';
43117             if (i == 0) {
43118                 cls += ' fc-event-start';
43119             }
43120             if ((i+1) == rows.length) {
43121                 cls += ' fc-event-end';
43122             }
43123             
43124             //Roo.log(ev.data);
43125             // how many rows should it span..
43126             var cg = this.eventTmpl.append(ctr,Roo.apply({
43127                 fccls : cls
43128                 
43129             }, ev.data) , true);
43130             
43131             
43132             cg.on('mouseenter' ,this.onEventEnter, this, ev);
43133             cg.on('mouseleave' ,this.onEventLeave, this, ev);
43134             cg.on('click', this.onEventClick, this, ev);
43135             
43136             ev.els.push(cg);
43137             
43138             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
43139             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
43140             //Roo.log(cg);
43141              
43142             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
43143             cg.setWidth(ebox.right - sbox.x -2);
43144         }
43145     },
43146     
43147     renderEvents: function()
43148     {   
43149         // first make sure there is enough space..
43150         
43151         if (!this.eventTmpl) {
43152             this.eventTmpl = new Roo.Template(
43153                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
43154                     '<div class="fc-event-inner">' +
43155                         '<span class="fc-event-time">{time}</span>' +
43156                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
43157                     '</div>' +
43158                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
43159                 '</div>'
43160             );
43161                 
43162         }
43163                
43164         
43165         
43166         this.cells.each(function(c) {
43167             //Roo.log(c.select('.fc-day-content div',true).first());
43168             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
43169         });
43170         
43171         var ctr = this.view.el.select('.fc-event-container',true).first();
43172         
43173         var cls;
43174         this.eventStore.each(function(ev){
43175             
43176             this.renderEvent(ev);
43177              
43178              
43179         }, this);
43180         this.view.layout();
43181         
43182     },
43183     
43184     onEventEnter: function (e, el,event,d) {
43185         this.fireEvent('evententer', this, el, event);
43186     },
43187     
43188     onEventLeave: function (e, el,event,d) {
43189         this.fireEvent('eventleave', this, el, event);
43190     },
43191     
43192     onEventClick: function (e, el,event,d) {
43193         this.fireEvent('eventclick', this, el, event);
43194     },
43195     
43196     onMonthChange: function () {
43197         this.store.load();
43198     },
43199     
43200     onLoad: function () {
43201         
43202         //Roo.log('calendar onload');
43203 //         
43204         if(this.eventStore.getCount() > 0){
43205             
43206            
43207             
43208             this.eventStore.each(function(d){
43209                 
43210                 
43211                 // FIXME..
43212                 var add =   d.data;
43213                 if (typeof(add.end_dt) == 'undefined')  {
43214                     Roo.log("Missing End time in calendar data: ");
43215                     Roo.log(d);
43216                     return;
43217                 }
43218                 if (typeof(add.start_dt) == 'undefined')  {
43219                     Roo.log("Missing Start time in calendar data: ");
43220                     Roo.log(d);
43221                     return;
43222                 }
43223                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
43224                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
43225                 add.id = add.id || d.id;
43226                 add.title = add.title || '??';
43227                 
43228                 this.addItem(d);
43229                 
43230              
43231             },this);
43232         }
43233         
43234         this.renderEvents();
43235     }
43236     
43237
43238 });
43239 /*
43240  grid : {
43241                 xtype: 'Grid',
43242                 xns: Roo.grid,
43243                 listeners : {
43244                     render : function ()
43245                     {
43246                         _this.grid = this;
43247                         
43248                         if (!this.view.el.hasClass('course-timesheet')) {
43249                             this.view.el.addClass('course-timesheet');
43250                         }
43251                         if (this.tsStyle) {
43252                             this.ds.load({});
43253                             return; 
43254                         }
43255                         Roo.log('width');
43256                         Roo.log(_this.grid.view.el.getWidth());
43257                         
43258                         
43259                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
43260                             '.course-timesheet .x-grid-row' : {
43261                                 height: '80px'
43262                             },
43263                             '.x-grid-row td' : {
43264                                 'vertical-align' : 0
43265                             },
43266                             '.course-edit-link' : {
43267                                 'color' : 'blue',
43268                                 'text-overflow' : 'ellipsis',
43269                                 'overflow' : 'hidden',
43270                                 'white-space' : 'nowrap',
43271                                 'cursor' : 'pointer'
43272                             },
43273                             '.sub-link' : {
43274                                 'color' : 'green'
43275                             },
43276                             '.de-act-sup-link' : {
43277                                 'color' : 'purple',
43278                                 'text-decoration' : 'line-through'
43279                             },
43280                             '.de-act-link' : {
43281                                 'color' : 'red',
43282                                 'text-decoration' : 'line-through'
43283                             },
43284                             '.course-timesheet .course-highlight' : {
43285                                 'border-top-style': 'dashed !important',
43286                                 'border-bottom-bottom': 'dashed !important'
43287                             },
43288                             '.course-timesheet .course-item' : {
43289                                 'font-family'   : 'tahoma, arial, helvetica',
43290                                 'font-size'     : '11px',
43291                                 'overflow'      : 'hidden',
43292                                 'padding-left'  : '10px',
43293                                 'padding-right' : '10px',
43294                                 'padding-top' : '10px' 
43295                             }
43296                             
43297                         }, Roo.id());
43298                                 this.ds.load({});
43299                     }
43300                 },
43301                 autoWidth : true,
43302                 monitorWindowResize : false,
43303                 cellrenderer : function(v,x,r)
43304                 {
43305                     return v;
43306                 },
43307                 sm : {
43308                     xtype: 'CellSelectionModel',
43309                     xns: Roo.grid
43310                 },
43311                 dataSource : {
43312                     xtype: 'Store',
43313                     xns: Roo.data,
43314                     listeners : {
43315                         beforeload : function (_self, options)
43316                         {
43317                             options.params = options.params || {};
43318                             options.params._month = _this.monthField.getValue();
43319                             options.params.limit = 9999;
43320                             options.params['sort'] = 'when_dt';    
43321                             options.params['dir'] = 'ASC';    
43322                             this.proxy.loadResponse = this.loadResponse;
43323                             Roo.log("load?");
43324                             //this.addColumns();
43325                         },
43326                         load : function (_self, records, options)
43327                         {
43328                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
43329                                 // if you click on the translation.. you can edit it...
43330                                 var el = Roo.get(this);
43331                                 var id = el.dom.getAttribute('data-id');
43332                                 var d = el.dom.getAttribute('data-date');
43333                                 var t = el.dom.getAttribute('data-time');
43334                                 //var id = this.child('span').dom.textContent;
43335                                 
43336                                 //Roo.log(this);
43337                                 Pman.Dialog.CourseCalendar.show({
43338                                     id : id,
43339                                     when_d : d,
43340                                     when_t : t,
43341                                     productitem_active : id ? 1 : 0
43342                                 }, function() {
43343                                     _this.grid.ds.load({});
43344                                 });
43345                            
43346                            });
43347                            
43348                            _this.panel.fireEvent('resize', [ '', '' ]);
43349                         }
43350                     },
43351                     loadResponse : function(o, success, response){
43352                             // this is overridden on before load..
43353                             
43354                             Roo.log("our code?");       
43355                             //Roo.log(success);
43356                             //Roo.log(response)
43357                             delete this.activeRequest;
43358                             if(!success){
43359                                 this.fireEvent("loadexception", this, o, response);
43360                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
43361                                 return;
43362                             }
43363                             var result;
43364                             try {
43365                                 result = o.reader.read(response);
43366                             }catch(e){
43367                                 Roo.log("load exception?");
43368                                 this.fireEvent("loadexception", this, o, response, e);
43369                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
43370                                 return;
43371                             }
43372                             Roo.log("ready...");        
43373                             // loop through result.records;
43374                             // and set this.tdate[date] = [] << array of records..
43375                             _this.tdata  = {};
43376                             Roo.each(result.records, function(r){
43377                                 //Roo.log(r.data);
43378                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
43379                                     _this.tdata[r.data.when_dt.format('j')] = [];
43380                                 }
43381                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
43382                             });
43383                             
43384                             //Roo.log(_this.tdata);
43385                             
43386                             result.records = [];
43387                             result.totalRecords = 6;
43388                     
43389                             // let's generate some duumy records for the rows.
43390                             //var st = _this.dateField.getValue();
43391                             
43392                             // work out monday..
43393                             //st = st.add(Date.DAY, -1 * st.format('w'));
43394                             
43395                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
43396                             
43397                             var firstOfMonth = date.getFirstDayOfMonth();
43398                             var days = date.getDaysInMonth();
43399                             var d = 1;
43400                             var firstAdded = false;
43401                             for (var i = 0; i < result.totalRecords ; i++) {
43402                                 //var d= st.add(Date.DAY, i);
43403                                 var row = {};
43404                                 var added = 0;
43405                                 for(var w = 0 ; w < 7 ; w++){
43406                                     if(!firstAdded && firstOfMonth != w){
43407                                         continue;
43408                                     }
43409                                     if(d > days){
43410                                         continue;
43411                                     }
43412                                     firstAdded = true;
43413                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
43414                                     row['weekday'+w] = String.format(
43415                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
43416                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
43417                                                     d,
43418                                                     date.format('Y-m-')+dd
43419                                                 );
43420                                     added++;
43421                                     if(typeof(_this.tdata[d]) != 'undefined'){
43422                                         Roo.each(_this.tdata[d], function(r){
43423                                             var is_sub = '';
43424                                             var deactive = '';
43425                                             var id = r.id;
43426                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
43427                                             if(r.parent_id*1>0){
43428                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
43429                                                 id = r.parent_id;
43430                                             }
43431                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
43432                                                 deactive = 'de-act-link';
43433                                             }
43434                                             
43435                                             row['weekday'+w] += String.format(
43436                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
43437                                                     id, //0
43438                                                     r.product_id_name, //1
43439                                                     r.when_dt.format('h:ia'), //2
43440                                                     is_sub, //3
43441                                                     deactive, //4
43442                                                     desc // 5
43443                                             );
43444                                         });
43445                                     }
43446                                     d++;
43447                                 }
43448                                 
43449                                 // only do this if something added..
43450                                 if(added > 0){ 
43451                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
43452                                 }
43453                                 
43454                                 
43455                                 // push it twice. (second one with an hour..
43456                                 
43457                             }
43458                             //Roo.log(result);
43459                             this.fireEvent("load", this, o, o.request.arg);
43460                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
43461                         },
43462                     sortInfo : {field: 'when_dt', direction : 'ASC' },
43463                     proxy : {
43464                         xtype: 'HttpProxy',
43465                         xns: Roo.data,
43466                         method : 'GET',
43467                         url : baseURL + '/Roo/Shop_course.php'
43468                     },
43469                     reader : {
43470                         xtype: 'JsonReader',
43471                         xns: Roo.data,
43472                         id : 'id',
43473                         fields : [
43474                             {
43475                                 'name': 'id',
43476                                 'type': 'int'
43477                             },
43478                             {
43479                                 'name': 'when_dt',
43480                                 'type': 'string'
43481                             },
43482                             {
43483                                 'name': 'end_dt',
43484                                 'type': 'string'
43485                             },
43486                             {
43487                                 'name': 'parent_id',
43488                                 'type': 'int'
43489                             },
43490                             {
43491                                 'name': 'product_id',
43492                                 'type': 'int'
43493                             },
43494                             {
43495                                 'name': 'productitem_id',
43496                                 'type': 'int'
43497                             },
43498                             {
43499                                 'name': 'guid',
43500                                 'type': 'int'
43501                             }
43502                         ]
43503                     }
43504                 },
43505                 toolbar : {
43506                     xtype: 'Toolbar',
43507                     xns: Roo,
43508                     items : [
43509                         {
43510                             xtype: 'Button',
43511                             xns: Roo.Toolbar,
43512                             listeners : {
43513                                 click : function (_self, e)
43514                                 {
43515                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
43516                                     sd.setMonth(sd.getMonth()-1);
43517                                     _this.monthField.setValue(sd.format('Y-m-d'));
43518                                     _this.grid.ds.load({});
43519                                 }
43520                             },
43521                             text : "Back"
43522                         },
43523                         {
43524                             xtype: 'Separator',
43525                             xns: Roo.Toolbar
43526                         },
43527                         {
43528                             xtype: 'MonthField',
43529                             xns: Roo.form,
43530                             listeners : {
43531                                 render : function (_self)
43532                                 {
43533                                     _this.monthField = _self;
43534                                    // _this.monthField.set  today
43535                                 },
43536                                 select : function (combo, date)
43537                                 {
43538                                     _this.grid.ds.load({});
43539                                 }
43540                             },
43541                             value : (function() { return new Date(); })()
43542                         },
43543                         {
43544                             xtype: 'Separator',
43545                             xns: Roo.Toolbar
43546                         },
43547                         {
43548                             xtype: 'TextItem',
43549                             xns: Roo.Toolbar,
43550                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
43551                         },
43552                         {
43553                             xtype: 'Fill',
43554                             xns: Roo.Toolbar
43555                         },
43556                         {
43557                             xtype: 'Button',
43558                             xns: Roo.Toolbar,
43559                             listeners : {
43560                                 click : function (_self, e)
43561                                 {
43562                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
43563                                     sd.setMonth(sd.getMonth()+1);
43564                                     _this.monthField.setValue(sd.format('Y-m-d'));
43565                                     _this.grid.ds.load({});
43566                                 }
43567                             },
43568                             text : "Next"
43569                         }
43570                     ]
43571                 },
43572                  
43573             }
43574         };
43575         
43576         *//*
43577  * Based on:
43578  * Ext JS Library 1.1.1
43579  * Copyright(c) 2006-2007, Ext JS, LLC.
43580  *
43581  * Originally Released Under LGPL - original licence link has changed is not relivant.
43582  *
43583  * Fork - LGPL
43584  * <script type="text/javascript">
43585  */
43586  
43587 /**
43588  * @class Roo.LoadMask
43589  * A simple utility class for generically masking elements while loading data.  If the element being masked has
43590  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
43591  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
43592  * element's UpdateManager load indicator and will be destroyed after the initial load.
43593  * @constructor
43594  * Create a new LoadMask
43595  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
43596  * @param {Object} config The config object
43597  */
43598 Roo.LoadMask = function(el, config){
43599     this.el = Roo.get(el);
43600     Roo.apply(this, config);
43601     if(this.store){
43602         this.store.on('beforeload', this.onBeforeLoad, this);
43603         this.store.on('load', this.onLoad, this);
43604         this.store.on('loadexception', this.onLoadException, this);
43605         this.removeMask = false;
43606     }else{
43607         var um = this.el.getUpdateManager();
43608         um.showLoadIndicator = false; // disable the default indicator
43609         um.on('beforeupdate', this.onBeforeLoad, this);
43610         um.on('update', this.onLoad, this);
43611         um.on('failure', this.onLoad, this);
43612         this.removeMask = true;
43613     }
43614 };
43615
43616 Roo.LoadMask.prototype = {
43617     /**
43618      * @cfg {Boolean} removeMask
43619      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
43620      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
43621      */
43622     removeMask : false,
43623     /**
43624      * @cfg {String} msg
43625      * The text to display in a centered loading message box (defaults to 'Loading...')
43626      */
43627     msg : 'Loading...',
43628     /**
43629      * @cfg {String} msgCls
43630      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
43631      */
43632     msgCls : 'x-mask-loading',
43633
43634     /**
43635      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
43636      * @type Boolean
43637      */
43638     disabled: false,
43639
43640     /**
43641      * Disables the mask to prevent it from being displayed
43642      */
43643     disable : function(){
43644        this.disabled = true;
43645     },
43646
43647     /**
43648      * Enables the mask so that it can be displayed
43649      */
43650     enable : function(){
43651         this.disabled = false;
43652     },
43653     
43654     onLoadException : function()
43655     {
43656         Roo.log(arguments);
43657         
43658         if (typeof(arguments[3]) != 'undefined') {
43659             Roo.MessageBox.alert("Error loading",arguments[3]);
43660         } 
43661         /*
43662         try {
43663             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43664                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43665             }   
43666         } catch(e) {
43667             
43668         }
43669         */
43670     
43671         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
43672     },
43673     // private
43674     onLoad : function()
43675     {
43676         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
43677     },
43678
43679     // private
43680     onBeforeLoad : function(){
43681         if(!this.disabled){
43682             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
43683         }
43684     },
43685
43686     // private
43687     destroy : function(){
43688         if(this.store){
43689             this.store.un('beforeload', this.onBeforeLoad, this);
43690             this.store.un('load', this.onLoad, this);
43691             this.store.un('loadexception', this.onLoadException, this);
43692         }else{
43693             var um = this.el.getUpdateManager();
43694             um.un('beforeupdate', this.onBeforeLoad, this);
43695             um.un('update', this.onLoad, this);
43696             um.un('failure', this.onLoad, this);
43697         }
43698     }
43699 };/*
43700  * Based on:
43701  * Ext JS Library 1.1.1
43702  * Copyright(c) 2006-2007, Ext JS, LLC.
43703  *
43704  * Originally Released Under LGPL - original licence link has changed is not relivant.
43705  *
43706  * Fork - LGPL
43707  * <script type="text/javascript">
43708  */
43709
43710
43711 /**
43712  * @class Roo.XTemplate
43713  * @extends Roo.Template
43714  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
43715 <pre><code>
43716 var t = new Roo.XTemplate(
43717         '&lt;select name="{name}"&gt;',
43718                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
43719         '&lt;/select&gt;'
43720 );
43721  
43722 // then append, applying the master template values
43723  </code></pre>
43724  *
43725  * Supported features:
43726  *
43727  *  Tags:
43728
43729 <pre><code>
43730       {a_variable} - output encoded.
43731       {a_variable.format:("Y-m-d")} - call a method on the variable
43732       {a_variable:raw} - unencoded output
43733       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
43734       {a_variable:this.method_on_template(...)} - call a method on the template object.
43735  
43736 </code></pre>
43737  *  The tpl tag:
43738 <pre><code>
43739         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
43740         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
43741         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
43742         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
43743   
43744         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
43745         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
43746 </code></pre>
43747  *      
43748  */
43749 Roo.XTemplate = function()
43750 {
43751     Roo.XTemplate.superclass.constructor.apply(this, arguments);
43752     if (this.html) {
43753         this.compile();
43754     }
43755 };
43756
43757
43758 Roo.extend(Roo.XTemplate, Roo.Template, {
43759
43760     /**
43761      * The various sub templates
43762      */
43763     tpls : false,
43764     /**
43765      *
43766      * basic tag replacing syntax
43767      * WORD:WORD()
43768      *
43769      * // you can fake an object call by doing this
43770      *  x.t:(test,tesT) 
43771      * 
43772      */
43773     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
43774
43775     /**
43776      * compile the template
43777      *
43778      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
43779      *
43780      */
43781     compile: function()
43782     {
43783         var s = this.html;
43784      
43785         s = ['<tpl>', s, '</tpl>'].join('');
43786     
43787         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
43788             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
43789             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
43790             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
43791             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
43792             m,
43793             id     = 0,
43794             tpls   = [];
43795     
43796         while(true == !!(m = s.match(re))){
43797             var forMatch   = m[0].match(nameRe),
43798                 ifMatch   = m[0].match(ifRe),
43799                 execMatch   = m[0].match(execRe),
43800                 namedMatch   = m[0].match(namedRe),
43801                 
43802                 exp  = null, 
43803                 fn   = null,
43804                 exec = null,
43805                 name = forMatch && forMatch[1] ? forMatch[1] : '';
43806                 
43807             if (ifMatch) {
43808                 // if - puts fn into test..
43809                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
43810                 if(exp){
43811                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
43812                 }
43813             }
43814             
43815             if (execMatch) {
43816                 // exec - calls a function... returns empty if true is  returned.
43817                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
43818                 if(exp){
43819                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
43820                 }
43821             }
43822             
43823             
43824             if (name) {
43825                 // for = 
43826                 switch(name){
43827                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
43828                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
43829                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
43830                 }
43831             }
43832             var uid = namedMatch ? namedMatch[1] : id;
43833             
43834             
43835             tpls.push({
43836                 id:     namedMatch ? namedMatch[1] : id,
43837                 target: name,
43838                 exec:   exec,
43839                 test:   fn,
43840                 body:   m[1] || ''
43841             });
43842             if (namedMatch) {
43843                 s = s.replace(m[0], '');
43844             } else { 
43845                 s = s.replace(m[0], '{xtpl'+ id + '}');
43846             }
43847             ++id;
43848         }
43849         this.tpls = [];
43850         for(var i = tpls.length-1; i >= 0; --i){
43851             this.compileTpl(tpls[i]);
43852             this.tpls[tpls[i].id] = tpls[i];
43853         }
43854         this.master = tpls[tpls.length-1];
43855         return this;
43856     },
43857     /**
43858      * same as applyTemplate, except it's done to one of the subTemplates
43859      * when using named templates, you can do:
43860      *
43861      * var str = pl.applySubTemplate('your-name', values);
43862      *
43863      * 
43864      * @param {Number} id of the template
43865      * @param {Object} values to apply to template
43866      * @param {Object} parent (normaly the instance of this object)
43867      */
43868     applySubTemplate : function(id, values, parent)
43869     {
43870         
43871         
43872         var t = this.tpls[id];
43873         
43874         
43875         try { 
43876             if(t.test && !t.test.call(this, values, parent)){
43877                 return '';
43878             }
43879         } catch(e) {
43880             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
43881             Roo.log(e.toString());
43882             Roo.log(t.test);
43883             return ''
43884         }
43885         try { 
43886             
43887             if(t.exec && t.exec.call(this, values, parent)){
43888                 return '';
43889             }
43890         } catch(e) {
43891             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
43892             Roo.log(e.toString());
43893             Roo.log(t.exec);
43894             return ''
43895         }
43896         try {
43897             var vs = t.target ? t.target.call(this, values, parent) : values;
43898             parent = t.target ? values : parent;
43899             if(t.target && vs instanceof Array){
43900                 var buf = [];
43901                 for(var i = 0, len = vs.length; i < len; i++){
43902                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
43903                 }
43904                 return buf.join('');
43905             }
43906             return t.compiled.call(this, vs, parent);
43907         } catch (e) {
43908             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
43909             Roo.log(e.toString());
43910             Roo.log(t.compiled);
43911             return '';
43912         }
43913     },
43914
43915     compileTpl : function(tpl)
43916     {
43917         var fm = Roo.util.Format;
43918         var useF = this.disableFormats !== true;
43919         var sep = Roo.isGecko ? "+" : ",";
43920         var undef = function(str) {
43921             Roo.log("Property not found :"  + str);
43922             return '';
43923         };
43924         
43925         var fn = function(m, name, format, args)
43926         {
43927             //Roo.log(arguments);
43928             args = args ? args.replace(/\\'/g,"'") : args;
43929             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
43930             if (typeof(format) == 'undefined') {
43931                 format= 'htmlEncode';
43932             }
43933             if (format == 'raw' ) {
43934                 format = false;
43935             }
43936             
43937             if(name.substr(0, 4) == 'xtpl'){
43938                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
43939             }
43940             
43941             // build an array of options to determine if value is undefined..
43942             
43943             // basically get 'xxxx.yyyy' then do
43944             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
43945             //    (function () { Roo.log("Property not found"); return ''; })() :
43946             //    ......
43947             
43948             var udef_ar = [];
43949             var lookfor = '';
43950             Roo.each(name.split('.'), function(st) {
43951                 lookfor += (lookfor.length ? '.': '') + st;
43952                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
43953             });
43954             
43955             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
43956             
43957             
43958             if(format && useF){
43959                 
43960                 args = args ? ',' + args : "";
43961                  
43962                 if(format.substr(0, 5) != "this."){
43963                     format = "fm." + format + '(';
43964                 }else{
43965                     format = 'this.call("'+ format.substr(5) + '", ';
43966                     args = ", values";
43967                 }
43968                 
43969                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
43970             }
43971              
43972             if (args.length) {
43973                 // called with xxyx.yuu:(test,test)
43974                 // change to ()
43975                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
43976             }
43977             // raw.. - :raw modifier..
43978             return "'"+ sep + udef_st  + name + ")"+sep+"'";
43979             
43980         };
43981         var body;
43982         // branched to use + in gecko and [].join() in others
43983         if(Roo.isGecko){
43984             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
43985                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
43986                     "';};};";
43987         }else{
43988             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
43989             body.push(tpl.body.replace(/(\r\n|\n)/g,
43990                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
43991             body.push("'].join('');};};");
43992             body = body.join('');
43993         }
43994         
43995         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
43996        
43997         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
43998         eval(body);
43999         
44000         return this;
44001     },
44002
44003     applyTemplate : function(values){
44004         return this.master.compiled.call(this, values, {});
44005         //var s = this.subs;
44006     },
44007
44008     apply : function(){
44009         return this.applyTemplate.apply(this, arguments);
44010     }
44011
44012  });
44013
44014 Roo.XTemplate.from = function(el){
44015     el = Roo.getDom(el);
44016     return new Roo.XTemplate(el.value || el.innerHTML);
44017 };Roo.dialog = {};
44018 /*
44019 * Licence: LGPL
44020 */
44021
44022 /**
44023  * @class Roo.dialog.UploadCropbox
44024  * @extends Roo.BoxComponent
44025  * Dialog UploadCropbox class
44026  * @cfg {String} emptyText show when image has been loaded
44027  * @cfg {String} rotateNotify show when image too small to rotate
44028  * @cfg {Number} errorTimeout default 3000
44029  * @cfg {Number} minWidth default 300
44030  * @cfg {Number} minHeight default 300
44031  * @cfg {Number} outputMaxWidth default 1200
44032  * @cfg {Number} windowSize default 300
44033  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
44034  * @cfg {Boolean} isDocument (true|false) default false
44035  * @cfg {String} url action url
44036  * @cfg {String} paramName default 'imageUpload'
44037  * @cfg {String} method default POST
44038  * @cfg {Boolean} loadMask (true|false) default true
44039  * @cfg {Boolean} loadingText default 'Loading...'
44040  * 
44041  * @constructor
44042  * Create a new UploadCropbox
44043  * @param {Object} config The config object
44044  */
44045
44046  Roo.dialog.UploadCropbox = function(config){
44047     Roo.dialog.UploadCropbox.superclass.constructor.call(this, config);
44048     
44049     this.addEvents({
44050         /**
44051          * @event beforeselectfile
44052          * Fire before select file
44053          * @param {Roo.dialog.UploadCropbox} this
44054          */
44055         "beforeselectfile" : true,
44056         /**
44057          * @event initial
44058          * Fire after initEvent
44059          * @param {Roo.dialog.UploadCropbox} this
44060          */
44061         "initial" : true,
44062         /**
44063          * @event crop
44064          * Fire after initEvent
44065          * @param {Roo.dialog.UploadCropbox} this
44066          * @param {String} data
44067          */
44068         "crop" : true,
44069         /**
44070          * @event prepare
44071          * Fire when preparing the file data
44072          * @param {Roo.dialog.UploadCropbox} this
44073          * @param {Object} file
44074          */
44075         "prepare" : true,
44076         /**
44077          * @event exception
44078          * Fire when get exception
44079          * @param {Roo.dialog.UploadCropbox} this
44080          * @param {XMLHttpRequest} xhr
44081          */
44082         "exception" : true,
44083         /**
44084          * @event beforeloadcanvas
44085          * Fire before load the canvas
44086          * @param {Roo.dialog.UploadCropbox} this
44087          * @param {String} src
44088          */
44089         "beforeloadcanvas" : true,
44090         /**
44091          * @event trash
44092          * Fire when trash image
44093          * @param {Roo.dialog.UploadCropbox} this
44094          */
44095         "trash" : true,
44096         /**
44097          * @event download
44098          * Fire when download the image
44099          * @param {Roo.dialog.UploadCropbox} this
44100          */
44101         "download" : true,
44102         /**
44103          * @event footerbuttonclick
44104          * Fire when footerbuttonclick
44105          * @param {Roo.dialog.UploadCropbox} this
44106          * @param {String} type
44107          */
44108         "footerbuttonclick" : true,
44109         /**
44110          * @event resize
44111          * Fire when resize
44112          * @param {Roo.dialog.UploadCropbox} this
44113          */
44114         "resize" : true,
44115         /**
44116          * @event rotate
44117          * Fire when rotate the image
44118          * @param {Roo.dialog.UploadCropbox} this
44119          * @param {String} pos
44120          */
44121         "rotate" : true,
44122         /**
44123          * @event inspect
44124          * Fire when inspect the file
44125          * @param {Roo.dialog.UploadCropbox} this
44126          * @param {Object} file
44127          */
44128         "inspect" : true,
44129         /**
44130          * @event upload
44131          * Fire when xhr upload the file
44132          * @param {Roo.dialog.UploadCropbox} this
44133          * @param {Object} data
44134          */
44135         "upload" : true,
44136         /**
44137          * @event arrange
44138          * Fire when arrange the file data
44139          * @param {Roo.dialog.UploadCropbox} this
44140          * @param {Object} formData
44141          */
44142         "arrange" : true,
44143         /**
44144          * @event loadcanvas
44145          * Fire after load the canvas
44146          * @param {Roo.dialog.UploadCropbox}
44147          * @param {Object} imgEl
44148          */
44149         "loadcanvas" : true
44150     });
44151     
44152     this.buttons = this.buttons || Roo.dialog.UploadCropbox.footer.STANDARD;
44153 };
44154
44155 Roo.extend(Roo.dialog.UploadCropbox, Roo.Component,  {
44156     
44157     emptyText : 'Click to upload image',
44158     rotateNotify : 'Image is too small to rotate',
44159     errorTimeout : 3000,
44160     scale : 0,
44161     baseScale : 1,
44162     rotate : 0,
44163     dragable : false,
44164     pinching : false,
44165     mouseX : 0,
44166     mouseY : 0,
44167     cropData : false,
44168     minWidth : 300,
44169     minHeight : 300,
44170     outputMaxWidth : 1200,
44171     windowSize : 300,
44172     file : false,
44173     exif : {},
44174     baseRotate : 1,
44175     cropType : 'image/jpeg',
44176     buttons : false,
44177     canvasLoaded : false,
44178     isDocument : false,
44179     method : 'POST',
44180     paramName : 'imageUpload',
44181     loadMask : true,
44182     loadingText : 'Loading...',
44183     maskEl : false,
44184     
44185     getAutoCreate : function()
44186     {
44187         var cfg = {
44188             tag : 'div',
44189             cls : 'roo-upload-cropbox',
44190             cn : [
44191                 {
44192                     tag : 'input',
44193                     cls : 'roo-upload-cropbox-selector',
44194                     type : 'file'
44195                 },
44196                 {
44197                     tag : 'div',
44198                     cls : 'roo-upload-cropbox-body',
44199                     style : 'cursor:pointer',
44200                     cn : [
44201                         {
44202                             tag : 'div',
44203                             cls : 'roo-upload-cropbox-preview'
44204                         },
44205                         {
44206                             tag : 'div',
44207                             cls : 'roo-upload-cropbox-thumb'
44208                         },
44209                         {
44210                             tag : 'div',
44211                             cls : 'roo-upload-cropbox-empty-notify',
44212                             html : this.emptyText
44213                         },
44214                         {
44215                             tag : 'div',
44216                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
44217                             html : this.rotateNotify
44218                         }
44219                     ]
44220                 },
44221                 {
44222                     tag : 'div',
44223                     cls : 'roo-upload-cropbox-footer',
44224                     cn : {
44225                         tag : 'div',
44226                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
44227                         cn : []
44228                     }
44229                 }
44230             ]
44231         };
44232         
44233         return cfg;
44234     },
44235     
44236     onRender : function(ct, position)
44237     {
44238         Roo.dialog.UploadCropbox.superclass.onRender.call(this, ct, position);
44239
44240         if(this.el){
44241             if (this.el.attr('xtype')) {
44242                 this.el.attr('xtypex', this.el.attr('xtype'));
44243                 this.el.dom.removeAttribute('xtype');
44244                 
44245                 this.initEvents();
44246             }
44247         }
44248         else {
44249             var cfg = Roo.apply({},  this.getAutoCreate());
44250         
44251             cfg.id = this.id || Roo.id();
44252             
44253             if (this.cls) {
44254                 cfg.cls = (typeof(cfg.cls) == 'undefined' ? this.cls : cfg.cls) + ' ' + this.cls;
44255             }
44256             
44257             if (this.style) { // fixme needs to support more complex style data.
44258                 cfg.style = (typeof(cfg.style) == 'undefined' ? this.style : cfg.style) + '; ' + this.style;
44259             }
44260             
44261             this.el = ct.createChild(cfg, position);
44262             
44263             this.initEvents();
44264         }
44265         
44266         if (this.buttons.length) {
44267             
44268             Roo.each(this.buttons, function(bb) {
44269                 
44270                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
44271                 
44272                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
44273                 
44274             }, this);
44275         }
44276         
44277         if(this.loadMask){
44278             this.maskEl = this.el;
44279         }
44280     },
44281     
44282     initEvents : function()
44283     {
44284         this.urlAPI = (window.createObjectURL && window) || 
44285                                 (window.URL && URL.revokeObjectURL && URL) || 
44286                                 (window.webkitURL && webkitURL);
44287                         
44288         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
44289         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
44290         
44291         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
44292         this.selectorEl.hide();
44293         
44294         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
44295         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
44296         
44297         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
44298         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
44299         this.thumbEl.hide();
44300         
44301         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
44302         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
44303         
44304         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
44305         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
44306         this.errorEl.hide();
44307         
44308         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
44309         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
44310         this.footerEl.hide();
44311         
44312         this.setThumbBoxSize();
44313         
44314         this.bind();
44315         
44316         this.resize();
44317         
44318         this.fireEvent('initial', this);
44319     },
44320
44321     bind : function()
44322     {
44323         var _this = this;
44324         
44325         window.addEventListener("resize", function() { _this.resize(); } );
44326         
44327         this.bodyEl.on('click', this.beforeSelectFile, this);
44328         
44329         if(Roo.isTouch){
44330             this.bodyEl.on('touchstart', this.onTouchStart, this);
44331             this.bodyEl.on('touchmove', this.onTouchMove, this);
44332             this.bodyEl.on('touchend', this.onTouchEnd, this);
44333         }
44334         
44335         if(!Roo.isTouch){
44336             this.bodyEl.on('mousedown', this.onMouseDown, this);
44337             this.bodyEl.on('mousemove', this.onMouseMove, this);
44338             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
44339             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
44340             Roo.get(document).on('mouseup', this.onMouseUp, this);
44341         }
44342         
44343         this.selectorEl.on('change', this.onFileSelected, this);
44344     },
44345     
44346     reset : function()
44347     {    
44348         this.scale = 0;
44349         this.baseScale = 1;
44350         this.rotate = 0;
44351         this.baseRotate = 1;
44352         this.dragable = false;
44353         this.pinching = false;
44354         this.mouseX = 0;
44355         this.mouseY = 0;
44356         this.cropData = false;
44357         this.notifyEl.dom.innerHTML = this.emptyText;
44358         
44359         // this.selectorEl.dom.value = '';
44360         
44361     },
44362     
44363     resize : function()
44364     {
44365         if(this.fireEvent('resize', this) != false){
44366             this.setThumbBoxPosition();
44367             this.setCanvasPosition();
44368         }
44369     },
44370     
44371     onFooterButtonClick : function(e, el, o, type)
44372     {
44373         switch (type) {
44374             case 'rotate-left' :
44375                 this.onRotateLeft(e);
44376                 break;
44377             case 'rotate-right' :
44378                 this.onRotateRight(e);
44379                 break;
44380             case 'picture' :
44381                 this.beforeSelectFile(e);
44382                 break;
44383             case 'trash' :
44384                 this.trash(e);
44385                 break;
44386             case 'crop' :
44387                 this.crop(e);
44388                 break;
44389             case 'download' :
44390                 this.download(e);
44391                 break;
44392             case 'center' :
44393                 this.center(e);
44394                 break;
44395             default :
44396                 break;
44397         }
44398         
44399         this.fireEvent('footerbuttonclick', this, type);
44400     },
44401     
44402     beforeSelectFile : function(e)
44403     {
44404         e.preventDefault();
44405         
44406         if(this.fireEvent('beforeselectfile', this) != false){
44407             this.selectorEl.dom.click();
44408         }
44409     },
44410     
44411     onFileSelected : function(e)
44412     {
44413         e.preventDefault();
44414         
44415         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
44416             return;
44417         }
44418         
44419         var file = this.selectorEl.dom.files[0];
44420         
44421         if(this.fireEvent('inspect', this, file) != false){
44422             this.prepare(file);
44423         }
44424         
44425     },
44426     
44427     trash : function(e)
44428     {
44429         this.fireEvent('trash', this);
44430     },
44431     
44432     download : function(e)
44433     {
44434         this.fireEvent('download', this);
44435     },
44436
44437     center : function(e)
44438     {
44439         this.setCanvasPosition();
44440     },
44441     
44442     loadCanvas : function(src)
44443     {   
44444         if(this.fireEvent('beforeloadcanvas', this, src) != false){
44445             
44446             this.reset();
44447             
44448             this.imageEl = document.createElement('img');
44449             
44450             var _this = this;
44451             
44452             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
44453             
44454             this.imageEl.src = src;
44455         }
44456     },
44457     
44458     onLoadCanvas : function()
44459     {   
44460         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
44461         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
44462
44463         if(this.fireEvent('loadcanvas', this, this.imageEl) != false){
44464         
44465             this.bodyEl.un('click', this.beforeSelectFile, this);
44466             
44467             this.notifyEl.hide();
44468             this.thumbEl.show();
44469             this.footerEl.show();
44470             
44471             this.baseRotateLevel();
44472             
44473             if(this.isDocument){
44474                 this.setThumbBoxSize();
44475             }
44476             
44477             this.setThumbBoxPosition();
44478             
44479             this.baseScaleLevel();
44480             
44481             this.draw();
44482             
44483             this.resize();
44484             
44485             this.canvasLoaded = true;
44486         
44487         }
44488         
44489         if(this.loadMask){
44490             this.maskEl.unmask();
44491         }
44492         
44493     },
44494     
44495     setCanvasPosition : function(center = true)
44496     {   
44497         if(!this.canvasEl){
44498             return;
44499         }
44500
44501         var newCenterLeft = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
44502         var newCenterTop = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
44503
44504         if(center) {
44505             this.previewEl.setLeft(newCenterLeft);
44506             this.previewEl.setTop(newCenterTop);
44507
44508             return;
44509         }
44510         
44511         var oldScaleLevel = this.baseScale * Math.pow(1.02, this.startScale);
44512         var oldCanvasWidth = Math.floor(this.imageEl.OriginWidth * oldScaleLevel);
44513         var oldCanvasHeight = Math.floor(this.imageEl.OriginHeight * oldScaleLevel);
44514
44515         var oldCenterLeft = Math.ceil((this.bodyEl.getWidth() - oldCanvasWidth) / 2);
44516         var oldCenterTop = Math.ceil((this.bodyEl.getHeight() - oldCanvasHeight) / 2);
44517
44518         var leftDiff = newCenterLeft - oldCenterLeft;
44519         var topDiff = newCenterTop - oldCenterTop;
44520
44521         var newPreviewLeft = this.previewEl.getLeft(true) + leftDiff;
44522         var newPreviewTop = this.previewEl.getTop(true) + topDiff;
44523
44524         this.previewEl.setLeft(newPreviewLeft);
44525         this.previewEl.setTop(newPreviewTop);
44526         
44527     },
44528     
44529     onMouseDown : function(e)
44530     {   
44531         e.stopEvent();
44532         
44533         this.dragable = true;
44534         this.pinching = false;
44535         
44536         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
44537             this.dragable = false;
44538             return;
44539         }
44540         
44541         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
44542         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
44543         
44544     },
44545     
44546     onMouseMove : function(e)
44547     {   
44548         e.stopEvent();
44549         
44550         if(!this.canvasLoaded){
44551             return;
44552         }
44553         
44554         if (!this.dragable){
44555             return;
44556         }
44557
44558         var maxPaddingLeft = this.canvasEl.width / 0.9 * 0.05;
44559         var maxPaddingTop = maxPaddingLeft * this.minHeight / this.minWidth;
44560
44561         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight <= this.minWidth / this.minHeight)) {
44562             maxPaddingLeft = (this.canvasEl.height * this.minWidth / this.minHeight - this.canvasEl.width) / 2 + maxPaddingLeft;
44563         }
44564
44565         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight >= this.minWidth / this.minHeight)) {
44566             maxPaddingTop = (this.canvasEl.width * this.minHeight / this.minWidth - this.canvasEl.height) / 2 + maxPaddingTop;
44567         }
44568         
44569         var minX = Math.ceil(this.thumbEl.getLeft(true) + this.thumbEl.getWidth() - this.canvasEl.width - maxPaddingLeft);
44570         var minY = Math.ceil(this.thumbEl.getTop(true) + this.thumbEl.getHeight() - this.canvasEl.height - maxPaddingTop);
44571         
44572         var maxX = Math.ceil(this.thumbEl.getLeft(true) + maxPaddingLeft);
44573         var maxY = Math.ceil(this.thumbEl.getTop(true) +  maxPaddingTop);
44574
44575         if(minX > maxX) {
44576             var tempX = minX;
44577             minX = maxX;
44578             maxX = tempX;
44579         }
44580
44581         if(minY > maxY) {
44582             var tempY = minY;
44583             minY = maxY;
44584             maxY = tempY;
44585         }
44586
44587         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
44588         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
44589         
44590         x = x - this.mouseX;
44591         y = y - this.mouseY;
44592
44593         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
44594         var bgY = Math.ceil(y + this.previewEl.getTop(true));
44595         
44596         bgX = (bgX < minX) ? minX : ((bgX > maxX) ? maxX : bgX);
44597         bgY = (bgY < minY) ? minY : ((bgY > maxY) ? maxY : bgY);
44598         
44599         this.previewEl.setLeft(bgX);
44600         this.previewEl.setTop(bgY);
44601         
44602         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
44603         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
44604     },
44605     
44606     onMouseUp : function(e)
44607     {   
44608         e.stopEvent();
44609         
44610         this.dragable = false;
44611     },
44612     
44613     onMouseWheel : function(e)
44614     {   
44615         e.stopEvent();
44616         
44617         this.startScale = this.scale;
44618         this.scale = (e.getWheelDelta() > 0) ? (this.scale + 1) : (this.scale - 1);
44619         
44620         if(!this.zoomable()){
44621             this.scale = this.startScale;
44622             return;
44623         }
44624
44625         
44626         this.draw();
44627         
44628         return;
44629     },
44630     
44631     zoomable : function()
44632     {
44633         var minScale = this.thumbEl.getWidth() / this.minWidth;
44634         
44635         if(this.minWidth < this.minHeight){
44636             minScale = this.thumbEl.getHeight() / this.minHeight;
44637         }
44638         
44639         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
44640         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
44641  
44642         var maxWidth = this.imageEl.OriginWidth;
44643         var maxHeight = this.imageEl.OriginHeight;
44644
44645
44646         var newCanvasWidth = Math.floor(this.imageEl.OriginWidth * this.getScaleLevel());
44647         var newCanvasHeight = Math.floor(this.imageEl.OriginHeight * this.getScaleLevel());
44648
44649         var oldCenterLeft = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
44650         var oldCenterTop = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
44651
44652         var newCenterLeft = Math.ceil((this.bodyEl.getWidth() - newCanvasWidth) / 2);
44653         var newCenterTop = Math.ceil((this.bodyEl.getHeight() - newCanvasHeight) / 2);
44654
44655         var leftDiff = newCenterLeft - oldCenterLeft;
44656         var topDiff = newCenterTop - oldCenterTop;
44657
44658         var newPreviewLeft = this.previewEl.getLeft(true) + leftDiff;
44659         var newPreviewTop = this.previewEl.getTop(true) + topDiff;
44660
44661         var paddingLeft = newPreviewLeft - this.thumbEl.getLeft(true);
44662         var paddingTop = newPreviewTop - this.thumbEl.getTop(true);
44663
44664         var paddingRight = this.thumbEl.getLeft(true) + this.thumbEl.getWidth() - newCanvasWidth - newPreviewLeft;
44665         var paddingBottom = this.thumbEl.getTop(true) + this.thumbEl.getHeight() - newCanvasHeight - newPreviewTop;
44666
44667         var maxPaddingLeft = newCanvasWidth / 0.9 * 0.05;
44668         var maxPaddingTop = maxPaddingLeft * this.minHeight / this.minWidth;
44669
44670         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight <= this.minWidth / this.minHeight)) {
44671             maxPaddingLeft = (newCanvasHeight * this.minWidth / this.minHeight - newCanvasWidth) / 2 + maxPaddingLeft;
44672         }
44673
44674         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight >= this.minWidth / this.minHeight)) {
44675             maxPaddingTop = (newCanvasWidth * this.minHeight / this.minWidth - newCanvasHeight) / 2 + maxPaddingTop;
44676         }
44677         
44678         if(
44679                 this.isDocument &&
44680                 (this.rotate == 0 || this.rotate == 180) && 
44681                 (
44682                     width > this.imageEl.OriginWidth || 
44683                     height > this.imageEl.OriginHeight ||
44684                     (width < this.minWidth && height < this.minHeight)
44685                 )
44686         ){
44687             return false;
44688         }
44689         
44690         if(
44691                 this.isDocument &&
44692                 (this.rotate == 90 || this.rotate == 270) && 
44693                 (
44694                     width > this.imageEl.OriginWidth || 
44695                     height > this.imageEl.OriginHeight ||
44696                     (width < this.minHeight && height < this.minWidth)
44697                 )
44698         ){
44699             return false;
44700         }
44701         
44702         if(
44703                 !this.isDocument &&
44704                 (this.rotate == 0 || this.rotate == 180) && 
44705                 (
44706                     // for zoom out
44707                     paddingLeft > maxPaddingLeft ||
44708                     paddingRight > maxPaddingLeft ||
44709                     paddingTop > maxPaddingTop ||
44710                     paddingBottom > maxPaddingTop ||
44711                     // for zoom in
44712                     width > maxWidth ||
44713                     height > maxHeight
44714                 )
44715         ){
44716             return false;
44717         }
44718         
44719         if(
44720                 !this.isDocument &&
44721                 (this.rotate == 90 || this.rotate == 270) && 
44722                 (
44723                     width < this.minHeight || 
44724                     width > this.imageEl.OriginWidth || 
44725                     height < this.minWidth || 
44726                     height > this.imageEl.OriginHeight
44727                 )
44728         ){
44729             return false;
44730         }
44731         
44732         return true;
44733         
44734     },
44735     
44736     onRotateLeft : function(e)
44737     {   
44738         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
44739             
44740             var minScale = this.thumbEl.getWidth() / this.minWidth;
44741             
44742             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
44743             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
44744             
44745             this.startScale = this.scale;
44746             
44747             while (this.getScaleLevel() < minScale){
44748             
44749                 this.scale = this.scale + 1;
44750                 
44751                 if(!this.zoomable()){
44752                     break;
44753                 }
44754                 
44755                 if(
44756                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
44757                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
44758                 ){
44759                     continue;
44760                 }
44761                 
44762                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
44763
44764                 this.draw();
44765                 
44766                 return;
44767             }
44768             
44769             this.scale = this.startScale;
44770             
44771             this.onRotateFail();
44772             
44773             return false;
44774         }
44775         
44776         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
44777
44778         if(this.isDocument){
44779             this.setThumbBoxSize();
44780             this.setThumbBoxPosition();
44781             this.setCanvasPosition();
44782         }
44783         
44784         this.draw();
44785         
44786         this.fireEvent('rotate', this, 'left');
44787         
44788     },
44789     
44790     onRotateRight : function(e)
44791     {
44792         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
44793             
44794             var minScale = this.thumbEl.getWidth() / this.minWidth;
44795         
44796             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
44797             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
44798             
44799             this.startScale = this.scale;
44800             
44801             while (this.getScaleLevel() < minScale){
44802             
44803                 this.scale = this.scale + 1;
44804                 
44805                 if(!this.zoomable()){
44806                     break;
44807                 }
44808                 
44809                 if(
44810                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
44811                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
44812                 ){
44813                     continue;
44814                 }
44815                 
44816                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
44817
44818                 this.draw();
44819                 
44820                 return;
44821             }
44822             
44823             this.scale = this.startScale;
44824             
44825             this.onRotateFail();
44826             
44827             return false;
44828         }
44829         
44830         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
44831
44832         if(this.isDocument){
44833             this.setThumbBoxSize();
44834             this.setThumbBoxPosition();
44835             this.setCanvasPosition();
44836         }
44837         
44838         this.draw();
44839         
44840         this.fireEvent('rotate', this, 'right');
44841     },
44842     
44843     onRotateFail : function()
44844     {
44845         this.errorEl.show(true);
44846         
44847         var _this = this;
44848         
44849         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
44850     },
44851     
44852     draw : function()
44853     {
44854         this.previewEl.dom.innerHTML = '';
44855         
44856         var canvasEl = document.createElement("canvas");
44857         
44858         var contextEl = canvasEl.getContext("2d");
44859         
44860         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
44861         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
44862         var center = this.imageEl.OriginWidth / 2;
44863         
44864         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
44865             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
44866             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
44867             center = this.imageEl.OriginHeight / 2;
44868         }
44869         
44870         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
44871         
44872         contextEl.translate(center, center);
44873         contextEl.rotate(this.rotate * Math.PI / 180);
44874
44875         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
44876         
44877         this.canvasEl = document.createElement("canvas");
44878         
44879         this.contextEl = this.canvasEl.getContext("2d");
44880         
44881         switch (this.rotate) {
44882             case 0 :
44883                 
44884                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
44885                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
44886                 
44887                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44888                 
44889                 break;
44890             case 90 : 
44891                 
44892                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
44893                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
44894                 
44895                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
44896                     this.contextEl.drawImage(canvasEl, Math.abs(this.canvasEl.width - this.canvasEl.height), 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44897                     break;
44898                 }
44899                 
44900                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44901                 
44902                 break;
44903             case 180 :
44904                 
44905                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
44906                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
44907                 
44908                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
44909                     this.contextEl.drawImage(canvasEl, 0, Math.abs(this.canvasEl.width - this.canvasEl.height), this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44910                     break;
44911                 }
44912                 
44913                 this.contextEl.drawImage(canvasEl, Math.abs(this.canvasEl.width - this.canvasEl.height), 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44914                 
44915                 break;
44916             case 270 :
44917                 
44918                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
44919                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
44920         
44921                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
44922                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44923                     break;
44924                 }
44925                 
44926                 this.contextEl.drawImage(canvasEl, 0, Math.abs(this.canvasEl.width - this.canvasEl.height), this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
44927                 
44928                 break;
44929             default : 
44930                 break;
44931         }
44932         
44933         this.previewEl.appendChild(this.canvasEl);
44934         
44935         this.setCanvasPosition(false);
44936     },
44937     
44938     crop : function()
44939     {
44940         if(!this.canvasLoaded){
44941             return;
44942         }
44943         
44944         var imageCanvas = document.createElement("canvas");
44945         
44946         var imageContext = imageCanvas.getContext("2d");
44947         
44948         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
44949         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
44950         
44951         var center = imageCanvas.width / 2;
44952         
44953         imageContext.translate(center, center);
44954         
44955         imageContext.rotate(this.rotate * Math.PI / 180);
44956         
44957         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
44958         
44959         var canvas = document.createElement("canvas");
44960         
44961         var context = canvas.getContext("2d");
44962
44963         canvas.width = this.thumbEl.getWidth() / this.getScaleLevel();
44964         
44965         canvas.height = this.thumbEl.getHeight() / this.getScaleLevel();
44966
44967         switch (this.rotate) {
44968             case 0 :
44969                 
44970                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
44971                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
44972                 
44973                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
44974                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
44975                 
44976                 var sx = this.thumbEl.getLeft(true) - this.previewEl.getLeft(true);
44977                 var sy = this.thumbEl.getTop(true) - this.previewEl.getTop(true);
44978
44979                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
44980                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
44981
44982                 if(canvas.width > this.outputMaxWidth) {
44983                     var scale = this.outputMaxWidth / canvas.width;
44984                     canvas.width = canvas.width * scale;
44985                     canvas.height = canvas.height * scale;
44986                     context.scale(scale, scale);
44987                 }
44988
44989                 context.fillStyle = 'white';
44990                 context.fillRect(0, 0, this.thumbEl.getWidth() / this.getScaleLevel(), this.thumbEl.getHeight() / this.getScaleLevel());
44991
44992
44993                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
44994                 
44995                 break;
44996             case 90 : 
44997                 
44998                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
44999                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
45000                 
45001                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
45002                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
45003                 
45004                 var targetWidth = this.minWidth - 2 * x;
45005                 var targetHeight = this.minHeight - 2 * y;
45006                 
45007                 var scale = 1;
45008                 
45009                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
45010                     scale = targetWidth / width;
45011                 }
45012                 
45013                 if(x > 0 && y == 0){
45014                     scale = targetHeight / height;
45015                 }
45016                 
45017                 if(x > 0 && y > 0){
45018                     scale = targetWidth / width;
45019                     
45020                     if(width < height){
45021                         scale = targetHeight / height;
45022                     }
45023                 }
45024                 
45025                 context.scale(scale, scale);
45026                 
45027                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
45028                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
45029
45030                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
45031                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
45032                 
45033                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
45034                 
45035                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
45036                 
45037                 break;
45038             case 180 :
45039                 
45040                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
45041                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
45042                 
45043                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
45044                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
45045                 
45046                 var targetWidth = this.minWidth - 2 * x;
45047                 var targetHeight = this.minHeight - 2 * y;
45048                 
45049                 var scale = 1;
45050                 
45051                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
45052                     scale = targetWidth / width;
45053                 }
45054                 
45055                 if(x > 0 && y == 0){
45056                     scale = targetHeight / height;
45057                 }
45058                 
45059                 if(x > 0 && y > 0){
45060                     scale = targetWidth / width;
45061                     
45062                     if(width < height){
45063                         scale = targetHeight / height;
45064                     }
45065                 }
45066                 
45067                 context.scale(scale, scale);
45068                 
45069                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
45070                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
45071
45072                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
45073                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
45074
45075                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
45076                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
45077                 
45078                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
45079                 
45080                 break;
45081             case 270 :
45082                 
45083                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
45084                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
45085                 
45086                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
45087                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
45088                 
45089                 var targetWidth = this.minWidth - 2 * x;
45090                 var targetHeight = this.minHeight - 2 * y;
45091                 
45092                 var scale = 1;
45093                 
45094                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
45095                     scale = targetWidth / width;
45096                 }
45097                 
45098                 if(x > 0 && y == 0){
45099                     scale = targetHeight / height;
45100                 }
45101                 
45102                 if(x > 0 && y > 0){
45103                     scale = targetWidth / width;
45104                     
45105                     if(width < height){
45106                         scale = targetHeight / height;
45107                     }
45108                 }
45109                 
45110                 context.scale(scale, scale);
45111                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
45112                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
45113
45114                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
45115                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
45116                 
45117                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
45118                 
45119                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
45120                 
45121                 break;
45122             default : 
45123                 break;
45124         }
45125         
45126         this.cropData = canvas.toDataURL(this.cropType);
45127         
45128         if(this.fireEvent('crop', this, this.cropData) !== false){
45129             this.process(this.file, this.cropData);
45130         }
45131         
45132         return;
45133         
45134     },
45135     
45136     setThumbBoxSize : function()
45137     {
45138         var width, height;
45139         
45140         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
45141             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
45142             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
45143             
45144             this.minWidth = width;
45145             this.minHeight = height;
45146             
45147             if(this.rotate == 90 || this.rotate == 270){
45148                 this.minWidth = height;
45149                 this.minHeight = width;
45150             }
45151         }
45152         
45153         height = this.windowSize;
45154         width = Math.ceil(this.minWidth * height / this.minHeight);
45155         
45156         if(this.minWidth > this.minHeight){
45157             width = this.windowSize;
45158             height = Math.ceil(this.minHeight * width / this.minWidth);
45159         }
45160         
45161         this.thumbEl.setStyle({
45162             width : width + 'px',
45163             height : height + 'px'
45164         });
45165
45166         return;
45167             
45168     },
45169     
45170     setThumbBoxPosition : function()
45171     {
45172         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
45173         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
45174         
45175         this.thumbEl.setLeft(x);
45176         this.thumbEl.setTop(y);
45177         
45178     },
45179     
45180     baseRotateLevel : function()
45181     {
45182         this.baseRotate = 1;
45183         
45184         if(
45185                 typeof(this.exif) != 'undefined' &&
45186                 typeof(this.exif[Roo.dialog.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
45187                 [1, 3, 6, 8].indexOf(this.exif[Roo.dialog.UploadCropbox['tags']['Orientation']]) != -1
45188         ){
45189             this.baseRotate = this.exif[Roo.dialog.UploadCropbox['tags']['Orientation']];
45190         }
45191         
45192         this.rotate = Roo.dialog.UploadCropbox['Orientation'][this.baseRotate];
45193         
45194     },
45195     
45196     baseScaleLevel : function()
45197     {
45198         var width, height;
45199         
45200         if(this.isDocument){
45201             
45202             if(this.baseRotate == 6 || this.baseRotate == 8){
45203             
45204                 height = this.thumbEl.getHeight();
45205                 this.baseScale = height / this.imageEl.OriginWidth;
45206
45207                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
45208                     width = this.thumbEl.getWidth();
45209                     this.baseScale = width / this.imageEl.OriginHeight;
45210                 }
45211
45212                 return;
45213             }
45214
45215             height = this.thumbEl.getHeight();
45216             this.baseScale = height / this.imageEl.OriginHeight;
45217
45218             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
45219                 width = this.thumbEl.getWidth();
45220                 this.baseScale = width / this.imageEl.OriginWidth;
45221             }
45222
45223             return;
45224         }
45225         
45226         if(this.baseRotate == 6 || this.baseRotate == 8){
45227             
45228             width = this.thumbEl.getHeight();
45229             this.baseScale = width / this.imageEl.OriginHeight;
45230             
45231             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
45232                 height = this.thumbEl.getWidth();
45233                 this.baseScale = height / this.imageEl.OriginHeight;
45234             }
45235             
45236             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
45237                 height = this.thumbEl.getWidth();
45238                 this.baseScale = height / this.imageEl.OriginHeight;
45239                 
45240                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
45241                     width = this.thumbEl.getHeight();
45242                     this.baseScale = width / this.imageEl.OriginWidth;
45243                 }
45244             }
45245             
45246             return;
45247         }
45248         
45249         width = this.thumbEl.getWidth();
45250         this.baseScale = width / this.imageEl.OriginWidth;
45251         
45252         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
45253             height = this.thumbEl.getHeight();
45254             this.baseScale = height / this.imageEl.OriginHeight;
45255         }
45256         
45257         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
45258             
45259             height = this.thumbEl.getHeight();
45260             this.baseScale = height / this.imageEl.OriginHeight;
45261             
45262             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
45263                 width = this.thumbEl.getWidth();
45264                 this.baseScale = width / this.imageEl.OriginWidth;
45265             }
45266             
45267         }
45268
45269         if(this.imageEl.OriginWidth < this.minWidth || this.imageEl.OriginHeight < this.minHeight) {
45270             this.baseScale = width / this.minWidth;
45271         }
45272
45273         return;
45274     },
45275     
45276     getScaleLevel : function()
45277     {
45278         return this.baseScale * Math.pow(1.02, this.scale);
45279     },
45280     
45281     onTouchStart : function(e)
45282     {
45283         if(!this.canvasLoaded){
45284             this.beforeSelectFile(e);
45285             return;
45286         }
45287         
45288         var touches = e.browserEvent.touches;
45289         
45290         if(!touches){
45291             return;
45292         }
45293         
45294         if(touches.length == 1){
45295             this.onMouseDown(e);
45296             return;
45297         }
45298         
45299         if(touches.length != 2){
45300             return;
45301         }
45302         
45303         var coords = [];
45304         
45305         for(var i = 0, finger; finger = touches[i]; i++){
45306             coords.push(finger.pageX, finger.pageY);
45307         }
45308         
45309         var x = Math.pow(coords[0] - coords[2], 2);
45310         var y = Math.pow(coords[1] - coords[3], 2);
45311         
45312         this.startDistance = Math.sqrt(x + y);
45313         
45314         this.startScale = this.scale;
45315         
45316         this.pinching = true;
45317         this.dragable = false;
45318         
45319     },
45320     
45321     onTouchMove : function(e)
45322     {
45323         if(!this.pinching && !this.dragable){
45324             return;
45325         }
45326         
45327         var touches = e.browserEvent.touches;
45328         
45329         if(!touches){
45330             return;
45331         }
45332         
45333         if(this.dragable){
45334             this.onMouseMove(e);
45335             return;
45336         }
45337         
45338         var coords = [];
45339         
45340         for(var i = 0, finger; finger = touches[i]; i++){
45341             coords.push(finger.pageX, finger.pageY);
45342         }
45343         
45344         var x = Math.pow(coords[0] - coords[2], 2);
45345         var y = Math.pow(coords[1] - coords[3], 2);
45346         
45347         this.endDistance = Math.sqrt(x + y);
45348         
45349         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
45350         
45351         if(!this.zoomable()){
45352             this.scale = this.startScale;
45353             return;
45354         }
45355         
45356         this.draw();
45357         
45358     },
45359     
45360     onTouchEnd : function(e)
45361     {
45362         this.pinching = false;
45363         this.dragable = false;
45364         
45365     },
45366     
45367     process : function(file, crop)
45368     {
45369         if(this.loadMask){
45370             this.maskEl.mask(this.loadingText);
45371         }
45372         
45373         this.xhr = new XMLHttpRequest();
45374         
45375         file.xhr = this.xhr;
45376
45377         this.xhr.open(this.method, this.url, true);
45378         
45379         var headers = {
45380             "Accept": "application/json",
45381             "Cache-Control": "no-cache",
45382             "X-Requested-With": "XMLHttpRequest"
45383         };
45384         
45385         for (var headerName in headers) {
45386             var headerValue = headers[headerName];
45387             if (headerValue) {
45388                 this.xhr.setRequestHeader(headerName, headerValue);
45389             }
45390         }
45391         
45392         var _this = this;
45393         
45394         this.xhr.onload = function()
45395         {
45396             _this.xhrOnLoad(_this.xhr);
45397         }
45398         
45399         this.xhr.onerror = function()
45400         {
45401             _this.xhrOnError(_this.xhr);
45402         }
45403         
45404         var formData = new FormData();
45405
45406         formData.append('returnHTML', 'NO');
45407
45408         if(crop){
45409             formData.append('crop', crop);
45410             var blobBin = atob(crop.split(',')[1]);
45411             var array = [];
45412             for(var i = 0; i < blobBin.length; i++) {
45413                 array.push(blobBin.charCodeAt(i));
45414             }
45415             var croppedFile =new Blob([new Uint8Array(array)], {type: this.cropType});
45416             formData.append(this.paramName, croppedFile, file.name);
45417         }
45418         
45419         if(typeof(file.filename) != 'undefined'){
45420             formData.append('filename', file.filename);
45421         }
45422         
45423         if(typeof(file.mimetype) != 'undefined'){
45424             formData.append('mimetype', file.mimetype);
45425         }
45426
45427         if(this.fireEvent('arrange', this, formData) != false){
45428             this.xhr.send(formData);
45429         };
45430     },
45431     
45432     xhrOnLoad : function(xhr)
45433     {
45434         if(this.loadMask){
45435             this.maskEl.unmask();
45436         }
45437         
45438         if (xhr.readyState !== 4) {
45439             this.fireEvent('exception', this, xhr);
45440             return;
45441         }
45442
45443         var response = Roo.decode(xhr.responseText);
45444         
45445         if(!response.success){
45446             this.fireEvent('exception', this, xhr);
45447             return;
45448         }
45449         
45450         var response = Roo.decode(xhr.responseText);
45451         
45452         this.fireEvent('upload', this, response);
45453         
45454     },
45455     
45456     xhrOnError : function()
45457     {
45458         if(this.loadMask){
45459             this.maskEl.unmask();
45460         }
45461         
45462         Roo.log('xhr on error');
45463         
45464         var response = Roo.decode(xhr.responseText);
45465           
45466         Roo.log(response);
45467         
45468     },
45469     
45470     prepare : function(file)
45471     {   
45472         if(this.loadMask){
45473             this.maskEl.mask(this.loadingText);
45474         }
45475         
45476         this.file = false;
45477         this.exif = {};
45478         
45479         if(typeof(file) === 'string'){
45480             this.loadCanvas(file);
45481             return;
45482         }
45483         
45484         if(!file || !this.urlAPI){
45485             return;
45486         }
45487         
45488         this.file = file;
45489         if(typeof(file.type) != 'undefined' && file.type.length != 0) {
45490             this.cropType = file.type;
45491         }
45492         
45493         var _this = this;
45494         
45495         if(this.fireEvent('prepare', this, this.file) != false){
45496             
45497             var reader = new FileReader();
45498             
45499             reader.onload = function (e) {
45500                 if (e.target.error) {
45501                     Roo.log(e.target.error);
45502                     return;
45503                 }
45504                 
45505                 var buffer = e.target.result,
45506                     dataView = new DataView(buffer),
45507                     offset = 2,
45508                     maxOffset = dataView.byteLength - 4,
45509                     markerBytes,
45510                     markerLength;
45511                 
45512                 if (dataView.getUint16(0) === 0xffd8) {
45513                     while (offset < maxOffset) {
45514                         markerBytes = dataView.getUint16(offset);
45515                         
45516                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
45517                             markerLength = dataView.getUint16(offset + 2) + 2;
45518                             if (offset + markerLength > dataView.byteLength) {
45519                                 Roo.log('Invalid meta data: Invalid segment size.');
45520                                 break;
45521                             }
45522                             
45523                             if(markerBytes == 0xffe1){
45524                                 _this.parseExifData(
45525                                     dataView,
45526                                     offset,
45527                                     markerLength
45528                                 );
45529                             }
45530                             
45531                             offset += markerLength;
45532                             
45533                             continue;
45534                         }
45535                         
45536                         break;
45537                     }
45538                     
45539                 }
45540                 
45541                 var url = _this.urlAPI.createObjectURL(_this.file);
45542                 
45543                 _this.loadCanvas(url);
45544                 
45545                 return;
45546             }
45547             
45548             reader.readAsArrayBuffer(this.file);
45549             
45550         }
45551         
45552     },
45553     
45554     parseExifData : function(dataView, offset, length)
45555     {
45556         var tiffOffset = offset + 10,
45557             littleEndian,
45558             dirOffset;
45559     
45560         if (dataView.getUint32(offset + 4) !== 0x45786966) {
45561             // No Exif data, might be XMP data instead
45562             return;
45563         }
45564         
45565         // Check for the ASCII code for "Exif" (0x45786966):
45566         if (dataView.getUint32(offset + 4) !== 0x45786966) {
45567             // No Exif data, might be XMP data instead
45568             return;
45569         }
45570         if (tiffOffset + 8 > dataView.byteLength) {
45571             Roo.log('Invalid Exif data: Invalid segment size.');
45572             return;
45573         }
45574         // Check for the two null bytes:
45575         if (dataView.getUint16(offset + 8) !== 0x0000) {
45576             Roo.log('Invalid Exif data: Missing byte alignment offset.');
45577             return;
45578         }
45579         // Check the byte alignment:
45580         switch (dataView.getUint16(tiffOffset)) {
45581         case 0x4949:
45582             littleEndian = true;
45583             break;
45584         case 0x4D4D:
45585             littleEndian = false;
45586             break;
45587         default:
45588             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
45589             return;
45590         }
45591         // Check for the TIFF tag marker (0x002A):
45592         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
45593             Roo.log('Invalid Exif data: Missing TIFF marker.');
45594             return;
45595         }
45596         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
45597         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
45598         
45599         this.parseExifTags(
45600             dataView,
45601             tiffOffset,
45602             tiffOffset + dirOffset,
45603             littleEndian
45604         );
45605     },
45606     
45607     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
45608     {
45609         var tagsNumber,
45610             dirEndOffset,
45611             i;
45612         if (dirOffset + 6 > dataView.byteLength) {
45613             Roo.log('Invalid Exif data: Invalid directory offset.');
45614             return;
45615         }
45616         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
45617         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
45618         if (dirEndOffset + 4 > dataView.byteLength) {
45619             Roo.log('Invalid Exif data: Invalid directory size.');
45620             return;
45621         }
45622         for (i = 0; i < tagsNumber; i += 1) {
45623             this.parseExifTag(
45624                 dataView,
45625                 tiffOffset,
45626                 dirOffset + 2 + 12 * i, // tag offset
45627                 littleEndian
45628             );
45629         }
45630         // Return the offset to the next directory:
45631         return dataView.getUint32(dirEndOffset, littleEndian);
45632     },
45633     
45634     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
45635     {
45636         var tag = dataView.getUint16(offset, littleEndian);
45637         
45638         this.exif[tag] = this.getExifValue(
45639             dataView,
45640             tiffOffset,
45641             offset,
45642             dataView.getUint16(offset + 2, littleEndian), // tag type
45643             dataView.getUint32(offset + 4, littleEndian), // tag length
45644             littleEndian
45645         );
45646     },
45647     
45648     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
45649     {
45650         var tagType = Roo.dialog.UploadCropbox.exifTagTypes[type],
45651             tagSize,
45652             dataOffset,
45653             values,
45654             i,
45655             str,
45656             c;
45657     
45658         if (!tagType) {
45659             Roo.log('Invalid Exif data: Invalid tag type.');
45660             return;
45661         }
45662         
45663         tagSize = tagType.size * length;
45664         // Determine if the value is contained in the dataOffset bytes,
45665         // or if the value at the dataOffset is a pointer to the actual data:
45666         dataOffset = tagSize > 4 ?
45667                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
45668         if (dataOffset + tagSize > dataView.byteLength) {
45669             Roo.log('Invalid Exif data: Invalid data offset.');
45670             return;
45671         }
45672         if (length === 1) {
45673             return tagType.getValue(dataView, dataOffset, littleEndian);
45674         }
45675         values = [];
45676         for (i = 0; i < length; i += 1) {
45677             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
45678         }
45679         
45680         if (tagType.ascii) {
45681             str = '';
45682             // Concatenate the chars:
45683             for (i = 0; i < values.length; i += 1) {
45684                 c = values[i];
45685                 // Ignore the terminating NULL byte(s):
45686                 if (c === '\u0000') {
45687                     break;
45688                 }
45689                 str += c;
45690             }
45691             return str;
45692         }
45693         return values;
45694     }
45695     
45696 });
45697
45698 Roo.apply(Roo.dialog.UploadCropbox, {
45699     tags : {
45700         'Orientation': 0x0112
45701     },
45702     
45703     Orientation: {
45704             1: 0, //'top-left',
45705 //            2: 'top-right',
45706             3: 180, //'bottom-right',
45707 //            4: 'bottom-left',
45708 //            5: 'left-top',
45709             6: 90, //'right-top',
45710 //            7: 'right-bottom',
45711             8: 270 //'left-bottom'
45712     },
45713     
45714     exifTagTypes : {
45715         // byte, 8-bit unsigned int:
45716         1: {
45717             getValue: function (dataView, dataOffset) {
45718                 return dataView.getUint8(dataOffset);
45719             },
45720             size: 1
45721         },
45722         // ascii, 8-bit byte:
45723         2: {
45724             getValue: function (dataView, dataOffset) {
45725                 return String.fromCharCode(dataView.getUint8(dataOffset));
45726             },
45727             size: 1,
45728             ascii: true
45729         },
45730         // short, 16 bit int:
45731         3: {
45732             getValue: function (dataView, dataOffset, littleEndian) {
45733                 return dataView.getUint16(dataOffset, littleEndian);
45734             },
45735             size: 2
45736         },
45737         // long, 32 bit int:
45738         4: {
45739             getValue: function (dataView, dataOffset, littleEndian) {
45740                 return dataView.getUint32(dataOffset, littleEndian);
45741             },
45742             size: 4
45743         },
45744         // rational = two long values, first is numerator, second is denominator:
45745         5: {
45746             getValue: function (dataView, dataOffset, littleEndian) {
45747                 return dataView.getUint32(dataOffset, littleEndian) /
45748                     dataView.getUint32(dataOffset + 4, littleEndian);
45749             },
45750             size: 8
45751         },
45752         // slong, 32 bit signed int:
45753         9: {
45754             getValue: function (dataView, dataOffset, littleEndian) {
45755                 return dataView.getInt32(dataOffset, littleEndian);
45756             },
45757             size: 4
45758         },
45759         // srational, two slongs, first is numerator, second is denominator:
45760         10: {
45761             getValue: function (dataView, dataOffset, littleEndian) {
45762                 return dataView.getInt32(dataOffset, littleEndian) /
45763                     dataView.getInt32(dataOffset + 4, littleEndian);
45764             },
45765             size: 8
45766         }
45767     },
45768     
45769     footer : {
45770         STANDARD : [
45771             {
45772                 tag : 'div',
45773                 cls : 'btn-group roo-upload-cropbox-rotate-left',
45774                 action : 'rotate-left',
45775                 cn : [
45776                     {
45777                         tag : 'button',
45778                         cls : 'btn btn-default',
45779                         html : '<i class="fa fa-undo"></i>'
45780                     }
45781                 ]
45782             },
45783             {
45784                 tag : 'div',
45785                 cls : 'btn-group roo-upload-cropbox-picture',
45786                 action : 'picture',
45787                 cn : [
45788                     {
45789                         tag : 'button',
45790                         cls : 'btn btn-default',
45791                         html : '<i class="fa fa-picture-o"></i>'
45792                     }
45793                 ]
45794             },
45795             {
45796                 tag : 'div',
45797                 cls : 'btn-group roo-upload-cropbox-rotate-right',
45798                 action : 'rotate-right',
45799                 cn : [
45800                     {
45801                         tag : 'button',
45802                         cls : 'btn btn-default',
45803                         html : '<i class="fa fa-repeat"></i>'
45804                     }
45805                 ]
45806             }
45807         ],
45808         DOCUMENT : [
45809             {
45810                 tag : 'div',
45811                 cls : 'btn-group roo-upload-cropbox-rotate-left',
45812                 action : 'rotate-left',
45813                 cn : [
45814                     {
45815                         tag : 'button',
45816                         cls : 'btn btn-default',
45817                         html : '<i class="fa fa-undo"></i>'
45818                     }
45819                 ]
45820             },
45821             {
45822                 tag : 'div',
45823                 cls : 'btn-group roo-upload-cropbox-download',
45824                 action : 'download',
45825                 cn : [
45826                     {
45827                         tag : 'button',
45828                         cls : 'btn btn-default',
45829                         html : '<i class="fa fa-download"></i>'
45830                     }
45831                 ]
45832             },
45833             {
45834                 tag : 'div',
45835                 cls : 'btn-group roo-upload-cropbox-crop',
45836                 action : 'crop',
45837                 cn : [
45838                     {
45839                         tag : 'button',
45840                         cls : 'btn btn-default',
45841                         html : '<i class="fa fa-crop"></i>'
45842                     }
45843                 ]
45844             },
45845             {
45846                 tag : 'div',
45847                 cls : 'btn-group roo-upload-cropbox-trash',
45848                 action : 'trash',
45849                 cn : [
45850                     {
45851                         tag : 'button',
45852                         cls : 'btn btn-default',
45853                         html : '<i class="fa fa-trash"></i>'
45854                     }
45855                 ]
45856             },
45857             {
45858                 tag : 'div',
45859                 cls : 'btn-group roo-upload-cropbox-rotate-right',
45860                 action : 'rotate-right',
45861                 cn : [
45862                     {
45863                         tag : 'button',
45864                         cls : 'btn btn-default',
45865                         html : '<i class="fa fa-repeat"></i>'
45866                     }
45867                 ]
45868             }
45869         ],
45870         ROTATOR : [
45871             {
45872                 tag : 'div',
45873                 cls : 'btn-group roo-upload-cropbox-rotate-left',
45874                 action : 'rotate-left',
45875                 cn : [
45876                     {
45877                         tag : 'button',
45878                         cls : 'btn btn-default',
45879                         html : '<i class="fa fa-undo"></i>'
45880                     }
45881                 ]
45882             },
45883             {
45884                 tag : 'div',
45885                 cls : 'btn-group roo-upload-cropbox-rotate-right',
45886                 action : 'rotate-right',
45887                 cn : [
45888                     {
45889                         tag : 'button',
45890                         cls : 'btn btn-default',
45891                         html : '<i class="fa fa-repeat"></i>'
45892                     }
45893                 ]
45894             }
45895         ],
45896         CENTER : [
45897             {
45898                 tag : 'div',
45899                 cls : 'btn-group roo-upload-cropbox-center',
45900                 action : 'center',
45901                 cn : [
45902                     {
45903                         tag : 'button',
45904                         cls : 'btn btn-default',
45905                         html : 'CENTER'
45906                     }
45907                 ]
45908             }
45909         ]
45910     }
45911 });