Roo/form/HtmlEditor/ToolbarStandard.js
[roojs1] / roojs-ui-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12
13 /**
14  * @class Roo.data.SortTypes
15  * @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} return from JsonData.reader() - success, totalRecords, records
485          * @param {Object} load options 
486          * @param {Object} jsonData from your request (normally this contains the Exception)
487          */
488         loadexception : true
489     });
490     
491     if(this.proxy){
492         this.proxy = Roo.factory(this.proxy, Roo.data);
493         this.proxy.xmodule = this.xmodule || false;
494         this.relayEvents(this.proxy,  ["loadexception"]);
495     }
496     this.sortToggle = {};
497     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
498
499     Roo.data.Store.superclass.constructor.call(this);
500
501     if(this.inlineData){
502         this.loadData(this.inlineData);
503         delete this.inlineData;
504     }
505 };
506
507 Roo.extend(Roo.data.Store, Roo.util.Observable, {
508      /**
509     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
510     * without a remote query - used by combo/forms at present.
511     */
512     
513     /**
514     * @cfg {Roo.data.DataProxy} proxy [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  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
1398  * to the Reader when its load method is called.
1399  * @constructor
1400  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
1401  */
1402 Roo.data.MemoryProxy = function(data){
1403     if (data.data) {
1404         data = data.data;
1405     }
1406     Roo.data.MemoryProxy.superclass.constructor.call(this);
1407     this.data = data;
1408 };
1409
1410 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
1411     
1412     /**
1413      * Load data from the requested source (in this case an in-memory
1414      * data object passed to the constructor), read the data object into
1415      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1416      * process that block using the passed callback.
1417      * @param {Object} params This parameter is not used by the MemoryProxy class.
1418      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1419      * object into a block of Roo.data.Records.
1420      * @param {Function} callback The function into which to pass the block of Roo.data.records.
1421      * The function must be passed <ul>
1422      * <li>The Record block object</li>
1423      * <li>The "arg" argument from the load function</li>
1424      * <li>A boolean success indicator</li>
1425      * </ul>
1426      * @param {Object} scope The scope in which to call the callback
1427      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1428      */
1429     load : function(params, reader, callback, scope, arg){
1430         params = params || {};
1431         var result;
1432         try {
1433             result = reader.readRecords(params.data ? params.data :this.data);
1434         }catch(e){
1435             this.fireEvent("loadexception", this, arg, null, e);
1436             callback.call(scope, null, arg, false);
1437             return;
1438         }
1439         callback.call(scope, result, arg, true);
1440     },
1441     
1442     // private
1443     update : function(params, records){
1444         
1445     }
1446 });/*
1447  * Based on:
1448  * Ext JS Library 1.1.1
1449  * Copyright(c) 2006-2007, Ext JS, LLC.
1450  *
1451  * Originally Released Under LGPL - original licence link has changed is not relivant.
1452  *
1453  * Fork - LGPL
1454  * <script type="text/javascript">
1455  */
1456 /**
1457  * @class Roo.data.HttpProxy
1458  * @extends Roo.data.DataProxy
1459  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
1460  * configured to reference a certain URL.<br><br>
1461  * <p>
1462  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
1463  * from which the running page was served.<br><br>
1464  * <p>
1465  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
1466  * <p>
1467  * Be aware that to enable the browser to parse an XML document, the server must set
1468  * the Content-Type header in the HTTP response to "text/xml".
1469  * @constructor
1470  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
1471  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
1472  * will be used to make the request.
1473  */
1474 Roo.data.HttpProxy = function(conn){
1475     Roo.data.HttpProxy.superclass.constructor.call(this);
1476     // is conn a conn config or a real conn?
1477     this.conn = conn;
1478     this.useAjax = !conn || !conn.events;
1479   
1480 };
1481
1482 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
1483     // thse are take from connection...
1484     
1485     /**
1486      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
1487      */
1488     /**
1489      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
1490      * extra parameters to each request made by this object. (defaults to undefined)
1491      */
1492     /**
1493      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
1494      *  to each request made by this object. (defaults to undefined)
1495      */
1496     /**
1497      * @cfg {String} method (Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
1498      */
1499     /**
1500      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
1501      */
1502      /**
1503      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
1504      * @type Boolean
1505      */
1506   
1507
1508     /**
1509      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
1510      * @type Boolean
1511      */
1512     /**
1513      * Return the {@link Roo.data.Connection} object being used by this Proxy.
1514      * @return {Connection} The Connection object. This object may be used to subscribe to events on
1515      * a finer-grained basis than the DataProxy events.
1516      */
1517     getConnection : function(){
1518         return this.useAjax ? Roo.Ajax : this.conn;
1519     },
1520
1521     /**
1522      * Load data from the configured {@link Roo.data.Connection}, read the data object into
1523      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
1524      * process that block using the passed callback.
1525      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1526      * for the request to the remote server.
1527      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1528      * object into a block of Roo.data.Records.
1529      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1530      * The function must be passed <ul>
1531      * <li>The Record block object</li>
1532      * <li>The "arg" argument from the load function</li>
1533      * <li>A boolean success indicator</li>
1534      * </ul>
1535      * @param {Object} scope The scope in which to call the callback
1536      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1537      */
1538     load : function(params, reader, callback, scope, arg){
1539         if(this.fireEvent("beforeload", this, params) !== false){
1540             var  o = {
1541                 params : params || {},
1542                 request: {
1543                     callback : callback,
1544                     scope : scope,
1545                     arg : arg
1546                 },
1547                 reader: reader,
1548                 callback : this.loadResponse,
1549                 scope: this
1550             };
1551             if(this.useAjax){
1552                 Roo.applyIf(o, this.conn);
1553                 if(this.activeRequest){
1554                     Roo.Ajax.abort(this.activeRequest);
1555                 }
1556                 this.activeRequest = Roo.Ajax.request(o);
1557             }else{
1558                 this.conn.request(o);
1559             }
1560         }else{
1561             callback.call(scope||this, null, arg, false);
1562         }
1563     },
1564
1565     // private
1566     loadResponse : function(o, success, response){
1567         delete this.activeRequest;
1568         if(!success){
1569             this.fireEvent("loadexception", this, o, response);
1570             o.request.callback.call(o.request.scope, null, o.request.arg, false);
1571             return;
1572         }
1573         var result;
1574         try {
1575             result = o.reader.read(response);
1576         }catch(e){
1577             o.success = false;
1578             o.raw = { errorMsg : response.responseText };
1579             this.fireEvent("loadexception", this, o, response, e);
1580             o.request.callback.call(o.request.scope, o, o.request.arg, false);
1581             return;
1582         }
1583         
1584         this.fireEvent("load", this, o, o.request.arg);
1585         o.request.callback.call(o.request.scope, result, o.request.arg, true);
1586     },
1587
1588     // private
1589     update : function(dataSet){
1590
1591     },
1592
1593     // private
1594     updateResponse : function(dataSet){
1595
1596     }
1597 });/*
1598  * Based on:
1599  * Ext JS Library 1.1.1
1600  * Copyright(c) 2006-2007, Ext JS, LLC.
1601  *
1602  * Originally Released Under LGPL - original licence link has changed is not relivant.
1603  *
1604  * Fork - LGPL
1605  * <script type="text/javascript">
1606  */
1607
1608 /**
1609  * @class Roo.data.ScriptTagProxy
1610  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
1611  * other than the originating domain of the running page.<br><br>
1612  * <p>
1613  * <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
1614  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
1615  * <p>
1616  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
1617  * source code that is used as the source inside a &lt;script> tag.<br><br>
1618  * <p>
1619  * In order for the browser to process the returned data, the server must wrap the data object
1620  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
1621  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
1622  * depending on whether the callback name was passed:
1623  * <p>
1624  * <pre><code>
1625 boolean scriptTag = false;
1626 String cb = request.getParameter("callback");
1627 if (cb != null) {
1628     scriptTag = true;
1629     response.setContentType("text/javascript");
1630 } else {
1631     response.setContentType("application/x-json");
1632 }
1633 Writer out = response.getWriter();
1634 if (scriptTag) {
1635     out.write(cb + "(");
1636 }
1637 out.print(dataBlock.toJsonString());
1638 if (scriptTag) {
1639     out.write(");");
1640 }
1641 </pre></code>
1642  *
1643  * @constructor
1644  * @param {Object} config A configuration object.
1645  */
1646 Roo.data.ScriptTagProxy = function(config){
1647     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
1648     Roo.apply(this, config);
1649     this.head = document.getElementsByTagName("head")[0];
1650 };
1651
1652 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
1653
1654 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
1655     /**
1656      * @cfg {String} url The URL from which to request the data object.
1657      */
1658     /**
1659      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
1660      */
1661     timeout : 30000,
1662     /**
1663      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
1664      * the server the name of the callback function set up by the load call to process the returned data object.
1665      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
1666      * javascript output which calls this named function passing the data object as its only parameter.
1667      */
1668     callbackParam : "callback",
1669     /**
1670      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
1671      * name to the request.
1672      */
1673     nocache : true,
1674
1675     /**
1676      * Load data from the configured URL, read the data object into
1677      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
1678      * process that block using the passed callback.
1679      * @param {Object} params An object containing properties which are to be used as HTTP parameters
1680      * for the request to the remote server.
1681      * @param {Roo.data.DataReader} reader The Reader object which converts the data
1682      * object into a block of Roo.data.Records.
1683      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
1684      * The function must be passed <ul>
1685      * <li>The Record block object</li>
1686      * <li>The "arg" argument from the load function</li>
1687      * <li>A boolean success indicator</li>
1688      * </ul>
1689      * @param {Object} scope The scope in which to call the callback
1690      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
1691      */
1692     load : function(params, reader, callback, scope, arg){
1693         if(this.fireEvent("beforeload", this, params) !== false){
1694
1695             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
1696
1697             var url = this.url;
1698             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
1699             if(this.nocache){
1700                 url += "&_dc=" + (new Date().getTime());
1701             }
1702             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
1703             var trans = {
1704                 id : transId,
1705                 cb : "stcCallback"+transId,
1706                 scriptId : "stcScript"+transId,
1707                 params : params,
1708                 arg : arg,
1709                 url : url,
1710                 callback : callback,
1711                 scope : scope,
1712                 reader : reader
1713             };
1714             var conn = this;
1715
1716             window[trans.cb] = function(o){
1717                 conn.handleResponse(o, trans);
1718             };
1719
1720             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
1721
1722             if(this.autoAbort !== false){
1723                 this.abort();
1724             }
1725
1726             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
1727
1728             var script = document.createElement("script");
1729             script.setAttribute("src", url);
1730             script.setAttribute("type", "text/javascript");
1731             script.setAttribute("id", trans.scriptId);
1732             this.head.appendChild(script);
1733
1734             this.trans = trans;
1735         }else{
1736             callback.call(scope||this, null, arg, false);
1737         }
1738     },
1739
1740     // private
1741     isLoading : function(){
1742         return this.trans ? true : false;
1743     },
1744
1745     /**
1746      * Abort the current server request.
1747      */
1748     abort : function(){
1749         if(this.isLoading()){
1750             this.destroyTrans(this.trans);
1751         }
1752     },
1753
1754     // private
1755     destroyTrans : function(trans, isLoaded){
1756         this.head.removeChild(document.getElementById(trans.scriptId));
1757         clearTimeout(trans.timeoutId);
1758         if(isLoaded){
1759             window[trans.cb] = undefined;
1760             try{
1761                 delete window[trans.cb];
1762             }catch(e){}
1763         }else{
1764             // if hasn't been loaded, wait for load to remove it to prevent script error
1765             window[trans.cb] = function(){
1766                 window[trans.cb] = undefined;
1767                 try{
1768                     delete window[trans.cb];
1769                 }catch(e){}
1770             };
1771         }
1772     },
1773
1774     // private
1775     handleResponse : function(o, trans){
1776         this.trans = false;
1777         this.destroyTrans(trans, true);
1778         var result;
1779         try {
1780             result = trans.reader.readRecords(o);
1781         }catch(e){
1782             this.fireEvent("loadexception", this, o, trans.arg, e);
1783             trans.callback.call(trans.scope||window, null, trans.arg, false);
1784             return;
1785         }
1786         this.fireEvent("load", this, o, trans.arg);
1787         trans.callback.call(trans.scope||window, result, trans.arg, true);
1788     },
1789
1790     // private
1791     handleFailure : function(trans){
1792         this.trans = false;
1793         this.destroyTrans(trans, false);
1794         this.fireEvent("loadexception", this, null, trans.arg);
1795         trans.callback.call(trans.scope||window, null, trans.arg, false);
1796     }
1797 });/*
1798  * Based on:
1799  * Ext JS Library 1.1.1
1800  * Copyright(c) 2006-2007, Ext JS, LLC.
1801  *
1802  * Originally Released Under LGPL - original licence link has changed is not relivant.
1803  *
1804  * Fork - LGPL
1805  * <script type="text/javascript">
1806  */
1807
1808 /**
1809  * @class Roo.data.JsonReader
1810  * @extends Roo.data.DataReader
1811  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
1812  * based on mappings in a provided Roo.data.Record constructor.
1813  * 
1814  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
1815  * in the reply previously. 
1816  * 
1817  * <p>
1818  * Example code:
1819  * <pre><code>
1820 var RecordDef = Roo.data.Record.create([
1821     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
1822     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
1823 ]);
1824 var myReader = new Roo.data.JsonReader({
1825     totalProperty: "results",    // The property which contains the total dataset size (optional)
1826     root: "rows",                // The property which contains an Array of row objects
1827     id: "id"                     // The property within each row object that provides an ID for the record (optional)
1828 }, RecordDef);
1829 </code></pre>
1830  * <p>
1831  * This would consume a JSON file like this:
1832  * <pre><code>
1833 { 'results': 2, 'rows': [
1834     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
1835     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
1836 }
1837 </code></pre>
1838  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
1839  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
1840  * paged from the remote server.
1841  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
1842  * @cfg {String} root name of the property which contains the Array of row objects.
1843  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
1844  * @cfg {Array} fields Array of field definition objects
1845  * @constructor
1846  * Create a new JsonReader
1847  * @param {Object} meta Metadata configuration options
1848  * @param {Object} recordType Either an Array of field definition objects,
1849  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
1850  */
1851 Roo.data.JsonReader = function(meta, recordType){
1852     
1853     meta = meta || {};
1854     // set some defaults:
1855     Roo.applyIf(meta, {
1856         totalProperty: 'total',
1857         successProperty : 'success',
1858         root : 'data',
1859         id : 'id'
1860     });
1861     
1862     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
1863 };
1864 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
1865     
1866     readerType : 'Json',
1867     
1868     /**
1869      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
1870      * Used by Store query builder to append _requestMeta to params.
1871      * 
1872      */
1873     metaFromRemote : false,
1874     /**
1875      * This method is only used by a DataProxy which has retrieved data from a remote server.
1876      * @param {Object} response The XHR object which contains the JSON data in its responseText.
1877      * @return {Object} data A data block which is used by an Roo.data.Store object as
1878      * a cache of Roo.data.Records.
1879      */
1880     read : function(response){
1881         var json = response.responseText;
1882        
1883         var o = /* eval:var:o */ eval("("+json+")");
1884         if(!o) {
1885             throw {message: "JsonReader.read: Json object not found"};
1886         }
1887         
1888         if(o.metaData){
1889             
1890             delete this.ef;
1891             this.metaFromRemote = true;
1892             this.meta = o.metaData;
1893             this.recordType = Roo.data.Record.create(o.metaData.fields);
1894             this.onMetaChange(this.meta, this.recordType, o);
1895         }
1896         return this.readRecords(o);
1897     },
1898
1899     // private function a store will implement
1900     onMetaChange : function(meta, recordType, o){
1901
1902     },
1903
1904     /**
1905          * @ignore
1906          */
1907     simpleAccess: function(obj, subsc) {
1908         return obj[subsc];
1909     },
1910
1911         /**
1912          * @ignore
1913          */
1914     getJsonAccessor: function(){
1915         var re = /[\[\.]/;
1916         return function(expr) {
1917             try {
1918                 return(re.test(expr))
1919                     ? new Function("obj", "return obj." + expr)
1920                     : function(obj){
1921                         return obj[expr];
1922                     };
1923             } catch(e){}
1924             return Roo.emptyFn;
1925         };
1926     }(),
1927
1928     /**
1929      * Create a data block containing Roo.data.Records from an XML document.
1930      * @param {Object} o An object which contains an Array of row objects in the property specified
1931      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
1932      * which contains the total size of the dataset.
1933      * @return {Object} data A data block which is used by an Roo.data.Store object as
1934      * a cache of Roo.data.Records.
1935      */
1936     readRecords : function(o){
1937         /**
1938          * After any data loads, the raw JSON data is available for further custom processing.
1939          * @type Object
1940          */
1941         this.o = o;
1942         var s = this.meta, Record = this.recordType,
1943             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
1944
1945 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
1946         if (!this.ef) {
1947             if(s.totalProperty) {
1948                     this.getTotal = this.getJsonAccessor(s.totalProperty);
1949                 }
1950                 if(s.successProperty) {
1951                     this.getSuccess = this.getJsonAccessor(s.successProperty);
1952                 }
1953                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
1954                 if (s.id) {
1955                         var g = this.getJsonAccessor(s.id);
1956                         this.getId = function(rec) {
1957                                 var r = g(rec);  
1958                                 return (r === undefined || r === "") ? null : r;
1959                         };
1960                 } else {
1961                         this.getId = function(){return null;};
1962                 }
1963             this.ef = [];
1964             for(var jj = 0; jj < fl; jj++){
1965                 f = fi[jj];
1966                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
1967                 this.ef[jj] = this.getJsonAccessor(map);
1968             }
1969         }
1970
1971         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
1972         if(s.totalProperty){
1973             var vt = parseInt(this.getTotal(o), 10);
1974             if(!isNaN(vt)){
1975                 totalRecords = vt;
1976             }
1977         }
1978         if(s.successProperty){
1979             var vs = this.getSuccess(o);
1980             if(vs === false || vs === 'false'){
1981                 success = false;
1982             }
1983         }
1984         var records = [];
1985         for(var i = 0; i < c; i++){
1986             var n = root[i];
1987             var values = {};
1988             var id = this.getId(n);
1989             for(var j = 0; j < fl; j++){
1990                 f = fi[j];
1991                                 var v = this.ef[j](n);
1992                                 if (!f.convert) {
1993                                         Roo.log('missing convert for ' + f.name);
1994                                         Roo.log(f);
1995                                         continue;
1996                                 }
1997                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
1998             }
1999                         if (!Record) {
2000                                 return {
2001                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
2002                                         success : false,
2003                                         records : [],
2004                                         totalRecords : 0
2005                                 };
2006                         }
2007             var record = new Record(values, id);
2008             record.json = n;
2009             records[i] = record;
2010         }
2011         return {
2012             raw : o,
2013             success : success,
2014             records : records,
2015             totalRecords : totalRecords
2016         };
2017     },
2018     // used when loading children.. @see loadDataFromChildren
2019     toLoadData: function(rec)
2020     {
2021         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
2022         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
2023         return { data : data, total : data.length };
2024         
2025     }
2026 });/*
2027  * Based on:
2028  * Ext JS Library 1.1.1
2029  * Copyright(c) 2006-2007, Ext JS, LLC.
2030  *
2031  * Originally Released Under LGPL - original licence link has changed is not relivant.
2032  *
2033  * Fork - LGPL
2034  * <script type="text/javascript">
2035  */
2036
2037 /**
2038  * @class Roo.data.XmlReader
2039  * @extends Roo.data.DataReader
2040  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
2041  * based on mappings in a provided Roo.data.Record constructor.<br><br>
2042  * <p>
2043  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
2044  * header in the HTTP response must be set to "text/xml".</em>
2045  * <p>
2046  * Example code:
2047  * <pre><code>
2048 var RecordDef = Roo.data.Record.create([
2049    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
2050    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
2051 ]);
2052 var myReader = new Roo.data.XmlReader({
2053    totalRecords: "results", // The element which contains the total dataset size (optional)
2054    record: "row",           // The repeated element which contains row information
2055    id: "id"                 // The element within the row that provides an ID for the record (optional)
2056 }, RecordDef);
2057 </code></pre>
2058  * <p>
2059  * This would consume an XML file like this:
2060  * <pre><code>
2061 &lt;?xml?>
2062 &lt;dataset>
2063  &lt;results>2&lt;/results>
2064  &lt;row>
2065    &lt;id>1&lt;/id>
2066    &lt;name>Bill&lt;/name>
2067    &lt;occupation>Gardener&lt;/occupation>
2068  &lt;/row>
2069  &lt;row>
2070    &lt;id>2&lt;/id>
2071    &lt;name>Ben&lt;/name>
2072    &lt;occupation>Horticulturalist&lt;/occupation>
2073  &lt;/row>
2074 &lt;/dataset>
2075 </code></pre>
2076  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
2077  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
2078  * paged from the remote server.
2079  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
2080  * @cfg {String} success The DomQuery path to the success attribute used by forms.
2081  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
2082  * a record identifier value.
2083  * @constructor
2084  * Create a new XmlReader
2085  * @param {Object} meta Metadata configuration options
2086  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
2087  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
2088  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
2089  */
2090 Roo.data.XmlReader = function(meta, recordType){
2091     meta = meta || {};
2092     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2093 };
2094 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
2095     
2096     readerType : 'Xml',
2097     
2098     /**
2099      * This method is only used by a DataProxy which has retrieved data from a remote server.
2100          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
2101          * to contain a method called 'responseXML' that returns an XML document object.
2102      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2103      * a cache of Roo.data.Records.
2104      */
2105     read : function(response){
2106         var doc = response.responseXML;
2107         if(!doc) {
2108             throw {message: "XmlReader.read: XML Document not available"};
2109         }
2110         return this.readRecords(doc);
2111     },
2112
2113     /**
2114      * Create a data block containing Roo.data.Records from an XML document.
2115          * @param {Object} doc A parsed XML document.
2116      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
2117      * a cache of Roo.data.Records.
2118      */
2119     readRecords : function(doc){
2120         /**
2121          * After any data loads/reads, the raw XML Document is available for further custom processing.
2122          * @type XMLDocument
2123          */
2124         this.xmlData = doc;
2125         var root = doc.documentElement || doc;
2126         var q = Roo.DomQuery;
2127         var recordType = this.recordType, fields = recordType.prototype.fields;
2128         var sid = this.meta.id;
2129         var totalRecords = 0, success = true;
2130         if(this.meta.totalRecords){
2131             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
2132         }
2133         
2134         if(this.meta.success){
2135             var sv = q.selectValue(this.meta.success, root, true);
2136             success = sv !== false && sv !== 'false';
2137         }
2138         var records = [];
2139         var ns = q.select(this.meta.record, root);
2140         for(var i = 0, len = ns.length; i < len; i++) {
2141                 var n = ns[i];
2142                 var values = {};
2143                 var id = sid ? q.selectValue(sid, n) : undefined;
2144                 for(var j = 0, jlen = fields.length; j < jlen; j++){
2145                     var f = fields.items[j];
2146                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
2147                     v = f.convert(v);
2148                     values[f.name] = v;
2149                 }
2150                 var record = new recordType(values, id);
2151                 record.node = n;
2152                 records[records.length] = record;
2153             }
2154
2155             return {
2156                 success : success,
2157                 records : records,
2158                 totalRecords : totalRecords || records.length
2159             };
2160     }
2161 });/*
2162  * Based on:
2163  * Ext JS Library 1.1.1
2164  * Copyright(c) 2006-2007, Ext JS, LLC.
2165  *
2166  * Originally Released Under LGPL - original licence link has changed is not relivant.
2167  *
2168  * Fork - LGPL
2169  * <script type="text/javascript">
2170  */
2171
2172 /**
2173  * @class Roo.data.ArrayReader
2174  * @extends Roo.data.DataReader
2175  * Data reader class to create an Array of Roo.data.Record objects from an Array.
2176  * Each element of that Array represents a row of data fields. The
2177  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
2178  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
2179  * <p>
2180  * Example code:.
2181  * <pre><code>
2182 var RecordDef = Roo.data.Record.create([
2183     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
2184     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
2185 ]);
2186 var myReader = new Roo.data.ArrayReader({
2187     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
2188 }, RecordDef);
2189 </code></pre>
2190  * <p>
2191  * This would consume an Array like this:
2192  * <pre><code>
2193 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
2194   </code></pre>
2195  
2196  * @constructor
2197  * Create a new JsonReader
2198  * @param {Object} meta Metadata configuration options.
2199  * @param {Object|Array} recordType Either an Array of field definition objects
2200  * 
2201  * @cfg {Array} fields Array of field definition objects
2202  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
2203  * as specified to {@link Roo.data.Record#create},
2204  * or an {@link Roo.data.Record} object
2205  *
2206  * 
2207  * created using {@link Roo.data.Record#create}.
2208  */
2209 Roo.data.ArrayReader = function(meta, recordType)
2210 {    
2211     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
2212 };
2213
2214 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
2215     
2216       /**
2217      * Create a data block containing Roo.data.Records from an XML document.
2218      * @param {Object} o An Array of row objects which represents the dataset.
2219      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
2220      * a cache of Roo.data.Records.
2221      */
2222     readRecords : function(o)
2223     {
2224         var sid = this.meta ? this.meta.id : null;
2225         var recordType = this.recordType, fields = recordType.prototype.fields;
2226         var records = [];
2227         var root = o;
2228         for(var i = 0; i < root.length; i++){
2229             var n = root[i];
2230             var values = {};
2231             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
2232             for(var j = 0, jlen = fields.length; j < jlen; j++){
2233                 var f = fields.items[j];
2234                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
2235                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
2236                 v = f.convert(v);
2237                 values[f.name] = v;
2238             }
2239             var record = new recordType(values, id);
2240             record.json = n;
2241             records[records.length] = record;
2242         }
2243         return {
2244             records : records,
2245             totalRecords : records.length
2246         };
2247     },
2248     // used when loading children.. @see loadDataFromChildren
2249     toLoadData: function(rec)
2250     {
2251         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
2252         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
2253         
2254     }
2255     
2256     
2257 });/*
2258  * Based on:
2259  * Ext JS Library 1.1.1
2260  * Copyright(c) 2006-2007, Ext JS, LLC.
2261  *
2262  * Originally Released Under LGPL - original licence link has changed is not relivant.
2263  *
2264  * Fork - LGPL
2265  * <script type="text/javascript">
2266  */
2267
2268
2269 /**
2270  * @class Roo.data.Tree
2271  * @extends Roo.util.Observable
2272  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
2273  * in the tree have most standard DOM functionality.
2274  * @constructor
2275  * @param {Node} root (optional) The root node
2276  */
2277 Roo.data.Tree = function(root){
2278    this.nodeHash = {};
2279    /**
2280     * The root node for this tree
2281     * @type Node
2282     */
2283    this.root = null;
2284    if(root){
2285        this.setRootNode(root);
2286    }
2287    this.addEvents({
2288        /**
2289         * @event append
2290         * Fires when a new child node is appended to a node in this tree.
2291         * @param {Tree} tree The owner tree
2292         * @param {Node} parent The parent node
2293         * @param {Node} node The newly appended node
2294         * @param {Number} index The index of the newly appended node
2295         */
2296        "append" : true,
2297        /**
2298         * @event remove
2299         * Fires when a child node is removed from a node in this tree.
2300         * @param {Tree} tree The owner tree
2301         * @param {Node} parent The parent node
2302         * @param {Node} node The child node removed
2303         */
2304        "remove" : true,
2305        /**
2306         * @event move
2307         * Fires when a node is moved to a new location in the tree
2308         * @param {Tree} tree The owner tree
2309         * @param {Node} node The node moved
2310         * @param {Node} oldParent The old parent of this node
2311         * @param {Node} newParent The new parent of this node
2312         * @param {Number} index The index it was moved to
2313         */
2314        "move" : true,
2315        /**
2316         * @event insert
2317         * Fires when a new child node is inserted in a node in this tree.
2318         * @param {Tree} tree The owner tree
2319         * @param {Node} parent The parent node
2320         * @param {Node} node The child node inserted
2321         * @param {Node} refNode The child node the node was inserted before
2322         */
2323        "insert" : true,
2324        /**
2325         * @event beforeappend
2326         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
2327         * @param {Tree} tree The owner tree
2328         * @param {Node} parent The parent node
2329         * @param {Node} node The child node to be appended
2330         */
2331        "beforeappend" : true,
2332        /**
2333         * @event beforeremove
2334         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
2335         * @param {Tree} tree The owner tree
2336         * @param {Node} parent The parent node
2337         * @param {Node} node The child node to be removed
2338         */
2339        "beforeremove" : true,
2340        /**
2341         * @event beforemove
2342         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
2343         * @param {Tree} tree The owner tree
2344         * @param {Node} node The node being moved
2345         * @param {Node} oldParent The parent of the node
2346         * @param {Node} newParent The new parent the node is moving to
2347         * @param {Number} index The index it is being moved to
2348         */
2349        "beforemove" : true,
2350        /**
2351         * @event beforeinsert
2352         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
2353         * @param {Tree} tree The owner tree
2354         * @param {Node} parent The parent node
2355         * @param {Node} node The child node to be inserted
2356         * @param {Node} refNode The child node the node is being inserted before
2357         */
2358        "beforeinsert" : true
2359    });
2360
2361     Roo.data.Tree.superclass.constructor.call(this);
2362 };
2363
2364 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
2365     pathSeparator: "/",
2366
2367     proxyNodeEvent : function(){
2368         return this.fireEvent.apply(this, arguments);
2369     },
2370
2371     /**
2372      * Returns the root node for this tree.
2373      * @return {Node}
2374      */
2375     getRootNode : function(){
2376         return this.root;
2377     },
2378
2379     /**
2380      * Sets the root node for this tree.
2381      * @param {Node} node
2382      * @return {Node}
2383      */
2384     setRootNode : function(node){
2385         this.root = node;
2386         node.ownerTree = this;
2387         node.isRoot = true;
2388         this.registerNode(node);
2389         return node;
2390     },
2391
2392     /**
2393      * Gets a node in this tree by its id.
2394      * @param {String} id
2395      * @return {Node}
2396      */
2397     getNodeById : function(id){
2398         return this.nodeHash[id];
2399     },
2400
2401     registerNode : function(node){
2402         this.nodeHash[node.id] = node;
2403     },
2404
2405     unregisterNode : function(node){
2406         delete this.nodeHash[node.id];
2407     },
2408
2409     toString : function(){
2410         return "[Tree"+(this.id?" "+this.id:"")+"]";
2411     }
2412 });
2413
2414 /**
2415  * @class Roo.data.Node
2416  * @extends Roo.util.Observable
2417  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
2418  * @cfg {String} id The id for this node. If one is not specified, one is generated.
2419  * @constructor
2420  * @param {Object} attributes The attributes/config for the node
2421  */
2422 Roo.data.Node = function(attributes){
2423     /**
2424      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
2425      * @type {Object}
2426      */
2427     this.attributes = attributes || {};
2428     this.leaf = this.attributes.leaf;
2429     /**
2430      * The node id. @type String
2431      */
2432     this.id = this.attributes.id;
2433     if(!this.id){
2434         this.id = Roo.id(null, "ynode-");
2435         this.attributes.id = this.id;
2436     }
2437      
2438     
2439     /**
2440      * All child nodes of this node. @type Array
2441      */
2442     this.childNodes = [];
2443     if(!this.childNodes.indexOf){ // indexOf is a must
2444         this.childNodes.indexOf = function(o){
2445             for(var i = 0, len = this.length; i < len; i++){
2446                 if(this[i] == o) {
2447                     return i;
2448                 }
2449             }
2450             return -1;
2451         };
2452     }
2453     /**
2454      * The parent node for this node. @type Node
2455      */
2456     this.parentNode = null;
2457     /**
2458      * The first direct child node of this node, or null if this node has no child nodes. @type Node
2459      */
2460     this.firstChild = null;
2461     /**
2462      * The last direct child node of this node, or null if this node has no child nodes. @type Node
2463      */
2464     this.lastChild = null;
2465     /**
2466      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
2467      */
2468     this.previousSibling = null;
2469     /**
2470      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
2471      */
2472     this.nextSibling = null;
2473
2474     this.addEvents({
2475        /**
2476         * @event append
2477         * Fires when a new child node is appended
2478         * @param {Tree} tree The owner tree
2479         * @param {Node} this This node
2480         * @param {Node} node The newly appended node
2481         * @param {Number} index The index of the newly appended node
2482         */
2483        "append" : true,
2484        /**
2485         * @event remove
2486         * Fires when a child node is removed
2487         * @param {Tree} tree The owner tree
2488         * @param {Node} this This node
2489         * @param {Node} node The removed node
2490         */
2491        "remove" : true,
2492        /**
2493         * @event move
2494         * Fires when this node is moved to a new location in the tree
2495         * @param {Tree} tree The owner tree
2496         * @param {Node} this This node
2497         * @param {Node} oldParent The old parent of this node
2498         * @param {Node} newParent The new parent of this node
2499         * @param {Number} index The index it was moved to
2500         */
2501        "move" : true,
2502        /**
2503         * @event insert
2504         * Fires when a new child node is inserted.
2505         * @param {Tree} tree The owner tree
2506         * @param {Node} this This node
2507         * @param {Node} node The child node inserted
2508         * @param {Node} refNode The child node the node was inserted before
2509         */
2510        "insert" : true,
2511        /**
2512         * @event beforeappend
2513         * Fires before a new child is appended, return false to cancel the append.
2514         * @param {Tree} tree The owner tree
2515         * @param {Node} this This node
2516         * @param {Node} node The child node to be appended
2517         */
2518        "beforeappend" : true,
2519        /**
2520         * @event beforeremove
2521         * Fires before a child is removed, return false to cancel the remove.
2522         * @param {Tree} tree The owner tree
2523         * @param {Node} this This node
2524         * @param {Node} node The child node to be removed
2525         */
2526        "beforeremove" : true,
2527        /**
2528         * @event beforemove
2529         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
2530         * @param {Tree} tree The owner tree
2531         * @param {Node} this This node
2532         * @param {Node} oldParent The parent of this node
2533         * @param {Node} newParent The new parent this node is moving to
2534         * @param {Number} index The index it is being moved to
2535         */
2536        "beforemove" : true,
2537        /**
2538         * @event beforeinsert
2539         * Fires before a new child is inserted, return false to cancel the insert.
2540         * @param {Tree} tree The owner tree
2541         * @param {Node} this This node
2542         * @param {Node} node The child node to be inserted
2543         * @param {Node} refNode The child node the node is being inserted before
2544         */
2545        "beforeinsert" : true
2546    });
2547     this.listeners = this.attributes.listeners;
2548     Roo.data.Node.superclass.constructor.call(this);
2549 };
2550
2551 Roo.extend(Roo.data.Node, Roo.util.Observable, {
2552     fireEvent : function(evtName){
2553         // first do standard event for this node
2554         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
2555             return false;
2556         }
2557         // then bubble it up to the tree if the event wasn't cancelled
2558         var ot = this.getOwnerTree();
2559         if(ot){
2560             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
2561                 return false;
2562             }
2563         }
2564         return true;
2565     },
2566
2567     /**
2568      * Returns true if this node is a leaf
2569      * @return {Boolean}
2570      */
2571     isLeaf : function(){
2572         return this.leaf === true;
2573     },
2574
2575     // private
2576     setFirstChild : function(node){
2577         this.firstChild = node;
2578     },
2579
2580     //private
2581     setLastChild : function(node){
2582         this.lastChild = node;
2583     },
2584
2585
2586     /**
2587      * Returns true if this node is the last child of its parent
2588      * @return {Boolean}
2589      */
2590     isLast : function(){
2591        return (!this.parentNode ? true : this.parentNode.lastChild == this);
2592     },
2593
2594     /**
2595      * Returns true if this node is the first child of its parent
2596      * @return {Boolean}
2597      */
2598     isFirst : function(){
2599        return (!this.parentNode ? true : this.parentNode.firstChild == this);
2600     },
2601
2602     hasChildNodes : function(){
2603         return !this.isLeaf() && this.childNodes.length > 0;
2604     },
2605
2606     /**
2607      * Insert node(s) as the last child node of this node.
2608      * @param {Node/Array} node The node or Array of nodes to append
2609      * @return {Node} The appended node if single append, or null if an array was passed
2610      */
2611     appendChild : function(node){
2612         var multi = false;
2613         if(node instanceof Array){
2614             multi = node;
2615         }else if(arguments.length > 1){
2616             multi = arguments;
2617         }
2618         
2619         // if passed an array or multiple args do them one by one
2620         if(multi){
2621             for(var i = 0, len = multi.length; i < len; i++) {
2622                 this.appendChild(multi[i]);
2623             }
2624         }else{
2625             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
2626                 return false;
2627             }
2628             var index = this.childNodes.length;
2629             var oldParent = node.parentNode;
2630             // it's a move, make sure we move it cleanly
2631             if(oldParent){
2632                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
2633                     return false;
2634                 }
2635                 oldParent.removeChild(node);
2636             }
2637             
2638             index = this.childNodes.length;
2639             if(index == 0){
2640                 this.setFirstChild(node);
2641             }
2642             this.childNodes.push(node);
2643             node.parentNode = this;
2644             var ps = this.childNodes[index-1];
2645             if(ps){
2646                 node.previousSibling = ps;
2647                 ps.nextSibling = node;
2648             }else{
2649                 node.previousSibling = null;
2650             }
2651             node.nextSibling = null;
2652             this.setLastChild(node);
2653             node.setOwnerTree(this.getOwnerTree());
2654             this.fireEvent("append", this.ownerTree, this, node, index);
2655             if(this.ownerTree) {
2656                 this.ownerTree.fireEvent("appendnode", this, node, index);
2657             }
2658             if(oldParent){
2659                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
2660             }
2661             return node;
2662         }
2663     },
2664
2665     /**
2666      * Removes a child node from this node.
2667      * @param {Node} node The node to remove
2668      * @return {Node} The removed node
2669      */
2670     removeChild : function(node){
2671         var index = this.childNodes.indexOf(node);
2672         if(index == -1){
2673             return false;
2674         }
2675         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
2676             return false;
2677         }
2678
2679         // remove it from childNodes collection
2680         this.childNodes.splice(index, 1);
2681
2682         // update siblings
2683         if(node.previousSibling){
2684             node.previousSibling.nextSibling = node.nextSibling;
2685         }
2686         if(node.nextSibling){
2687             node.nextSibling.previousSibling = node.previousSibling;
2688         }
2689
2690         // update child refs
2691         if(this.firstChild == node){
2692             this.setFirstChild(node.nextSibling);
2693         }
2694         if(this.lastChild == node){
2695             this.setLastChild(node.previousSibling);
2696         }
2697
2698         node.setOwnerTree(null);
2699         // clear any references from the node
2700         node.parentNode = null;
2701         node.previousSibling = null;
2702         node.nextSibling = null;
2703         this.fireEvent("remove", this.ownerTree, this, node);
2704         return node;
2705     },
2706
2707     /**
2708      * Inserts the first node before the second node in this nodes childNodes collection.
2709      * @param {Node} node The node to insert
2710      * @param {Node} refNode The node to insert before (if null the node is appended)
2711      * @return {Node} The inserted node
2712      */
2713     insertBefore : function(node, refNode){
2714         if(!refNode){ // like standard Dom, refNode can be null for append
2715             return this.appendChild(node);
2716         }
2717         // nothing to do
2718         if(node == refNode){
2719             return false;
2720         }
2721
2722         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
2723             return false;
2724         }
2725         var index = this.childNodes.indexOf(refNode);
2726         var oldParent = node.parentNode;
2727         var refIndex = index;
2728
2729         // when moving internally, indexes will change after remove
2730         if(oldParent == this && this.childNodes.indexOf(node) < index){
2731             refIndex--;
2732         }
2733
2734         // it's a move, make sure we move it cleanly
2735         if(oldParent){
2736             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
2737                 return false;
2738             }
2739             oldParent.removeChild(node);
2740         }
2741         if(refIndex == 0){
2742             this.setFirstChild(node);
2743         }
2744         this.childNodes.splice(refIndex, 0, node);
2745         node.parentNode = this;
2746         var ps = this.childNodes[refIndex-1];
2747         if(ps){
2748             node.previousSibling = ps;
2749             ps.nextSibling = node;
2750         }else{
2751             node.previousSibling = null;
2752         }
2753         node.nextSibling = refNode;
2754         refNode.previousSibling = node;
2755         node.setOwnerTree(this.getOwnerTree());
2756         this.fireEvent("insert", this.ownerTree, this, node, refNode);
2757         if(oldParent){
2758             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
2759         }
2760         return node;
2761     },
2762
2763     /**
2764      * Returns the child node at the specified index.
2765      * @param {Number} index
2766      * @return {Node}
2767      */
2768     item : function(index){
2769         return this.childNodes[index];
2770     },
2771
2772     /**
2773      * Replaces one child node in this node with another.
2774      * @param {Node} newChild The replacement node
2775      * @param {Node} oldChild The node to replace
2776      * @return {Node} The replaced node
2777      */
2778     replaceChild : function(newChild, oldChild){
2779         this.insertBefore(newChild, oldChild);
2780         this.removeChild(oldChild);
2781         return oldChild;
2782     },
2783
2784     /**
2785      * Returns the index of a child node
2786      * @param {Node} node
2787      * @return {Number} The index of the node or -1 if it was not found
2788      */
2789     indexOf : function(child){
2790         return this.childNodes.indexOf(child);
2791     },
2792
2793     /**
2794      * Returns the tree this node is in.
2795      * @return {Tree}
2796      */
2797     getOwnerTree : function(){
2798         // if it doesn't have one, look for one
2799         if(!this.ownerTree){
2800             var p = this;
2801             while(p){
2802                 if(p.ownerTree){
2803                     this.ownerTree = p.ownerTree;
2804                     break;
2805                 }
2806                 p = p.parentNode;
2807             }
2808         }
2809         return this.ownerTree;
2810     },
2811
2812     /**
2813      * Returns depth of this node (the root node has a depth of 0)
2814      * @return {Number}
2815      */
2816     getDepth : function(){
2817         var depth = 0;
2818         var p = this;
2819         while(p.parentNode){
2820             ++depth;
2821             p = p.parentNode;
2822         }
2823         return depth;
2824     },
2825
2826     // private
2827     setOwnerTree : function(tree){
2828         // if it's move, we need to update everyone
2829         if(tree != this.ownerTree){
2830             if(this.ownerTree){
2831                 this.ownerTree.unregisterNode(this);
2832             }
2833             this.ownerTree = tree;
2834             var cs = this.childNodes;
2835             for(var i = 0, len = cs.length; i < len; i++) {
2836                 cs[i].setOwnerTree(tree);
2837             }
2838             if(tree){
2839                 tree.registerNode(this);
2840             }
2841         }
2842     },
2843
2844     /**
2845      * Returns the path for this node. The path can be used to expand or select this node programmatically.
2846      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
2847      * @return {String} The path
2848      */
2849     getPath : function(attr){
2850         attr = attr || "id";
2851         var p = this.parentNode;
2852         var b = [this.attributes[attr]];
2853         while(p){
2854             b.unshift(p.attributes[attr]);
2855             p = p.parentNode;
2856         }
2857         var sep = this.getOwnerTree().pathSeparator;
2858         return sep + b.join(sep);
2859     },
2860
2861     /**
2862      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2863      * function call will be the scope provided or the current node. The arguments to the function
2864      * will be the args provided or the current node. If the function returns false at any point,
2865      * the bubble is stopped.
2866      * @param {Function} fn The function to call
2867      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2868      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2869      */
2870     bubble : function(fn, scope, args){
2871         var p = this;
2872         while(p){
2873             if(fn.call(scope || p, args || p) === false){
2874                 break;
2875             }
2876             p = p.parentNode;
2877         }
2878     },
2879
2880     /**
2881      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
2882      * function call will be the scope provided or the current node. The arguments to the function
2883      * will be the args provided or the current node. If the function returns false at any point,
2884      * the cascade is stopped on that branch.
2885      * @param {Function} fn The function to call
2886      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2887      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2888      */
2889     cascade : function(fn, scope, args){
2890         if(fn.call(scope || this, args || this) !== false){
2891             var cs = this.childNodes;
2892             for(var i = 0, len = cs.length; i < len; i++) {
2893                 cs[i].cascade(fn, scope, args);
2894             }
2895         }
2896     },
2897
2898     /**
2899      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
2900      * function call will be the scope provided or the current node. The arguments to the function
2901      * will be the args provided or the current node. If the function returns false at any point,
2902      * the iteration stops.
2903      * @param {Function} fn The function to call
2904      * @param {Object} scope (optional) The scope of the function (defaults to current node)
2905      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
2906      */
2907     eachChild : function(fn, scope, args){
2908         var cs = this.childNodes;
2909         for(var i = 0, len = cs.length; i < len; i++) {
2910                 if(fn.call(scope || this, args || cs[i]) === false){
2911                     break;
2912                 }
2913         }
2914     },
2915
2916     /**
2917      * Finds the first child that has the attribute with the specified value.
2918      * @param {String} attribute The attribute name
2919      * @param {Mixed} value The value to search for
2920      * @return {Node} The found child or null if none was found
2921      */
2922     findChild : function(attribute, value){
2923         var cs = this.childNodes;
2924         for(var i = 0, len = cs.length; i < len; i++) {
2925                 if(cs[i].attributes[attribute] == value){
2926                     return cs[i];
2927                 }
2928         }
2929         return null;
2930     },
2931
2932     /**
2933      * Finds the first child by a custom function. The child matches if the function passed
2934      * returns true.
2935      * @param {Function} fn
2936      * @param {Object} scope (optional)
2937      * @return {Node} The found child or null if none was found
2938      */
2939     findChildBy : function(fn, scope){
2940         var cs = this.childNodes;
2941         for(var i = 0, len = cs.length; i < len; i++) {
2942                 if(fn.call(scope||cs[i], cs[i]) === true){
2943                     return cs[i];
2944                 }
2945         }
2946         return null;
2947     },
2948
2949     /**
2950      * Sorts this nodes children using the supplied sort function
2951      * @param {Function} fn
2952      * @param {Object} scope (optional)
2953      */
2954     sort : function(fn, scope){
2955         var cs = this.childNodes;
2956         var len = cs.length;
2957         if(len > 0){
2958             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
2959             cs.sort(sortFn);
2960             for(var i = 0; i < len; i++){
2961                 var n = cs[i];
2962                 n.previousSibling = cs[i-1];
2963                 n.nextSibling = cs[i+1];
2964                 if(i == 0){
2965                     this.setFirstChild(n);
2966                 }
2967                 if(i == len-1){
2968                     this.setLastChild(n);
2969                 }
2970             }
2971         }
2972     },
2973
2974     /**
2975      * Returns true if this node is an ancestor (at any point) of the passed node.
2976      * @param {Node} node
2977      * @return {Boolean}
2978      */
2979     contains : function(node){
2980         return node.isAncestor(this);
2981     },
2982
2983     /**
2984      * Returns true if the passed node is an ancestor (at any point) of this node.
2985      * @param {Node} node
2986      * @return {Boolean}
2987      */
2988     isAncestor : function(node){
2989         var p = this.parentNode;
2990         while(p){
2991             if(p == node){
2992                 return true;
2993             }
2994             p = p.parentNode;
2995         }
2996         return false;
2997     },
2998
2999     toString : function(){
3000         return "[Node"+(this.id?" "+this.id:"")+"]";
3001     }
3002 });/*
3003  * Based on:
3004  * Ext JS Library 1.1.1
3005  * Copyright(c) 2006-2007, Ext JS, LLC.
3006  *
3007  * Originally Released Under LGPL - original licence link has changed is not relivant.
3008  *
3009  * Fork - LGPL
3010  * <script type="text/javascript">
3011  */
3012
3013
3014 /**
3015  * @class Roo.Shadow
3016  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
3017  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
3018  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
3019  * @constructor
3020  * Create a new Shadow
3021  * @param {Object} config The config object
3022  */
3023 Roo.Shadow = function(config){
3024     Roo.apply(this, config);
3025     if(typeof this.mode != "string"){
3026         this.mode = this.defaultMode;
3027     }
3028     var o = this.offset, a = {h: 0};
3029     var rad = Math.floor(this.offset/2);
3030     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
3031         case "drop":
3032             a.w = 0;
3033             a.l = a.t = o;
3034             a.t -= 1;
3035             if(Roo.isIE){
3036                 a.l -= this.offset + rad;
3037                 a.t -= this.offset + rad;
3038                 a.w -= rad;
3039                 a.h -= rad;
3040                 a.t += 1;
3041             }
3042         break;
3043         case "sides":
3044             a.w = (o*2);
3045             a.l = -o;
3046             a.t = o-1;
3047             if(Roo.isIE){
3048                 a.l -= (this.offset - rad);
3049                 a.t -= this.offset + rad;
3050                 a.l += 1;
3051                 a.w -= (this.offset - rad)*2;
3052                 a.w -= rad + 1;
3053                 a.h -= 1;
3054             }
3055         break;
3056         case "frame":
3057             a.w = a.h = (o*2);
3058             a.l = a.t = -o;
3059             a.t += 1;
3060             a.h -= 2;
3061             if(Roo.isIE){
3062                 a.l -= (this.offset - rad);
3063                 a.t -= (this.offset - rad);
3064                 a.l += 1;
3065                 a.w -= (this.offset + rad + 1);
3066                 a.h -= (this.offset + rad);
3067                 a.h += 1;
3068             }
3069         break;
3070     };
3071
3072     this.adjusts = a;
3073 };
3074
3075 Roo.Shadow.prototype = {
3076     /**
3077      * @cfg {String} mode
3078      * The shadow display mode.  Supports the following options:<br />
3079      * sides: Shadow displays on both sides and bottom only<br />
3080      * frame: Shadow displays equally on all four sides<br />
3081      * drop: Traditional bottom-right drop shadow (default)
3082      */
3083     mode: false,
3084     /**
3085      * @cfg {String} offset
3086      * The number of pixels to offset the shadow from the element (defaults to 4)
3087      */
3088     offset: 4,
3089
3090     // private
3091     defaultMode: "drop",
3092
3093     /**
3094      * Displays the shadow under the target element
3095      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
3096      */
3097     show : function(target){
3098         target = Roo.get(target);
3099         if(!this.el){
3100             this.el = Roo.Shadow.Pool.pull();
3101             if(this.el.dom.nextSibling != target.dom){
3102                 this.el.insertBefore(target);
3103             }
3104         }
3105         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
3106         if(Roo.isIE){
3107             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
3108         }
3109         this.realign(
3110             target.getLeft(true),
3111             target.getTop(true),
3112             target.getWidth(),
3113             target.getHeight()
3114         );
3115         this.el.dom.style.display = "block";
3116     },
3117
3118     /**
3119      * Returns true if the shadow is visible, else false
3120      */
3121     isVisible : function(){
3122         return this.el ? true : false;  
3123     },
3124
3125     /**
3126      * Direct alignment when values are already available. Show must be called at least once before
3127      * calling this method to ensure it is initialized.
3128      * @param {Number} left The target element left position
3129      * @param {Number} top The target element top position
3130      * @param {Number} width The target element width
3131      * @param {Number} height The target element height
3132      */
3133     realign : function(l, t, w, h){
3134         if(!this.el){
3135             return;
3136         }
3137         var a = this.adjusts, d = this.el.dom, s = d.style;
3138         var iea = 0;
3139         s.left = (l+a.l)+"px";
3140         s.top = (t+a.t)+"px";
3141         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
3142  
3143         if(s.width != sws || s.height != shs){
3144             s.width = sws;
3145             s.height = shs;
3146             if(!Roo.isIE){
3147                 var cn = d.childNodes;
3148                 var sww = Math.max(0, (sw-12))+"px";
3149                 cn[0].childNodes[1].style.width = sww;
3150                 cn[1].childNodes[1].style.width = sww;
3151                 cn[2].childNodes[1].style.width = sww;
3152                 cn[1].style.height = Math.max(0, (sh-12))+"px";
3153             }
3154         }
3155     },
3156
3157     /**
3158      * Hides this shadow
3159      */
3160     hide : function(){
3161         if(this.el){
3162             this.el.dom.style.display = "none";
3163             Roo.Shadow.Pool.push(this.el);
3164             delete this.el;
3165         }
3166     },
3167
3168     /**
3169      * Adjust the z-index of this shadow
3170      * @param {Number} zindex The new z-index
3171      */
3172     setZIndex : function(z){
3173         this.zIndex = z;
3174         if(this.el){
3175             this.el.setStyle("z-index", z);
3176         }
3177     }
3178 };
3179
3180 // Private utility class that manages the internal Shadow cache
3181 Roo.Shadow.Pool = function(){
3182     var p = [];
3183     var markup = Roo.isIE ?
3184                  '<div class="x-ie-shadow"></div>' :
3185                  '<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>';
3186     return {
3187         pull : function(){
3188             var sh = p.shift();
3189             if(!sh){
3190                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
3191                 sh.autoBoxAdjust = false;
3192             }
3193             return sh;
3194         },
3195
3196         push : function(sh){
3197             p.push(sh);
3198         }
3199     };
3200 }();/*
3201  * Based on:
3202  * Ext JS Library 1.1.1
3203  * Copyright(c) 2006-2007, Ext JS, LLC.
3204  *
3205  * Originally Released Under LGPL - original licence link has changed is not relivant.
3206  *
3207  * Fork - LGPL
3208  * <script type="text/javascript">
3209  */
3210
3211
3212 /**
3213  * @class Roo.SplitBar
3214  * @extends Roo.util.Observable
3215  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
3216  * <br><br>
3217  * Usage:
3218  * <pre><code>
3219 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
3220                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
3221 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
3222 split.minSize = 100;
3223 split.maxSize = 600;
3224 split.animate = true;
3225 split.on('moved', splitterMoved);
3226 </code></pre>
3227  * @constructor
3228  * Create a new SplitBar
3229  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
3230  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
3231  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3232  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
3233                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
3234                         position of the SplitBar).
3235  */
3236 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
3237     
3238     /** @private */
3239     this.el = Roo.get(dragElement, true);
3240     this.el.dom.unselectable = "on";
3241     /** @private */
3242     this.resizingEl = Roo.get(resizingElement, true);
3243
3244     /**
3245      * @private
3246      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
3247      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
3248      * @type Number
3249      */
3250     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
3251     
3252     /**
3253      * The minimum size of the resizing element. (Defaults to 0)
3254      * @type Number
3255      */
3256     this.minSize = 0;
3257     
3258     /**
3259      * The maximum size of the resizing element. (Defaults to 2000)
3260      * @type Number
3261      */
3262     this.maxSize = 2000;
3263     
3264     /**
3265      * Whether to animate the transition to the new size
3266      * @type Boolean
3267      */
3268     this.animate = false;
3269     
3270     /**
3271      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
3272      * @type Boolean
3273      */
3274     this.useShim = false;
3275     
3276     /** @private */
3277     this.shim = null;
3278     
3279     if(!existingProxy){
3280         /** @private */
3281         this.proxy = Roo.SplitBar.createProxy(this.orientation);
3282     }else{
3283         this.proxy = Roo.get(existingProxy).dom;
3284     }
3285     /** @private */
3286     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
3287     
3288     /** @private */
3289     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
3290     
3291     /** @private */
3292     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
3293     
3294     /** @private */
3295     this.dragSpecs = {};
3296     
3297     /**
3298      * @private The adapter to use to positon and resize elements
3299      */
3300     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
3301     this.adapter.init(this);
3302     
3303     if(this.orientation == Roo.SplitBar.HORIZONTAL){
3304         /** @private */
3305         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
3306         this.el.addClass("x-splitbar-h");
3307     }else{
3308         /** @private */
3309         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
3310         this.el.addClass("x-splitbar-v");
3311     }
3312     
3313     this.addEvents({
3314         /**
3315          * @event resize
3316          * Fires when the splitter is moved (alias for {@link #event-moved})
3317          * @param {Roo.SplitBar} this
3318          * @param {Number} newSize the new width or height
3319          */
3320         "resize" : true,
3321         /**
3322          * @event moved
3323          * Fires when the splitter is moved
3324          * @param {Roo.SplitBar} this
3325          * @param {Number} newSize the new width or height
3326          */
3327         "moved" : true,
3328         /**
3329          * @event beforeresize
3330          * Fires before the splitter is dragged
3331          * @param {Roo.SplitBar} this
3332          */
3333         "beforeresize" : true,
3334
3335         "beforeapply" : true
3336     });
3337
3338     Roo.util.Observable.call(this);
3339 };
3340
3341 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
3342     onStartProxyDrag : function(x, y){
3343         this.fireEvent("beforeresize", this);
3344         if(!this.overlay){
3345             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
3346             o.unselectable();
3347             o.enableDisplayMode("block");
3348             // all splitbars share the same overlay
3349             Roo.SplitBar.prototype.overlay = o;
3350         }
3351         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
3352         this.overlay.show();
3353         Roo.get(this.proxy).setDisplayed("block");
3354         var size = this.adapter.getElementSize(this);
3355         this.activeMinSize = this.getMinimumSize();;
3356         this.activeMaxSize = this.getMaximumSize();;
3357         var c1 = size - this.activeMinSize;
3358         var c2 = Math.max(this.activeMaxSize - size, 0);
3359         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3360             this.dd.resetConstraints();
3361             this.dd.setXConstraint(
3362                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
3363                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
3364             );
3365             this.dd.setYConstraint(0, 0);
3366         }else{
3367             this.dd.resetConstraints();
3368             this.dd.setXConstraint(0, 0);
3369             this.dd.setYConstraint(
3370                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
3371                 this.placement == Roo.SplitBar.TOP ? c2 : c1
3372             );
3373          }
3374         this.dragSpecs.startSize = size;
3375         this.dragSpecs.startPoint = [x, y];
3376         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
3377     },
3378     
3379     /** 
3380      * @private Called after the drag operation by the DDProxy
3381      */
3382     onEndProxyDrag : function(e){
3383         Roo.get(this.proxy).setDisplayed(false);
3384         var endPoint = Roo.lib.Event.getXY(e);
3385         if(this.overlay){
3386             this.overlay.hide();
3387         }
3388         var newSize;
3389         if(this.orientation == Roo.SplitBar.HORIZONTAL){
3390             newSize = this.dragSpecs.startSize + 
3391                 (this.placement == Roo.SplitBar.LEFT ?
3392                     endPoint[0] - this.dragSpecs.startPoint[0] :
3393                     this.dragSpecs.startPoint[0] - endPoint[0]
3394                 );
3395         }else{
3396             newSize = this.dragSpecs.startSize + 
3397                 (this.placement == Roo.SplitBar.TOP ?
3398                     endPoint[1] - this.dragSpecs.startPoint[1] :
3399                     this.dragSpecs.startPoint[1] - endPoint[1]
3400                 );
3401         }
3402         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
3403         if(newSize != this.dragSpecs.startSize){
3404             if(this.fireEvent('beforeapply', this, newSize) !== false){
3405                 this.adapter.setElementSize(this, newSize);
3406                 this.fireEvent("moved", this, newSize);
3407                 this.fireEvent("resize", this, newSize);
3408             }
3409         }
3410     },
3411     
3412     /**
3413      * Get the adapter this SplitBar uses
3414      * @return The adapter object
3415      */
3416     getAdapter : function(){
3417         return this.adapter;
3418     },
3419     
3420     /**
3421      * Set the adapter this SplitBar uses
3422      * @param {Object} adapter A SplitBar adapter object
3423      */
3424     setAdapter : function(adapter){
3425         this.adapter = adapter;
3426         this.adapter.init(this);
3427     },
3428     
3429     /**
3430      * Gets the minimum size for the resizing element
3431      * @return {Number} The minimum size
3432      */
3433     getMinimumSize : function(){
3434         return this.minSize;
3435     },
3436     
3437     /**
3438      * Sets the minimum size for the resizing element
3439      * @param {Number} minSize The minimum size
3440      */
3441     setMinimumSize : function(minSize){
3442         this.minSize = minSize;
3443     },
3444     
3445     /**
3446      * Gets the maximum size for the resizing element
3447      * @return {Number} The maximum size
3448      */
3449     getMaximumSize : function(){
3450         return this.maxSize;
3451     },
3452     
3453     /**
3454      * Sets the maximum size for the resizing element
3455      * @param {Number} maxSize The maximum size
3456      */
3457     setMaximumSize : function(maxSize){
3458         this.maxSize = maxSize;
3459     },
3460     
3461     /**
3462      * Sets the initialize size for the resizing element
3463      * @param {Number} size The initial size
3464      */
3465     setCurrentSize : function(size){
3466         var oldAnimate = this.animate;
3467         this.animate = false;
3468         this.adapter.setElementSize(this, size);
3469         this.animate = oldAnimate;
3470     },
3471     
3472     /**
3473      * Destroy this splitbar. 
3474      * @param {Boolean} removeEl True to remove the element
3475      */
3476     destroy : function(removeEl){
3477         if(this.shim){
3478             this.shim.remove();
3479         }
3480         this.dd.unreg();
3481         this.proxy.parentNode.removeChild(this.proxy);
3482         if(removeEl){
3483             this.el.remove();
3484         }
3485     }
3486 });
3487
3488 /**
3489  * @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.
3490  */
3491 Roo.SplitBar.createProxy = function(dir){
3492     var proxy = new Roo.Element(document.createElement("div"));
3493     proxy.unselectable();
3494     var cls = 'x-splitbar-proxy';
3495     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
3496     document.body.appendChild(proxy.dom);
3497     return proxy.dom;
3498 };
3499
3500 /** 
3501  * @class Roo.SplitBar.BasicLayoutAdapter
3502  * Default Adapter. It assumes the splitter and resizing element are not positioned
3503  * elements and only gets/sets the width of the element. Generally used for table based layouts.
3504  */
3505 Roo.SplitBar.BasicLayoutAdapter = function(){
3506 };
3507
3508 Roo.SplitBar.BasicLayoutAdapter.prototype = {
3509     // do nothing for now
3510     init : function(s){
3511     
3512     },
3513     /**
3514      * Called before drag operations to get the current size of the resizing element. 
3515      * @param {Roo.SplitBar} s The SplitBar using this adapter
3516      */
3517      getElementSize : function(s){
3518         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3519             return s.resizingEl.getWidth();
3520         }else{
3521             return s.resizingEl.getHeight();
3522         }
3523     },
3524     
3525     /**
3526      * Called after drag operations to set the size of the resizing element.
3527      * @param {Roo.SplitBar} s The SplitBar using this adapter
3528      * @param {Number} newSize The new size to set
3529      * @param {Function} onComplete A function to be invoked when resizing is complete
3530      */
3531     setElementSize : function(s, newSize, onComplete){
3532         if(s.orientation == Roo.SplitBar.HORIZONTAL){
3533             if(!s.animate){
3534                 s.resizingEl.setWidth(newSize);
3535                 if(onComplete){
3536                     onComplete(s, newSize);
3537                 }
3538             }else{
3539                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
3540             }
3541         }else{
3542             
3543             if(!s.animate){
3544                 s.resizingEl.setHeight(newSize);
3545                 if(onComplete){
3546                     onComplete(s, newSize);
3547                 }
3548             }else{
3549                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
3550             }
3551         }
3552     }
3553 };
3554
3555 /** 
3556  *@class Roo.SplitBar.AbsoluteLayoutAdapter
3557  * @extends Roo.SplitBar.BasicLayoutAdapter
3558  * Adapter that  moves the splitter element to align with the resized sizing element. 
3559  * Used with an absolute positioned SplitBar.
3560  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
3561  * document.body, make sure you assign an id to the body element.
3562  */
3563 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
3564     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
3565     this.container = Roo.get(container);
3566 };
3567
3568 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
3569     init : function(s){
3570         this.basic.init(s);
3571     },
3572     
3573     getElementSize : function(s){
3574         return this.basic.getElementSize(s);
3575     },
3576     
3577     setElementSize : function(s, newSize, onComplete){
3578         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
3579     },
3580     
3581     moveSplitter : function(s){
3582         var yes = Roo.SplitBar;
3583         switch(s.placement){
3584             case yes.LEFT:
3585                 s.el.setX(s.resizingEl.getRight());
3586                 break;
3587             case yes.RIGHT:
3588                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
3589                 break;
3590             case yes.TOP:
3591                 s.el.setY(s.resizingEl.getBottom());
3592                 break;
3593             case yes.BOTTOM:
3594                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
3595                 break;
3596         }
3597     }
3598 };
3599
3600 /**
3601  * Orientation constant - Create a vertical SplitBar
3602  * @static
3603  * @type Number
3604  */
3605 Roo.SplitBar.VERTICAL = 1;
3606
3607 /**
3608  * Orientation constant - Create a horizontal SplitBar
3609  * @static
3610  * @type Number
3611  */
3612 Roo.SplitBar.HORIZONTAL = 2;
3613
3614 /**
3615  * Placement constant - The resizing element is to the left of the splitter element
3616  * @static
3617  * @type Number
3618  */
3619 Roo.SplitBar.LEFT = 1;
3620
3621 /**
3622  * Placement constant - The resizing element is to the right of the splitter element
3623  * @static
3624  * @type Number
3625  */
3626 Roo.SplitBar.RIGHT = 2;
3627
3628 /**
3629  * Placement constant - The resizing element is positioned above the splitter element
3630  * @static
3631  * @type Number
3632  */
3633 Roo.SplitBar.TOP = 3;
3634
3635 /**
3636  * Placement constant - The resizing element is positioned under splitter element
3637  * @static
3638  * @type Number
3639  */
3640 Roo.SplitBar.BOTTOM = 4;
3641 /*
3642  * Based on:
3643  * Ext JS Library 1.1.1
3644  * Copyright(c) 2006-2007, Ext JS, LLC.
3645  *
3646  * Originally Released Under LGPL - original licence link has changed is not relivant.
3647  *
3648  * Fork - LGPL
3649  * <script type="text/javascript">
3650  */
3651
3652 /**
3653  * @class Roo.View
3654  * @extends Roo.util.Observable
3655  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
3656  * This class also supports single and multi selection modes. <br>
3657  * Create a data model bound view:
3658  <pre><code>
3659  var store = new Roo.data.Store(...);
3660
3661  var view = new Roo.View({
3662     el : "my-element",
3663     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
3664  
3665     singleSelect: true,
3666     selectedClass: "ydataview-selected",
3667     store: store
3668  });
3669
3670  // listen for node click?
3671  view.on("click", function(vw, index, node, e){
3672  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
3673  });
3674
3675  // load XML data
3676  dataModel.load("foobar.xml");
3677  </code></pre>
3678  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
3679  * <br><br>
3680  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
3681  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
3682  * 
3683  * Note: old style constructor is still suported (container, template, config)
3684  * 
3685  * @constructor
3686  * Create a new View
3687  * @param {Object} config The config object
3688  * 
3689  */
3690 Roo.View = function(config, depreciated_tpl, depreciated_config){
3691     
3692     this.parent = false;
3693     
3694     if (typeof(depreciated_tpl) == 'undefined') {
3695         // new way.. - universal constructor.
3696         Roo.apply(this, config);
3697         this.el  = Roo.get(this.el);
3698     } else {
3699         // old format..
3700         this.el  = Roo.get(config);
3701         this.tpl = depreciated_tpl;
3702         Roo.apply(this, depreciated_config);
3703     }
3704     this.wrapEl  = this.el.wrap().wrap();
3705     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
3706     
3707     
3708     if(typeof(this.tpl) == "string"){
3709         this.tpl = new Roo.Template(this.tpl);
3710     } else {
3711         // support xtype ctors..
3712         this.tpl = new Roo.factory(this.tpl, Roo);
3713     }
3714     
3715     
3716     this.tpl.compile();
3717     
3718     /** @private */
3719     this.addEvents({
3720         /**
3721          * @event beforeclick
3722          * Fires before a click is processed. Returns false to cancel the default action.
3723          * @param {Roo.View} this
3724          * @param {Number} index The index of the target node
3725          * @param {HTMLElement} node The target node
3726          * @param {Roo.EventObject} e The raw event object
3727          */
3728             "beforeclick" : true,
3729         /**
3730          * @event click
3731          * Fires when a template node is clicked.
3732          * @param {Roo.View} this
3733          * @param {Number} index The index of the target node
3734          * @param {HTMLElement} node The target node
3735          * @param {Roo.EventObject} e The raw event object
3736          */
3737             "click" : true,
3738         /**
3739          * @event dblclick
3740          * Fires when a template node is double clicked.
3741          * @param {Roo.View} this
3742          * @param {Number} index The index of the target node
3743          * @param {HTMLElement} node The target node
3744          * @param {Roo.EventObject} e The raw event object
3745          */
3746             "dblclick" : true,
3747         /**
3748          * @event contextmenu
3749          * Fires when a template node is right clicked.
3750          * @param {Roo.View} this
3751          * @param {Number} index The index of the target node
3752          * @param {HTMLElement} node The target node
3753          * @param {Roo.EventObject} e The raw event object
3754          */
3755             "contextmenu" : true,
3756         /**
3757          * @event selectionchange
3758          * Fires when the selected nodes change.
3759          * @param {Roo.View} this
3760          * @param {Array} selections Array of the selected nodes
3761          */
3762             "selectionchange" : true,
3763     
3764         /**
3765          * @event beforeselect
3766          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
3767          * @param {Roo.View} this
3768          * @param {HTMLElement} node The node to be selected
3769          * @param {Array} selections Array of currently selected nodes
3770          */
3771             "beforeselect" : true,
3772         /**
3773          * @event preparedata
3774          * Fires on every row to render, to allow you to change the data.
3775          * @param {Roo.View} this
3776          * @param {Object} data to be rendered (change this)
3777          */
3778           "preparedata" : true
3779           
3780           
3781         });
3782
3783
3784
3785     this.el.on({
3786         "click": this.onClick,
3787         "dblclick": this.onDblClick,
3788         "contextmenu": this.onContextMenu,
3789         scope:this
3790     });
3791
3792     this.selections = [];
3793     this.nodes = [];
3794     this.cmp = new Roo.CompositeElementLite([]);
3795     if(this.store){
3796         this.store = Roo.factory(this.store, Roo.data);
3797         this.setStore(this.store, true);
3798     }
3799     
3800     if ( this.footer && this.footer.xtype) {
3801            
3802          var fctr = this.wrapEl.appendChild(document.createElement("div"));
3803         
3804         this.footer.dataSource = this.store;
3805         this.footer.container = fctr;
3806         this.footer = Roo.factory(this.footer, Roo);
3807         fctr.insertFirst(this.el);
3808         
3809         // this is a bit insane - as the paging toolbar seems to detach the el..
3810 //        dom.parentNode.parentNode.parentNode
3811          // they get detached?
3812     }
3813     
3814     
3815     Roo.View.superclass.constructor.call(this);
3816     
3817     
3818 };
3819
3820 Roo.extend(Roo.View, Roo.util.Observable, {
3821     
3822      /**
3823      * @cfg {Roo.data.Store} store Data store to load data from.
3824      */
3825     store : false,
3826     
3827     /**
3828      * @cfg {String|Roo.Element} el The container element.
3829      */
3830     el : '',
3831     
3832     /**
3833      * @cfg {String|Roo.Template} tpl The template used by this View 
3834      */
3835     tpl : false,
3836     /**
3837      * @cfg {String} dataName the named area of the template to use as the data area
3838      *                          Works with domtemplates roo-name="name"
3839      */
3840     dataName: false,
3841     /**
3842      * @cfg {String} selectedClass The css class to add to selected nodes
3843      */
3844     selectedClass : "x-view-selected",
3845      /**
3846      * @cfg {String} emptyText The empty text to show when nothing is loaded.
3847      */
3848     emptyText : "",
3849     
3850     /**
3851      * @cfg {String} text to display on mask (default Loading)
3852      */
3853     mask : false,
3854     /**
3855      * @cfg {Boolean} multiSelect Allow multiple selection
3856      */
3857     multiSelect : false,
3858     /**
3859      * @cfg {Boolean} singleSelect Allow single selection
3860      */
3861     singleSelect:  false,
3862     
3863     /**
3864      * @cfg {Boolean} toggleSelect - selecting 
3865      */
3866     toggleSelect : false,
3867     
3868     /**
3869      * @cfg {Boolean} tickable - selecting 
3870      */
3871     tickable : false,
3872     
3873     /**
3874      * Returns the element this view is bound to.
3875      * @return {Roo.Element}
3876      */
3877     getEl : function(){
3878         return this.wrapEl;
3879     },
3880     
3881     
3882
3883     /**
3884      * Refreshes the view. - called by datachanged on the store. - do not call directly.
3885      */
3886     refresh : function(){
3887         //Roo.log('refresh');
3888         var t = this.tpl;
3889         
3890         // if we are using something like 'domtemplate', then
3891         // the what gets used is:
3892         // t.applySubtemplate(NAME, data, wrapping data..)
3893         // the outer template then get' applied with
3894         //     the store 'extra data'
3895         // and the body get's added to the
3896         //      roo-name="data" node?
3897         //      <span class='roo-tpl-{name}'></span> ?????
3898         
3899         
3900         
3901         this.clearSelections();
3902         this.el.update("");
3903         var html = [];
3904         var records = this.store.getRange();
3905         if(records.length < 1) {
3906             
3907             // is this valid??  = should it render a template??
3908             
3909             this.el.update(this.emptyText);
3910             return;
3911         }
3912         var el = this.el;
3913         if (this.dataName) {
3914             this.el.update(t.apply(this.store.meta)); //????
3915             el = this.el.child('.roo-tpl-' + this.dataName);
3916         }
3917         
3918         for(var i = 0, len = records.length; i < len; i++){
3919             var data = this.prepareData(records[i].data, i, records[i]);
3920             this.fireEvent("preparedata", this, data, i, records[i]);
3921             
3922             var d = Roo.apply({}, data);
3923             
3924             if(this.tickable){
3925                 Roo.apply(d, {'roo-id' : Roo.id()});
3926                 
3927                 var _this = this;
3928             
3929                 Roo.each(this.parent.item, function(item){
3930                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
3931                         return;
3932                     }
3933                     Roo.apply(d, {'roo-data-checked' : 'checked'});
3934                 });
3935             }
3936             
3937             html[html.length] = Roo.util.Format.trim(
3938                 this.dataName ?
3939                     t.applySubtemplate(this.dataName, d, this.store.meta) :
3940                     t.apply(d)
3941             );
3942         }
3943         
3944         
3945         
3946         el.update(html.join(""));
3947         this.nodes = el.dom.childNodes;
3948         this.updateIndexes(0);
3949     },
3950     
3951
3952     /**
3953      * Function to override to reformat the data that is sent to
3954      * the template for each node.
3955      * DEPRICATED - use the preparedata event handler.
3956      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
3957      * a JSON object for an UpdateManager bound view).
3958      */
3959     prepareData : function(data, index, record)
3960     {
3961         this.fireEvent("preparedata", this, data, index, record);
3962         return data;
3963     },
3964
3965     onUpdate : function(ds, record){
3966         // Roo.log('on update');   
3967         this.clearSelections();
3968         var index = this.store.indexOf(record);
3969         var n = this.nodes[index];
3970         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
3971         n.parentNode.removeChild(n);
3972         this.updateIndexes(index, index);
3973     },
3974
3975     
3976     
3977 // --------- FIXME     
3978     onAdd : function(ds, records, index)
3979     {
3980         //Roo.log(['on Add', ds, records, index] );        
3981         this.clearSelections();
3982         if(this.nodes.length == 0){
3983             this.refresh();
3984             return;
3985         }
3986         var n = this.nodes[index];
3987         for(var i = 0, len = records.length; i < len; i++){
3988             var d = this.prepareData(records[i].data, i, records[i]);
3989             if(n){
3990                 this.tpl.insertBefore(n, d);
3991             }else{
3992                 
3993                 this.tpl.append(this.el, d);
3994             }
3995         }
3996         this.updateIndexes(index);
3997     },
3998
3999     onRemove : function(ds, record, index){
4000        // Roo.log('onRemove');
4001         this.clearSelections();
4002         var el = this.dataName  ?
4003             this.el.child('.roo-tpl-' + this.dataName) :
4004             this.el; 
4005         
4006         el.dom.removeChild(this.nodes[index]);
4007         this.updateIndexes(index);
4008     },
4009
4010     /**
4011      * Refresh an individual node.
4012      * @param {Number} index
4013      */
4014     refreshNode : function(index){
4015         this.onUpdate(this.store, this.store.getAt(index));
4016     },
4017
4018     updateIndexes : function(startIndex, endIndex){
4019         var ns = this.nodes;
4020         startIndex = startIndex || 0;
4021         endIndex = endIndex || ns.length - 1;
4022         for(var i = startIndex; i <= endIndex; i++){
4023             ns[i].nodeIndex = i;
4024         }
4025     },
4026
4027     /**
4028      * Changes the data store this view uses and refresh the view.
4029      * @param {Store} store
4030      */
4031     setStore : function(store, initial){
4032         if(!initial && this.store){
4033             this.store.un("datachanged", this.refresh);
4034             this.store.un("add", this.onAdd);
4035             this.store.un("remove", this.onRemove);
4036             this.store.un("update", this.onUpdate);
4037             this.store.un("clear", this.refresh);
4038             this.store.un("beforeload", this.onBeforeLoad);
4039             this.store.un("load", this.onLoad);
4040             this.store.un("loadexception", this.onLoad);
4041         }
4042         if(store){
4043           
4044             store.on("datachanged", this.refresh, this);
4045             store.on("add", this.onAdd, this);
4046             store.on("remove", this.onRemove, this);
4047             store.on("update", this.onUpdate, this);
4048             store.on("clear", this.refresh, this);
4049             store.on("beforeload", this.onBeforeLoad, this);
4050             store.on("load", this.onLoad, this);
4051             store.on("loadexception", this.onLoad, this);
4052         }
4053         
4054         if(store){
4055             this.refresh();
4056         }
4057     },
4058     /**
4059      * onbeforeLoad - masks the loading area.
4060      *
4061      */
4062     onBeforeLoad : function(store,opts)
4063     {
4064          //Roo.log('onBeforeLoad');   
4065         if (!opts.add) {
4066             this.el.update("");
4067         }
4068         this.el.mask(this.mask ? this.mask : "Loading" ); 
4069     },
4070     onLoad : function ()
4071     {
4072         this.el.unmask();
4073     },
4074     
4075
4076     /**
4077      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
4078      * @param {HTMLElement} node
4079      * @return {HTMLElement} The template node
4080      */
4081     findItemFromChild : function(node){
4082         var el = this.dataName  ?
4083             this.el.child('.roo-tpl-' + this.dataName,true) :
4084             this.el.dom; 
4085         
4086         if(!node || node.parentNode == el){
4087                     return node;
4088             }
4089             var p = node.parentNode;
4090             while(p && p != el){
4091             if(p.parentNode == el){
4092                 return p;
4093             }
4094             p = p.parentNode;
4095         }
4096             return null;
4097     },
4098
4099     /** @ignore */
4100     onClick : function(e){
4101         var item = this.findItemFromChild(e.getTarget());
4102         if(item){
4103             var index = this.indexOf(item);
4104             if(this.onItemClick(item, index, e) !== false){
4105                 this.fireEvent("click", this, index, item, e);
4106             }
4107         }else{
4108             this.clearSelections();
4109         }
4110     },
4111
4112     /** @ignore */
4113     onContextMenu : function(e){
4114         var item = this.findItemFromChild(e.getTarget());
4115         if(item){
4116             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
4117         }
4118     },
4119
4120     /** @ignore */
4121     onDblClick : function(e){
4122         var item = this.findItemFromChild(e.getTarget());
4123         if(item){
4124             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
4125         }
4126     },
4127
4128     onItemClick : function(item, index, e)
4129     {
4130         if(this.fireEvent("beforeclick", this, index, item, e) === false){
4131             return false;
4132         }
4133         if (this.toggleSelect) {
4134             var m = this.isSelected(item) ? 'unselect' : 'select';
4135             //Roo.log(m);
4136             var _t = this;
4137             _t[m](item, true, false);
4138             return true;
4139         }
4140         if(this.multiSelect || this.singleSelect){
4141             if(this.multiSelect && e.shiftKey && this.lastSelection){
4142                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
4143             }else{
4144                 this.select(item, this.multiSelect && e.ctrlKey);
4145                 this.lastSelection = item;
4146             }
4147             
4148             if(!this.tickable){
4149                 e.preventDefault();
4150             }
4151             
4152         }
4153         return true;
4154     },
4155
4156     /**
4157      * Get the number of selected nodes.
4158      * @return {Number}
4159      */
4160     getSelectionCount : function(){
4161         return this.selections.length;
4162     },
4163
4164     /**
4165      * Get the currently selected nodes.
4166      * @return {Array} An array of HTMLElements
4167      */
4168     getSelectedNodes : function(){
4169         return this.selections;
4170     },
4171
4172     /**
4173      * Get the indexes of the selected nodes.
4174      * @return {Array}
4175      */
4176     getSelectedIndexes : function(){
4177         var indexes = [], s = this.selections;
4178         for(var i = 0, len = s.length; i < len; i++){
4179             indexes.push(s[i].nodeIndex);
4180         }
4181         return indexes;
4182     },
4183
4184     /**
4185      * Clear all selections
4186      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
4187      */
4188     clearSelections : function(suppressEvent){
4189         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
4190             this.cmp.elements = this.selections;
4191             this.cmp.removeClass(this.selectedClass);
4192             this.selections = [];
4193             if(!suppressEvent){
4194                 this.fireEvent("selectionchange", this, this.selections);
4195             }
4196         }
4197     },
4198
4199     /**
4200      * Returns true if the passed node is selected
4201      * @param {HTMLElement/Number} node The node or node index
4202      * @return {Boolean}
4203      */
4204     isSelected : function(node){
4205         var s = this.selections;
4206         if(s.length < 1){
4207             return false;
4208         }
4209         node = this.getNode(node);
4210         return s.indexOf(node) !== -1;
4211     },
4212
4213     /**
4214      * Selects nodes.
4215      * @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
4216      * @param {Boolean} keepExisting (optional) true to keep existing selections
4217      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4218      */
4219     select : function(nodeInfo, keepExisting, suppressEvent){
4220         if(nodeInfo instanceof Array){
4221             if(!keepExisting){
4222                 this.clearSelections(true);
4223             }
4224             for(var i = 0, len = nodeInfo.length; i < len; i++){
4225                 this.select(nodeInfo[i], true, true);
4226             }
4227             return;
4228         } 
4229         var node = this.getNode(nodeInfo);
4230         if(!node || this.isSelected(node)){
4231             return; // already selected.
4232         }
4233         if(!keepExisting){
4234             this.clearSelections(true);
4235         }
4236         
4237         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
4238             Roo.fly(node).addClass(this.selectedClass);
4239             this.selections.push(node);
4240             if(!suppressEvent){
4241                 this.fireEvent("selectionchange", this, this.selections);
4242             }
4243         }
4244         
4245         
4246     },
4247       /**
4248      * Unselects nodes.
4249      * @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
4250      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
4251      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
4252      */
4253     unselect : function(nodeInfo, keepExisting, suppressEvent)
4254     {
4255         if(nodeInfo instanceof Array){
4256             Roo.each(this.selections, function(s) {
4257                 this.unselect(s, nodeInfo);
4258             }, this);
4259             return;
4260         }
4261         var node = this.getNode(nodeInfo);
4262         if(!node || !this.isSelected(node)){
4263             //Roo.log("not selected");
4264             return; // not selected.
4265         }
4266         // fireevent???
4267         var ns = [];
4268         Roo.each(this.selections, function(s) {
4269             if (s == node ) {
4270                 Roo.fly(node).removeClass(this.selectedClass);
4271
4272                 return;
4273             }
4274             ns.push(s);
4275         },this);
4276         
4277         this.selections= ns;
4278         this.fireEvent("selectionchange", this, this.selections);
4279     },
4280
4281     /**
4282      * Gets a template node.
4283      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4284      * @return {HTMLElement} The node or null if it wasn't found
4285      */
4286     getNode : function(nodeInfo){
4287         if(typeof nodeInfo == "string"){
4288             return document.getElementById(nodeInfo);
4289         }else if(typeof nodeInfo == "number"){
4290             return this.nodes[nodeInfo];
4291         }
4292         return nodeInfo;
4293     },
4294
4295     /**
4296      * Gets a range template nodes.
4297      * @param {Number} startIndex
4298      * @param {Number} endIndex
4299      * @return {Array} An array of nodes
4300      */
4301     getNodes : function(start, end){
4302         var ns = this.nodes;
4303         start = start || 0;
4304         end = typeof end == "undefined" ? ns.length - 1 : end;
4305         var nodes = [];
4306         if(start <= end){
4307             for(var i = start; i <= end; i++){
4308                 nodes.push(ns[i]);
4309             }
4310         } else{
4311             for(var i = start; i >= end; i--){
4312                 nodes.push(ns[i]);
4313             }
4314         }
4315         return nodes;
4316     },
4317
4318     /**
4319      * Finds the index of the passed node
4320      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
4321      * @return {Number} The index of the node or -1
4322      */
4323     indexOf : function(node){
4324         node = this.getNode(node);
4325         if(typeof node.nodeIndex == "number"){
4326             return node.nodeIndex;
4327         }
4328         var ns = this.nodes;
4329         for(var i = 0, len = ns.length; i < len; i++){
4330             if(ns[i] == node){
4331                 return i;
4332             }
4333         }
4334         return -1;
4335     }
4336 });
4337 /*
4338  * Based on:
4339  * Ext JS Library 1.1.1
4340  * Copyright(c) 2006-2007, Ext JS, LLC.
4341  *
4342  * Originally Released Under LGPL - original licence link has changed is not relivant.
4343  *
4344  * Fork - LGPL
4345  * <script type="text/javascript">
4346  */
4347
4348 /**
4349  * @class Roo.JsonView
4350  * @extends Roo.View
4351  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
4352 <pre><code>
4353 var view = new Roo.JsonView({
4354     container: "my-element",
4355     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
4356     multiSelect: true, 
4357     jsonRoot: "data" 
4358 });
4359
4360 // listen for node click?
4361 view.on("click", function(vw, index, node, e){
4362     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
4363 });
4364
4365 // direct load of JSON data
4366 view.load("foobar.php");
4367
4368 // Example from my blog list
4369 var tpl = new Roo.Template(
4370     '&lt;div class="entry"&gt;' +
4371     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
4372     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
4373     "&lt;/div&gt;&lt;hr /&gt;"
4374 );
4375
4376 var moreView = new Roo.JsonView({
4377     container :  "entry-list", 
4378     template : tpl,
4379     jsonRoot: "posts"
4380 });
4381 moreView.on("beforerender", this.sortEntries, this);
4382 moreView.load({
4383     url: "/blog/get-posts.php",
4384     params: "allposts=true",
4385     text: "Loading Blog Entries..."
4386 });
4387 </code></pre>
4388
4389 * Note: old code is supported with arguments : (container, template, config)
4390
4391
4392  * @constructor
4393  * Create a new JsonView
4394  * 
4395  * @param {Object} config The config object
4396  * 
4397  */
4398 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
4399     
4400     
4401     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
4402
4403     var um = this.el.getUpdateManager();
4404     um.setRenderer(this);
4405     um.on("update", this.onLoad, this);
4406     um.on("failure", this.onLoadException, this);
4407
4408     /**
4409      * @event beforerender
4410      * Fires before rendering of the downloaded JSON data.
4411      * @param {Roo.JsonView} this
4412      * @param {Object} data The JSON data loaded
4413      */
4414     /**
4415      * @event load
4416      * Fires when data is loaded.
4417      * @param {Roo.JsonView} this
4418      * @param {Object} data The JSON data loaded
4419      * @param {Object} response The raw Connect response object
4420      */
4421     /**
4422      * @event loadexception
4423      * Fires when loading fails.
4424      * @param {Roo.JsonView} this
4425      * @param {Object} response The raw Connect response object
4426      */
4427     this.addEvents({
4428         'beforerender' : true,
4429         'load' : true,
4430         'loadexception' : true
4431     });
4432 };
4433 Roo.extend(Roo.JsonView, Roo.View, {
4434     /**
4435      * @type {String} The root property in the loaded JSON object that contains the data
4436      */
4437     jsonRoot : "",
4438
4439     /**
4440      * Refreshes the view.
4441      */
4442     refresh : function(){
4443         this.clearSelections();
4444         this.el.update("");
4445         var html = [];
4446         var o = this.jsonData;
4447         if(o && o.length > 0){
4448             for(var i = 0, len = o.length; i < len; i++){
4449                 var data = this.prepareData(o[i], i, o);
4450                 html[html.length] = this.tpl.apply(data);
4451             }
4452         }else{
4453             html.push(this.emptyText);
4454         }
4455         this.el.update(html.join(""));
4456         this.nodes = this.el.dom.childNodes;
4457         this.updateIndexes(0);
4458     },
4459
4460     /**
4461      * 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.
4462      * @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:
4463      <pre><code>
4464      view.load({
4465          url: "your-url.php",
4466          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
4467          callback: yourFunction,
4468          scope: yourObject, //(optional scope)
4469          discardUrl: false,
4470          nocache: false,
4471          text: "Loading...",
4472          timeout: 30,
4473          scripts: false
4474      });
4475      </code></pre>
4476      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
4477      * 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.
4478      * @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}
4479      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
4480      * @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.
4481      */
4482     load : function(){
4483         var um = this.el.getUpdateManager();
4484         um.update.apply(um, arguments);
4485     },
4486
4487     // note - render is a standard framework call...
4488     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
4489     render : function(el, response){
4490         
4491         this.clearSelections();
4492         this.el.update("");
4493         var o;
4494         try{
4495             if (response != '') {
4496                 o = Roo.util.JSON.decode(response.responseText);
4497                 if(this.jsonRoot){
4498                     
4499                     o = o[this.jsonRoot];
4500                 }
4501             }
4502         } catch(e){
4503         }
4504         /**
4505          * The current JSON data or null
4506          */
4507         this.jsonData = o;
4508         this.beforeRender();
4509         this.refresh();
4510     },
4511
4512 /**
4513  * Get the number of records in the current JSON dataset
4514  * @return {Number}
4515  */
4516     getCount : function(){
4517         return this.jsonData ? this.jsonData.length : 0;
4518     },
4519
4520 /**
4521  * Returns the JSON object for the specified node(s)
4522  * @param {HTMLElement/Array} node The node or an array of nodes
4523  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
4524  * you get the JSON object for the node
4525  */
4526     getNodeData : function(node){
4527         if(node instanceof Array){
4528             var data = [];
4529             for(var i = 0, len = node.length; i < len; i++){
4530                 data.push(this.getNodeData(node[i]));
4531             }
4532             return data;
4533         }
4534         return this.jsonData[this.indexOf(node)] || null;
4535     },
4536
4537     beforeRender : function(){
4538         this.snapshot = this.jsonData;
4539         if(this.sortInfo){
4540             this.sort.apply(this, this.sortInfo);
4541         }
4542         this.fireEvent("beforerender", this, this.jsonData);
4543     },
4544
4545     onLoad : function(el, o){
4546         this.fireEvent("load", this, this.jsonData, o);
4547     },
4548
4549     onLoadException : function(el, o){
4550         this.fireEvent("loadexception", this, o);
4551     },
4552
4553 /**
4554  * Filter the data by a specific property.
4555  * @param {String} property A property on your JSON objects
4556  * @param {String/RegExp} value Either string that the property values
4557  * should start with, or a RegExp to test against the property
4558  */
4559     filter : function(property, value){
4560         if(this.jsonData){
4561             var data = [];
4562             var ss = this.snapshot;
4563             if(typeof value == "string"){
4564                 var vlen = value.length;
4565                 if(vlen == 0){
4566                     this.clearFilter();
4567                     return;
4568                 }
4569                 value = value.toLowerCase();
4570                 for(var i = 0, len = ss.length; i < len; i++){
4571                     var o = ss[i];
4572                     if(o[property].substr(0, vlen).toLowerCase() == value){
4573                         data.push(o);
4574                     }
4575                 }
4576             } else if(value.exec){ // regex?
4577                 for(var i = 0, len = ss.length; i < len; i++){
4578                     var o = ss[i];
4579                     if(value.test(o[property])){
4580                         data.push(o);
4581                     }
4582                 }
4583             } else{
4584                 return;
4585             }
4586             this.jsonData = data;
4587             this.refresh();
4588         }
4589     },
4590
4591 /**
4592  * Filter by a function. The passed function will be called with each
4593  * object in the current dataset. If the function returns true the value is kept,
4594  * otherwise it is filtered.
4595  * @param {Function} fn
4596  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
4597  */
4598     filterBy : function(fn, scope){
4599         if(this.jsonData){
4600             var data = [];
4601             var ss = this.snapshot;
4602             for(var i = 0, len = ss.length; i < len; i++){
4603                 var o = ss[i];
4604                 if(fn.call(scope || this, o)){
4605                     data.push(o);
4606                 }
4607             }
4608             this.jsonData = data;
4609             this.refresh();
4610         }
4611     },
4612
4613 /**
4614  * Clears the current filter.
4615  */
4616     clearFilter : function(){
4617         if(this.snapshot && this.jsonData != this.snapshot){
4618             this.jsonData = this.snapshot;
4619             this.refresh();
4620         }
4621     },
4622
4623
4624 /**
4625  * Sorts the data for this view and refreshes it.
4626  * @param {String} property A property on your JSON objects to sort on
4627  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
4628  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
4629  */
4630     sort : function(property, dir, sortType){
4631         this.sortInfo = Array.prototype.slice.call(arguments, 0);
4632         if(this.jsonData){
4633             var p = property;
4634             var dsc = dir && dir.toLowerCase() == "desc";
4635             var f = function(o1, o2){
4636                 var v1 = sortType ? sortType(o1[p]) : o1[p];
4637                 var v2 = sortType ? sortType(o2[p]) : o2[p];
4638                 ;
4639                 if(v1 < v2){
4640                     return dsc ? +1 : -1;
4641                 } else if(v1 > v2){
4642                     return dsc ? -1 : +1;
4643                 } else{
4644                     return 0;
4645                 }
4646             };
4647             this.jsonData.sort(f);
4648             this.refresh();
4649             if(this.jsonData != this.snapshot){
4650                 this.snapshot.sort(f);
4651             }
4652         }
4653     }
4654 });/*
4655  * Based on:
4656  * Ext JS Library 1.1.1
4657  * Copyright(c) 2006-2007, Ext JS, LLC.
4658  *
4659  * Originally Released Under LGPL - original licence link has changed is not relivant.
4660  *
4661  * Fork - LGPL
4662  * <script type="text/javascript">
4663  */
4664  
4665
4666 /**
4667  * @class Roo.ColorPalette
4668  * @extends Roo.Component
4669  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
4670  * Here's an example of typical usage:
4671  * <pre><code>
4672 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
4673 cp.render('my-div');
4674
4675 cp.on('select', function(palette, selColor){
4676     // do something with selColor
4677 });
4678 </code></pre>
4679  * @constructor
4680  * Create a new ColorPalette
4681  * @param {Object} config The config object
4682  */
4683 Roo.ColorPalette = function(config){
4684     Roo.ColorPalette.superclass.constructor.call(this, config);
4685     this.addEvents({
4686         /**
4687              * @event select
4688              * Fires when a color is selected
4689              * @param {ColorPalette} this
4690              * @param {String} color The 6-digit color hex code (without the # symbol)
4691              */
4692         select: true
4693     });
4694
4695     if(this.handler){
4696         this.on("select", this.handler, this.scope, true);
4697     }
4698 };
4699 Roo.extend(Roo.ColorPalette, Roo.Component, {
4700     /**
4701      * @cfg {String} itemCls
4702      * The CSS class to apply to the containing element (defaults to "x-color-palette")
4703      */
4704     itemCls : "x-color-palette",
4705     /**
4706      * @cfg {String} value
4707      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
4708      * the hex codes are case-sensitive.
4709      */
4710     value : null,
4711     clickEvent:'click',
4712     // private
4713     ctype: "Roo.ColorPalette",
4714
4715     /**
4716      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
4717      */
4718     allowReselect : false,
4719
4720     /**
4721      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
4722      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
4723      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
4724      * of colors with the width setting until the box is symmetrical.</p>
4725      * <p>You can override individual colors if needed:</p>
4726      * <pre><code>
4727 var cp = new Roo.ColorPalette();
4728 cp.colors[0] = "FF0000";  // change the first box to red
4729 </code></pre>
4730
4731 Or you can provide a custom array of your own for complete control:
4732 <pre><code>
4733 var cp = new Roo.ColorPalette();
4734 cp.colors = ["000000", "993300", "333300"];
4735 </code></pre>
4736      * @type Array
4737      */
4738     colors : [
4739         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
4740         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
4741         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
4742         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
4743         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
4744     ],
4745
4746     // private
4747     onRender : function(container, position){
4748         var t = new Roo.MasterTemplate(
4749             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
4750         );
4751         var c = this.colors;
4752         for(var i = 0, len = c.length; i < len; i++){
4753             t.add([c[i]]);
4754         }
4755         var el = document.createElement("div");
4756         el.className = this.itemCls;
4757         t.overwrite(el);
4758         container.dom.insertBefore(el, position);
4759         this.el = Roo.get(el);
4760         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
4761         if(this.clickEvent != 'click'){
4762             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
4763         }
4764     },
4765
4766     // private
4767     afterRender : function(){
4768         Roo.ColorPalette.superclass.afterRender.call(this);
4769         if(this.value){
4770             var s = this.value;
4771             this.value = null;
4772             this.select(s);
4773         }
4774     },
4775
4776     // private
4777     handleClick : function(e, t){
4778         e.preventDefault();
4779         if(!this.disabled){
4780             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
4781             this.select(c.toUpperCase());
4782         }
4783     },
4784
4785     /**
4786      * Selects the specified color in the palette (fires the select event)
4787      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
4788      */
4789     select : function(color){
4790         color = color.replace("#", "");
4791         if(color != this.value || this.allowReselect){
4792             var el = this.el;
4793             if(this.value){
4794                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
4795             }
4796             el.child("a.color-"+color).addClass("x-color-palette-sel");
4797             this.value = color;
4798             this.fireEvent("select", this, color);
4799         }
4800     }
4801 });/*
4802  * Based on:
4803  * Ext JS Library 1.1.1
4804  * Copyright(c) 2006-2007, Ext JS, LLC.
4805  *
4806  * Originally Released Under LGPL - original licence link has changed is not relivant.
4807  *
4808  * Fork - LGPL
4809  * <script type="text/javascript">
4810  */
4811  
4812 /**
4813  * @class Roo.DatePicker
4814  * @extends Roo.Component
4815  * Simple date picker class.
4816  * @constructor
4817  * Create a new DatePicker
4818  * @param {Object} config The config object
4819  */
4820 Roo.DatePicker = function(config){
4821     Roo.DatePicker.superclass.constructor.call(this, config);
4822
4823     this.value = config && config.value ?
4824                  config.value.clearTime() : new Date().clearTime();
4825
4826     this.addEvents({
4827         /**
4828              * @event select
4829              * Fires when a date is selected
4830              * @param {DatePicker} this
4831              * @param {Date} date The selected date
4832              */
4833         'select': true,
4834         /**
4835              * @event monthchange
4836              * Fires when the displayed month changes 
4837              * @param {DatePicker} this
4838              * @param {Date} date The selected month
4839              */
4840         'monthchange': true
4841     });
4842
4843     if(this.handler){
4844         this.on("select", this.handler,  this.scope || this);
4845     }
4846     // build the disabledDatesRE
4847     if(!this.disabledDatesRE && this.disabledDates){
4848         var dd = this.disabledDates;
4849         var re = "(?:";
4850         for(var i = 0; i < dd.length; i++){
4851             re += dd[i];
4852             if(i != dd.length-1) {
4853                 re += "|";
4854             }
4855         }
4856         this.disabledDatesRE = new RegExp(re + ")");
4857     }
4858 };
4859
4860 Roo.extend(Roo.DatePicker, Roo.Component, {
4861     /**
4862      * @cfg {String} todayText
4863      * The text to display on the button that selects the current date (defaults to "Today")
4864      */
4865     todayText : "Today",
4866     /**
4867      * @cfg {String} okText
4868      * The text to display on the ok button
4869      */
4870     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
4871     /**
4872      * @cfg {String} cancelText
4873      * The text to display on the cancel button
4874      */
4875     cancelText : "Cancel",
4876     /**
4877      * @cfg {String} todayTip
4878      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
4879      */
4880     todayTip : "{0} (Spacebar)",
4881     /**
4882      * @cfg {Date} minDate
4883      * Minimum allowable date (JavaScript date object, defaults to null)
4884      */
4885     minDate : null,
4886     /**
4887      * @cfg {Date} maxDate
4888      * Maximum allowable date (JavaScript date object, defaults to null)
4889      */
4890     maxDate : null,
4891     /**
4892      * @cfg {String} minText
4893      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
4894      */
4895     minText : "This date is before the minimum date",
4896     /**
4897      * @cfg {String} maxText
4898      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
4899      */
4900     maxText : "This date is after the maximum date",
4901     /**
4902      * @cfg {String} format
4903      * The default date format string which can be overriden for localization support.  The format must be
4904      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
4905      */
4906     format : "m/d/y",
4907     /**
4908      * @cfg {Array} disabledDays
4909      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
4910      */
4911     disabledDays : null,
4912     /**
4913      * @cfg {String} disabledDaysText
4914      * The tooltip to display when the date falls on a disabled day (defaults to "")
4915      */
4916     disabledDaysText : "",
4917     /**
4918      * @cfg {RegExp} disabledDatesRE
4919      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
4920      */
4921     disabledDatesRE : null,
4922     /**
4923      * @cfg {String} disabledDatesText
4924      * The tooltip text to display when the date falls on a disabled date (defaults to "")
4925      */
4926     disabledDatesText : "",
4927     /**
4928      * @cfg {Boolean} constrainToViewport
4929      * True to constrain the date picker to the viewport (defaults to true)
4930      */
4931     constrainToViewport : true,
4932     /**
4933      * @cfg {Array} monthNames
4934      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
4935      */
4936     monthNames : Date.monthNames,
4937     /**
4938      * @cfg {Array} dayNames
4939      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
4940      */
4941     dayNames : Date.dayNames,
4942     /**
4943      * @cfg {String} nextText
4944      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
4945      */
4946     nextText: 'Next Month (Control+Right)',
4947     /**
4948      * @cfg {String} prevText
4949      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
4950      */
4951     prevText: 'Previous Month (Control+Left)',
4952     /**
4953      * @cfg {String} monthYearText
4954      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
4955      */
4956     monthYearText: 'Choose a month (Control+Up/Down to move years)',
4957     /**
4958      * @cfg {Number} startDay
4959      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
4960      */
4961     startDay : 0,
4962     /**
4963      * @cfg {Bool} showClear
4964      * Show a clear button (usefull for date form elements that can be blank.)
4965      */
4966     
4967     showClear: false,
4968     
4969     /**
4970      * Sets the value of the date field
4971      * @param {Date} value The date to set
4972      */
4973     setValue : function(value){
4974         var old = this.value;
4975         
4976         if (typeof(value) == 'string') {
4977          
4978             value = Date.parseDate(value, this.format);
4979         }
4980         if (!value) {
4981             value = new Date();
4982         }
4983         
4984         this.value = value.clearTime(true);
4985         if(this.el){
4986             this.update(this.value);
4987         }
4988     },
4989
4990     /**
4991      * Gets the current selected value of the date field
4992      * @return {Date} The selected date
4993      */
4994     getValue : function(){
4995         return this.value;
4996     },
4997
4998     // private
4999     focus : function(){
5000         if(this.el){
5001             this.update(this.activeDate);
5002         }
5003     },
5004
5005     // privateval
5006     onRender : function(container, position){
5007         
5008         var m = [
5009              '<table cellspacing="0">',
5010                 '<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>',
5011                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
5012         var dn = this.dayNames;
5013         for(var i = 0; i < 7; i++){
5014             var d = this.startDay+i;
5015             if(d > 6){
5016                 d = d-7;
5017             }
5018             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
5019         }
5020         m[m.length] = "</tr></thead><tbody><tr>";
5021         for(var i = 0; i < 42; i++) {
5022             if(i % 7 == 0 && i != 0){
5023                 m[m.length] = "</tr><tr>";
5024             }
5025             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
5026         }
5027         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
5028             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
5029
5030         var el = document.createElement("div");
5031         el.className = "x-date-picker";
5032         el.innerHTML = m.join("");
5033
5034         container.dom.insertBefore(el, position);
5035
5036         this.el = Roo.get(el);
5037         this.eventEl = Roo.get(el.firstChild);
5038
5039         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
5040             handler: this.showPrevMonth,
5041             scope: this,
5042             preventDefault:true,
5043             stopDefault:true
5044         });
5045
5046         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
5047             handler: this.showNextMonth,
5048             scope: this,
5049             preventDefault:true,
5050             stopDefault:true
5051         });
5052
5053         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
5054
5055         this.monthPicker = this.el.down('div.x-date-mp');
5056         this.monthPicker.enableDisplayMode('block');
5057         
5058         var kn = new Roo.KeyNav(this.eventEl, {
5059             "left" : function(e){
5060                 e.ctrlKey ?
5061                     this.showPrevMonth() :
5062                     this.update(this.activeDate.add("d", -1));
5063             },
5064
5065             "right" : function(e){
5066                 e.ctrlKey ?
5067                     this.showNextMonth() :
5068                     this.update(this.activeDate.add("d", 1));
5069             },
5070
5071             "up" : function(e){
5072                 e.ctrlKey ?
5073                     this.showNextYear() :
5074                     this.update(this.activeDate.add("d", -7));
5075             },
5076
5077             "down" : function(e){
5078                 e.ctrlKey ?
5079                     this.showPrevYear() :
5080                     this.update(this.activeDate.add("d", 7));
5081             },
5082
5083             "pageUp" : function(e){
5084                 this.showNextMonth();
5085             },
5086
5087             "pageDown" : function(e){
5088                 this.showPrevMonth();
5089             },
5090
5091             "enter" : function(e){
5092                 e.stopPropagation();
5093                 return true;
5094             },
5095
5096             scope : this
5097         });
5098
5099         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
5100
5101         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
5102
5103         this.el.unselectable();
5104         
5105         this.cells = this.el.select("table.x-date-inner tbody td");
5106         this.textNodes = this.el.query("table.x-date-inner tbody span");
5107
5108         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
5109             text: "&#160;",
5110             tooltip: this.monthYearText
5111         });
5112
5113         this.mbtn.on('click', this.showMonthPicker, this);
5114         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
5115
5116
5117         var today = (new Date()).dateFormat(this.format);
5118         
5119         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
5120         if (this.showClear) {
5121             baseTb.add( new Roo.Toolbar.Fill());
5122         }
5123         baseTb.add({
5124             text: String.format(this.todayText, today),
5125             tooltip: String.format(this.todayTip, today),
5126             handler: this.selectToday,
5127             scope: this
5128         });
5129         
5130         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
5131             
5132         //});
5133         if (this.showClear) {
5134             
5135             baseTb.add( new Roo.Toolbar.Fill());
5136             baseTb.add({
5137                 text: '&#160;',
5138                 cls: 'x-btn-icon x-btn-clear',
5139                 handler: function() {
5140                     //this.value = '';
5141                     this.fireEvent("select", this, '');
5142                 },
5143                 scope: this
5144             });
5145         }
5146         
5147         
5148         if(Roo.isIE){
5149             this.el.repaint();
5150         }
5151         this.update(this.value);
5152     },
5153
5154     createMonthPicker : function(){
5155         if(!this.monthPicker.dom.firstChild){
5156             var buf = ['<table border="0" cellspacing="0">'];
5157             for(var i = 0; i < 6; i++){
5158                 buf.push(
5159                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
5160                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
5161                     i == 0 ?
5162                     '<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>' :
5163                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
5164                 );
5165             }
5166             buf.push(
5167                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
5168                     this.okText,
5169                     '</button><button type="button" class="x-date-mp-cancel">',
5170                     this.cancelText,
5171                     '</button></td></tr>',
5172                 '</table>'
5173             );
5174             this.monthPicker.update(buf.join(''));
5175             this.monthPicker.on('click', this.onMonthClick, this);
5176             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
5177
5178             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
5179             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
5180
5181             this.mpMonths.each(function(m, a, i){
5182                 i += 1;
5183                 if((i%2) == 0){
5184                     m.dom.xmonth = 5 + Math.round(i * .5);
5185                 }else{
5186                     m.dom.xmonth = Math.round((i-1) * .5);
5187                 }
5188             });
5189         }
5190     },
5191
5192     showMonthPicker : function(){
5193         this.createMonthPicker();
5194         var size = this.el.getSize();
5195         this.monthPicker.setSize(size);
5196         this.monthPicker.child('table').setSize(size);
5197
5198         this.mpSelMonth = (this.activeDate || this.value).getMonth();
5199         this.updateMPMonth(this.mpSelMonth);
5200         this.mpSelYear = (this.activeDate || this.value).getFullYear();
5201         this.updateMPYear(this.mpSelYear);
5202
5203         this.monthPicker.slideIn('t', {duration:.2});
5204     },
5205
5206     updateMPYear : function(y){
5207         this.mpyear = y;
5208         var ys = this.mpYears.elements;
5209         for(var i = 1; i <= 10; i++){
5210             var td = ys[i-1], y2;
5211             if((i%2) == 0){
5212                 y2 = y + Math.round(i * .5);
5213                 td.firstChild.innerHTML = y2;
5214                 td.xyear = y2;
5215             }else{
5216                 y2 = y - (5-Math.round(i * .5));
5217                 td.firstChild.innerHTML = y2;
5218                 td.xyear = y2;
5219             }
5220             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
5221         }
5222     },
5223
5224     updateMPMonth : function(sm){
5225         this.mpMonths.each(function(m, a, i){
5226             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
5227         });
5228     },
5229
5230     selectMPMonth: function(m){
5231         
5232     },
5233
5234     onMonthClick : function(e, t){
5235         e.stopEvent();
5236         var el = new Roo.Element(t), pn;
5237         if(el.is('button.x-date-mp-cancel')){
5238             this.hideMonthPicker();
5239         }
5240         else if(el.is('button.x-date-mp-ok')){
5241             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5242             this.hideMonthPicker();
5243         }
5244         else if(pn = el.up('td.x-date-mp-month', 2)){
5245             this.mpMonths.removeClass('x-date-mp-sel');
5246             pn.addClass('x-date-mp-sel');
5247             this.mpSelMonth = pn.dom.xmonth;
5248         }
5249         else if(pn = el.up('td.x-date-mp-year', 2)){
5250             this.mpYears.removeClass('x-date-mp-sel');
5251             pn.addClass('x-date-mp-sel');
5252             this.mpSelYear = pn.dom.xyear;
5253         }
5254         else if(el.is('a.x-date-mp-prev')){
5255             this.updateMPYear(this.mpyear-10);
5256         }
5257         else if(el.is('a.x-date-mp-next')){
5258             this.updateMPYear(this.mpyear+10);
5259         }
5260     },
5261
5262     onMonthDblClick : function(e, t){
5263         e.stopEvent();
5264         var el = new Roo.Element(t), pn;
5265         if(pn = el.up('td.x-date-mp-month', 2)){
5266             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
5267             this.hideMonthPicker();
5268         }
5269         else if(pn = el.up('td.x-date-mp-year', 2)){
5270             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
5271             this.hideMonthPicker();
5272         }
5273     },
5274
5275     hideMonthPicker : function(disableAnim){
5276         if(this.monthPicker){
5277             if(disableAnim === true){
5278                 this.monthPicker.hide();
5279             }else{
5280                 this.monthPicker.slideOut('t', {duration:.2});
5281             }
5282         }
5283     },
5284
5285     // private
5286     showPrevMonth : function(e){
5287         this.update(this.activeDate.add("mo", -1));
5288     },
5289
5290     // private
5291     showNextMonth : function(e){
5292         this.update(this.activeDate.add("mo", 1));
5293     },
5294
5295     // private
5296     showPrevYear : function(){
5297         this.update(this.activeDate.add("y", -1));
5298     },
5299
5300     // private
5301     showNextYear : function(){
5302         this.update(this.activeDate.add("y", 1));
5303     },
5304
5305     // private
5306     handleMouseWheel : function(e){
5307         var delta = e.getWheelDelta();
5308         if(delta > 0){
5309             this.showPrevMonth();
5310             e.stopEvent();
5311         } else if(delta < 0){
5312             this.showNextMonth();
5313             e.stopEvent();
5314         }
5315     },
5316
5317     // private
5318     handleDateClick : function(e, t){
5319         e.stopEvent();
5320         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
5321             this.setValue(new Date(t.dateValue));
5322             this.fireEvent("select", this, this.value);
5323         }
5324     },
5325
5326     // private
5327     selectToday : function(){
5328         this.setValue(new Date().clearTime());
5329         this.fireEvent("select", this, this.value);
5330     },
5331
5332     // private
5333     update : function(date)
5334     {
5335         var vd = this.activeDate;
5336         this.activeDate = date;
5337         if(vd && this.el){
5338             var t = date.getTime();
5339             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
5340                 this.cells.removeClass("x-date-selected");
5341                 this.cells.each(function(c){
5342                    if(c.dom.firstChild.dateValue == t){
5343                        c.addClass("x-date-selected");
5344                        setTimeout(function(){
5345                             try{c.dom.firstChild.focus();}catch(e){}
5346                        }, 50);
5347                        return false;
5348                    }
5349                 });
5350                 return;
5351             }
5352         }
5353         
5354         var days = date.getDaysInMonth();
5355         var firstOfMonth = date.getFirstDateOfMonth();
5356         var startingPos = firstOfMonth.getDay()-this.startDay;
5357
5358         if(startingPos <= this.startDay){
5359             startingPos += 7;
5360         }
5361
5362         var pm = date.add("mo", -1);
5363         var prevStart = pm.getDaysInMonth()-startingPos;
5364
5365         var cells = this.cells.elements;
5366         var textEls = this.textNodes;
5367         days += startingPos;
5368
5369         // convert everything to numbers so it's fast
5370         var day = 86400000;
5371         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
5372         var today = new Date().clearTime().getTime();
5373         var sel = date.clearTime().getTime();
5374         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
5375         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
5376         var ddMatch = this.disabledDatesRE;
5377         var ddText = this.disabledDatesText;
5378         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
5379         var ddaysText = this.disabledDaysText;
5380         var format = this.format;
5381
5382         var setCellClass = function(cal, cell){
5383             cell.title = "";
5384             var t = d.getTime();
5385             cell.firstChild.dateValue = t;
5386             if(t == today){
5387                 cell.className += " x-date-today";
5388                 cell.title = cal.todayText;
5389             }
5390             if(t == sel){
5391                 cell.className += " x-date-selected";
5392                 setTimeout(function(){
5393                     try{cell.firstChild.focus();}catch(e){}
5394                 }, 50);
5395             }
5396             // disabling
5397             if(t < min) {
5398                 cell.className = " x-date-disabled";
5399                 cell.title = cal.minText;
5400                 return;
5401             }
5402             if(t > max) {
5403                 cell.className = " x-date-disabled";
5404                 cell.title = cal.maxText;
5405                 return;
5406             }
5407             if(ddays){
5408                 if(ddays.indexOf(d.getDay()) != -1){
5409                     cell.title = ddaysText;
5410                     cell.className = " x-date-disabled";
5411                 }
5412             }
5413             if(ddMatch && format){
5414                 var fvalue = d.dateFormat(format);
5415                 if(ddMatch.test(fvalue)){
5416                     cell.title = ddText.replace("%0", fvalue);
5417                     cell.className = " x-date-disabled";
5418                 }
5419             }
5420         };
5421
5422         var i = 0;
5423         for(; i < startingPos; i++) {
5424             textEls[i].innerHTML = (++prevStart);
5425             d.setDate(d.getDate()+1);
5426             cells[i].className = "x-date-prevday";
5427             setCellClass(this, cells[i]);
5428         }
5429         for(; i < days; i++){
5430             intDay = i - startingPos + 1;
5431             textEls[i].innerHTML = (intDay);
5432             d.setDate(d.getDate()+1);
5433             cells[i].className = "x-date-active";
5434             setCellClass(this, cells[i]);
5435         }
5436         var extraDays = 0;
5437         for(; i < 42; i++) {
5438              textEls[i].innerHTML = (++extraDays);
5439              d.setDate(d.getDate()+1);
5440              cells[i].className = "x-date-nextday";
5441              setCellClass(this, cells[i]);
5442         }
5443
5444         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
5445         this.fireEvent('monthchange', this, date);
5446         
5447         if(!this.internalRender){
5448             var main = this.el.dom.firstChild;
5449             var w = main.offsetWidth;
5450             this.el.setWidth(w + this.el.getBorderWidth("lr"));
5451             Roo.fly(main).setWidth(w);
5452             this.internalRender = true;
5453             // opera does not respect the auto grow header center column
5454             // then, after it gets a width opera refuses to recalculate
5455             // without a second pass
5456             if(Roo.isOpera && !this.secondPass){
5457                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
5458                 this.secondPass = true;
5459                 this.update.defer(10, this, [date]);
5460             }
5461         }
5462         
5463         
5464     }
5465 });        /*
5466  * Based on:
5467  * Ext JS Library 1.1.1
5468  * Copyright(c) 2006-2007, Ext JS, LLC.
5469  *
5470  * Originally Released Under LGPL - original licence link has changed is not relivant.
5471  *
5472  * Fork - LGPL
5473  * <script type="text/javascript">
5474  */
5475 /**
5476  * @class Roo.TabPanel
5477  * @extends Roo.util.Observable
5478  * A lightweight tab container.
5479  * <br><br>
5480  * Usage:
5481  * <pre><code>
5482 // basic tabs 1, built from existing content
5483 var tabs = new Roo.TabPanel("tabs1");
5484 tabs.addTab("script", "View Script");
5485 tabs.addTab("markup", "View Markup");
5486 tabs.activate("script");
5487
5488 // more advanced tabs, built from javascript
5489 var jtabs = new Roo.TabPanel("jtabs");
5490 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
5491
5492 // set up the UpdateManager
5493 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
5494 var updater = tab2.getUpdateManager();
5495 updater.setDefaultUrl("ajax1.htm");
5496 tab2.on('activate', updater.refresh, updater, true);
5497
5498 // Use setUrl for Ajax loading
5499 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
5500 tab3.setUrl("ajax2.htm", null, true);
5501
5502 // Disabled tab
5503 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
5504 tab4.disable();
5505
5506 jtabs.activate("jtabs-1");
5507  * </code></pre>
5508  * @constructor
5509  * Create a new TabPanel.
5510  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
5511  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
5512  */
5513 Roo.TabPanel = function(container, config){
5514     /**
5515     * The container element for this TabPanel.
5516     * @type Roo.Element
5517     */
5518     this.el = Roo.get(container, true);
5519     if(config){
5520         if(typeof config == "boolean"){
5521             this.tabPosition = config ? "bottom" : "top";
5522         }else{
5523             Roo.apply(this, config);
5524         }
5525     }
5526     if(this.tabPosition == "bottom"){
5527         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5528         this.el.addClass("x-tabs-bottom");
5529     }
5530     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
5531     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
5532     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
5533     if(Roo.isIE){
5534         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
5535     }
5536     if(this.tabPosition != "bottom"){
5537         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
5538          * @type Roo.Element
5539          */
5540         this.bodyEl = Roo.get(this.createBody(this.el.dom));
5541         this.el.addClass("x-tabs-top");
5542     }
5543     this.items = [];
5544
5545     this.bodyEl.setStyle("position", "relative");
5546
5547     this.active = null;
5548     this.activateDelegate = this.activate.createDelegate(this);
5549
5550     this.addEvents({
5551         /**
5552          * @event tabchange
5553          * Fires when the active tab changes
5554          * @param {Roo.TabPanel} this
5555          * @param {Roo.TabPanelItem} activePanel The new active tab
5556          */
5557         "tabchange": true,
5558         /**
5559          * @event beforetabchange
5560          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
5561          * @param {Roo.TabPanel} this
5562          * @param {Object} e Set cancel to true on this object to cancel the tab change
5563          * @param {Roo.TabPanelItem} tab The tab being changed to
5564          */
5565         "beforetabchange" : true
5566     });
5567
5568     Roo.EventManager.onWindowResize(this.onResize, this);
5569     this.cpad = this.el.getPadding("lr");
5570     this.hiddenCount = 0;
5571
5572
5573     // toolbar on the tabbar support...
5574     if (this.toolbar) {
5575         var tcfg = this.toolbar;
5576         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
5577         this.toolbar = new Roo.Toolbar(tcfg);
5578         if (Roo.isSafari) {
5579             var tbl = tcfg.container.child('table', true);
5580             tbl.setAttribute('width', '100%');
5581         }
5582         
5583     }
5584    
5585
5586
5587     Roo.TabPanel.superclass.constructor.call(this);
5588 };
5589
5590 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
5591     /*
5592      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
5593      */
5594     tabPosition : "top",
5595     /*
5596      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
5597      */
5598     currentTabWidth : 0,
5599     /*
5600      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
5601      */
5602     minTabWidth : 40,
5603     /*
5604      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
5605      */
5606     maxTabWidth : 250,
5607     /*
5608      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
5609      */
5610     preferredTabWidth : 175,
5611     /*
5612      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
5613      */
5614     resizeTabs : false,
5615     /*
5616      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
5617      */
5618     monitorResize : true,
5619     /*
5620      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
5621      */
5622     toolbar : false,
5623
5624     /**
5625      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
5626      * @param {String} id The id of the div to use <b>or create</b>
5627      * @param {String} text The text for the tab
5628      * @param {String} content (optional) Content to put in the TabPanelItem body
5629      * @param {Boolean} closable (optional) True to create a close icon on the tab
5630      * @return {Roo.TabPanelItem} The created TabPanelItem
5631      */
5632     addTab : function(id, text, content, closable){
5633         var item = new Roo.TabPanelItem(this, id, text, closable);
5634         this.addTabItem(item);
5635         if(content){
5636             item.setContent(content);
5637         }
5638         return item;
5639     },
5640
5641     /**
5642      * Returns the {@link Roo.TabPanelItem} with the specified id/index
5643      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
5644      * @return {Roo.TabPanelItem}
5645      */
5646     getTab : function(id){
5647         return this.items[id];
5648     },
5649
5650     /**
5651      * Hides the {@link Roo.TabPanelItem} with the specified id/index
5652      * @param {String/Number} id The id or index of the TabPanelItem to hide.
5653      */
5654     hideTab : function(id){
5655         var t = this.items[id];
5656         if(!t.isHidden()){
5657            t.setHidden(true);
5658            this.hiddenCount++;
5659            this.autoSizeTabs();
5660         }
5661     },
5662
5663     /**
5664      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
5665      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
5666      */
5667     unhideTab : function(id){
5668         var t = this.items[id];
5669         if(t.isHidden()){
5670            t.setHidden(false);
5671            this.hiddenCount--;
5672            this.autoSizeTabs();
5673         }
5674     },
5675
5676     /**
5677      * Adds an existing {@link Roo.TabPanelItem}.
5678      * @param {Roo.TabPanelItem} item The TabPanelItem to add
5679      */
5680     addTabItem : function(item){
5681         this.items[item.id] = item;
5682         this.items.push(item);
5683         if(this.resizeTabs){
5684            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
5685            this.autoSizeTabs();
5686         }else{
5687             item.autoSize();
5688         }
5689     },
5690
5691     /**
5692      * Removes a {@link Roo.TabPanelItem}.
5693      * @param {String/Number} id The id or index of the TabPanelItem to remove.
5694      */
5695     removeTab : function(id){
5696         var items = this.items;
5697         var tab = items[id];
5698         if(!tab) { return; }
5699         var index = items.indexOf(tab);
5700         if(this.active == tab && items.length > 1){
5701             var newTab = this.getNextAvailable(index);
5702             if(newTab) {
5703                 newTab.activate();
5704             }
5705         }
5706         this.stripEl.dom.removeChild(tab.pnode.dom);
5707         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
5708             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
5709         }
5710         items.splice(index, 1);
5711         delete this.items[tab.id];
5712         tab.fireEvent("close", tab);
5713         tab.purgeListeners();
5714         this.autoSizeTabs();
5715     },
5716
5717     getNextAvailable : function(start){
5718         var items = this.items;
5719         var index = start;
5720         // look for a next tab that will slide over to
5721         // replace the one being removed
5722         while(index < items.length){
5723             var item = items[++index];
5724             if(item && !item.isHidden()){
5725                 return item;
5726             }
5727         }
5728         // if one isn't found select the previous tab (on the left)
5729         index = start;
5730         while(index >= 0){
5731             var item = items[--index];
5732             if(item && !item.isHidden()){
5733                 return item;
5734             }
5735         }
5736         return null;
5737     },
5738
5739     /**
5740      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
5741      * @param {String/Number} id The id or index of the TabPanelItem to disable.
5742      */
5743     disableTab : function(id){
5744         var tab = this.items[id];
5745         if(tab && this.active != tab){
5746             tab.disable();
5747         }
5748     },
5749
5750     /**
5751      * Enables a {@link Roo.TabPanelItem} that is disabled.
5752      * @param {String/Number} id The id or index of the TabPanelItem to enable.
5753      */
5754     enableTab : function(id){
5755         var tab = this.items[id];
5756         tab.enable();
5757     },
5758
5759     /**
5760      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
5761      * @param {String/Number} id The id or index of the TabPanelItem to activate.
5762      * @return {Roo.TabPanelItem} The TabPanelItem.
5763      */
5764     activate : function(id){
5765         var tab = this.items[id];
5766         if(!tab){
5767             return null;
5768         }
5769         if(tab == this.active || tab.disabled){
5770             return tab;
5771         }
5772         var e = {};
5773         this.fireEvent("beforetabchange", this, e, tab);
5774         if(e.cancel !== true && !tab.disabled){
5775             if(this.active){
5776                 this.active.hide();
5777             }
5778             this.active = this.items[id];
5779             this.active.show();
5780             this.fireEvent("tabchange", this, this.active);
5781         }
5782         return tab;
5783     },
5784
5785     /**
5786      * Gets the active {@link Roo.TabPanelItem}.
5787      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
5788      */
5789     getActiveTab : function(){
5790         return this.active;
5791     },
5792
5793     /**
5794      * Updates the tab body element to fit the height of the container element
5795      * for overflow scrolling
5796      * @param {Number} targetHeight (optional) Override the starting height from the elements height
5797      */
5798     syncHeight : function(targetHeight){
5799         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
5800         var bm = this.bodyEl.getMargins();
5801         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
5802         this.bodyEl.setHeight(newHeight);
5803         return newHeight;
5804     },
5805
5806     onResize : function(){
5807         if(this.monitorResize){
5808             this.autoSizeTabs();
5809         }
5810     },
5811
5812     /**
5813      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
5814      */
5815     beginUpdate : function(){
5816         this.updating = true;
5817     },
5818
5819     /**
5820      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
5821      */
5822     endUpdate : function(){
5823         this.updating = false;
5824         this.autoSizeTabs();
5825     },
5826
5827     /**
5828      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
5829      */
5830     autoSizeTabs : function(){
5831         var count = this.items.length;
5832         var vcount = count - this.hiddenCount;
5833         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
5834             return;
5835         }
5836         var w = Math.max(this.el.getWidth() - this.cpad, 10);
5837         var availWidth = Math.floor(w / vcount);
5838         var b = this.stripBody;
5839         if(b.getWidth() > w){
5840             var tabs = this.items;
5841             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
5842             if(availWidth < this.minTabWidth){
5843                 /*if(!this.sleft){    // incomplete scrolling code
5844                     this.createScrollButtons();
5845                 }
5846                 this.showScroll();
5847                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
5848             }
5849         }else{
5850             if(this.currentTabWidth < this.preferredTabWidth){
5851                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
5852             }
5853         }
5854     },
5855
5856     /**
5857      * Returns the number of tabs in this TabPanel.
5858      * @return {Number}
5859      */
5860      getCount : function(){
5861          return this.items.length;
5862      },
5863
5864     /**
5865      * Resizes all the tabs to the passed width
5866      * @param {Number} The new width
5867      */
5868     setTabWidth : function(width){
5869         this.currentTabWidth = width;
5870         for(var i = 0, len = this.items.length; i < len; i++) {
5871                 if(!this.items[i].isHidden()) {
5872                 this.items[i].setWidth(width);
5873             }
5874         }
5875     },
5876
5877     /**
5878      * Destroys this TabPanel
5879      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
5880      */
5881     destroy : function(removeEl){
5882         Roo.EventManager.removeResizeListener(this.onResize, this);
5883         for(var i = 0, len = this.items.length; i < len; i++){
5884             this.items[i].purgeListeners();
5885         }
5886         if(removeEl === true){
5887             this.el.update("");
5888             this.el.remove();
5889         }
5890     }
5891 });
5892
5893 /**
5894  * @class Roo.TabPanelItem
5895  * @extends Roo.util.Observable
5896  * Represents an individual item (tab plus body) in a TabPanel.
5897  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
5898  * @param {String} id The id of this TabPanelItem
5899  * @param {String} text The text for the tab of this TabPanelItem
5900  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
5901  */
5902 Roo.TabPanelItem = function(tabPanel, id, text, closable){
5903     /**
5904      * The {@link Roo.TabPanel} this TabPanelItem belongs to
5905      * @type Roo.TabPanel
5906      */
5907     this.tabPanel = tabPanel;
5908     /**
5909      * The id for this TabPanelItem
5910      * @type String
5911      */
5912     this.id = id;
5913     /** @private */
5914     this.disabled = false;
5915     /** @private */
5916     this.text = text;
5917     /** @private */
5918     this.loaded = false;
5919     this.closable = closable;
5920
5921     /**
5922      * The body element for this TabPanelItem.
5923      * @type Roo.Element
5924      */
5925     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
5926     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
5927     this.bodyEl.setStyle("display", "block");
5928     this.bodyEl.setStyle("zoom", "1");
5929     this.hideAction();
5930
5931     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
5932     /** @private */
5933     this.el = Roo.get(els.el, true);
5934     this.inner = Roo.get(els.inner, true);
5935     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
5936     this.pnode = Roo.get(els.el.parentNode, true);
5937     this.el.on("mousedown", this.onTabMouseDown, this);
5938     this.el.on("click", this.onTabClick, this);
5939     /** @private */
5940     if(closable){
5941         var c = Roo.get(els.close, true);
5942         c.dom.title = this.closeText;
5943         c.addClassOnOver("close-over");
5944         c.on("click", this.closeClick, this);
5945      }
5946
5947     this.addEvents({
5948          /**
5949          * @event activate
5950          * Fires when this tab becomes the active tab.
5951          * @param {Roo.TabPanel} tabPanel The parent TabPanel
5952          * @param {Roo.TabPanelItem} this
5953          */
5954         "activate": true,
5955         /**
5956          * @event beforeclose
5957          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
5958          * @param {Roo.TabPanelItem} this
5959          * @param {Object} e Set cancel to true on this object to cancel the close.
5960          */
5961         "beforeclose": true,
5962         /**
5963          * @event close
5964          * Fires when this tab is closed.
5965          * @param {Roo.TabPanelItem} this
5966          */
5967          "close": true,
5968         /**
5969          * @event deactivate
5970          * Fires when this tab is no longer the active tab.
5971          * @param {Roo.TabPanel} tabPanel The parent TabPanel
5972          * @param {Roo.TabPanelItem} this
5973          */
5974          "deactivate" : true
5975     });
5976     this.hidden = false;
5977
5978     Roo.TabPanelItem.superclass.constructor.call(this);
5979 };
5980
5981 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
5982     purgeListeners : function(){
5983        Roo.util.Observable.prototype.purgeListeners.call(this);
5984        this.el.removeAllListeners();
5985     },
5986     /**
5987      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
5988      */
5989     show : function(){
5990         this.pnode.addClass("on");
5991         this.showAction();
5992         if(Roo.isOpera){
5993             this.tabPanel.stripWrap.repaint();
5994         }
5995         this.fireEvent("activate", this.tabPanel, this);
5996     },
5997
5998     /**
5999      * Returns true if this tab is the active tab.
6000      * @return {Boolean}
6001      */
6002     isActive : function(){
6003         return this.tabPanel.getActiveTab() == this;
6004     },
6005
6006     /**
6007      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
6008      */
6009     hide : function(){
6010         this.pnode.removeClass("on");
6011         this.hideAction();
6012         this.fireEvent("deactivate", this.tabPanel, this);
6013     },
6014
6015     hideAction : function(){
6016         this.bodyEl.hide();
6017         this.bodyEl.setStyle("position", "absolute");
6018         this.bodyEl.setLeft("-20000px");
6019         this.bodyEl.setTop("-20000px");
6020     },
6021
6022     showAction : function(){
6023         this.bodyEl.setStyle("position", "relative");
6024         this.bodyEl.setTop("");
6025         this.bodyEl.setLeft("");
6026         this.bodyEl.show();
6027     },
6028
6029     /**
6030      * Set the tooltip for the tab.
6031      * @param {String} tooltip The tab's tooltip
6032      */
6033     setTooltip : function(text){
6034         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
6035             this.textEl.dom.qtip = text;
6036             this.textEl.dom.removeAttribute('title');
6037         }else{
6038             this.textEl.dom.title = text;
6039         }
6040     },
6041
6042     onTabClick : function(e){
6043         e.preventDefault();
6044         this.tabPanel.activate(this.id);
6045     },
6046
6047     onTabMouseDown : function(e){
6048         e.preventDefault();
6049         this.tabPanel.activate(this.id);
6050     },
6051
6052     getWidth : function(){
6053         return this.inner.getWidth();
6054     },
6055
6056     setWidth : function(width){
6057         var iwidth = width - this.pnode.getPadding("lr");
6058         this.inner.setWidth(iwidth);
6059         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
6060         this.pnode.setWidth(width);
6061     },
6062
6063     /**
6064      * Show or hide the tab
6065      * @param {Boolean} hidden True to hide or false to show.
6066      */
6067     setHidden : function(hidden){
6068         this.hidden = hidden;
6069         this.pnode.setStyle("display", hidden ? "none" : "");
6070     },
6071
6072     /**
6073      * Returns true if this tab is "hidden"
6074      * @return {Boolean}
6075      */
6076     isHidden : function(){
6077         return this.hidden;
6078     },
6079
6080     /**
6081      * Returns the text for this tab
6082      * @return {String}
6083      */
6084     getText : function(){
6085         return this.text;
6086     },
6087
6088     autoSize : function(){
6089         //this.el.beginMeasure();
6090         this.textEl.setWidth(1);
6091         /*
6092          *  #2804 [new] Tabs in Roojs
6093          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
6094          */
6095         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
6096         //this.el.endMeasure();
6097     },
6098
6099     /**
6100      * Sets the text for the tab (Note: this also sets the tooltip text)
6101      * @param {String} text The tab's text and tooltip
6102      */
6103     setText : function(text){
6104         this.text = text;
6105         this.textEl.update(text);
6106         this.setTooltip(text);
6107         if(!this.tabPanel.resizeTabs){
6108             this.autoSize();
6109         }
6110     },
6111     /**
6112      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
6113      */
6114     activate : function(){
6115         this.tabPanel.activate(this.id);
6116     },
6117
6118     /**
6119      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
6120      */
6121     disable : function(){
6122         if(this.tabPanel.active != this){
6123             this.disabled = true;
6124             this.pnode.addClass("disabled");
6125         }
6126     },
6127
6128     /**
6129      * Enables this TabPanelItem if it was previously disabled.
6130      */
6131     enable : function(){
6132         this.disabled = false;
6133         this.pnode.removeClass("disabled");
6134     },
6135
6136     /**
6137      * Sets the content for this TabPanelItem.
6138      * @param {String} content The content
6139      * @param {Boolean} loadScripts true to look for and load scripts
6140      */
6141     setContent : function(content, loadScripts){
6142         this.bodyEl.update(content, loadScripts);
6143     },
6144
6145     /**
6146      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
6147      * @return {Roo.UpdateManager} The UpdateManager
6148      */
6149     getUpdateManager : function(){
6150         return this.bodyEl.getUpdateManager();
6151     },
6152
6153     /**
6154      * Set a URL to be used to load the content for this TabPanelItem.
6155      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
6156      * @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)
6157      * @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)
6158      * @return {Roo.UpdateManager} The UpdateManager
6159      */
6160     setUrl : function(url, params, loadOnce){
6161         if(this.refreshDelegate){
6162             this.un('activate', this.refreshDelegate);
6163         }
6164         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
6165         this.on("activate", this.refreshDelegate);
6166         return this.bodyEl.getUpdateManager();
6167     },
6168
6169     /** @private */
6170     _handleRefresh : function(url, params, loadOnce){
6171         if(!loadOnce || !this.loaded){
6172             var updater = this.bodyEl.getUpdateManager();
6173             updater.update(url, params, this._setLoaded.createDelegate(this));
6174         }
6175     },
6176
6177     /**
6178      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
6179      *   Will fail silently if the setUrl method has not been called.
6180      *   This does not activate the panel, just updates its content.
6181      */
6182     refresh : function(){
6183         if(this.refreshDelegate){
6184            this.loaded = false;
6185            this.refreshDelegate();
6186         }
6187     },
6188
6189     /** @private */
6190     _setLoaded : function(){
6191         this.loaded = true;
6192     },
6193
6194     /** @private */
6195     closeClick : function(e){
6196         var o = {};
6197         e.stopEvent();
6198         this.fireEvent("beforeclose", this, o);
6199         if(o.cancel !== true){
6200             this.tabPanel.removeTab(this.id);
6201         }
6202     },
6203     /**
6204      * The text displayed in the tooltip for the close icon.
6205      * @type String
6206      */
6207     closeText : "Close this tab"
6208 });
6209
6210 /** @private */
6211 Roo.TabPanel.prototype.createStrip = function(container){
6212     var strip = document.createElement("div");
6213     strip.className = "x-tabs-wrap";
6214     container.appendChild(strip);
6215     return strip;
6216 };
6217 /** @private */
6218 Roo.TabPanel.prototype.createStripList = function(strip){
6219     // div wrapper for retard IE
6220     // returns the "tr" element.
6221     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
6222         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
6223         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
6224     return strip.firstChild.firstChild.firstChild.firstChild;
6225 };
6226 /** @private */
6227 Roo.TabPanel.prototype.createBody = function(container){
6228     var body = document.createElement("div");
6229     Roo.id(body, "tab-body");
6230     Roo.fly(body).addClass("x-tabs-body");
6231     container.appendChild(body);
6232     return body;
6233 };
6234 /** @private */
6235 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
6236     var body = Roo.getDom(id);
6237     if(!body){
6238         body = document.createElement("div");
6239         body.id = id;
6240     }
6241     Roo.fly(body).addClass("x-tabs-item-body");
6242     bodyEl.insertBefore(body, bodyEl.firstChild);
6243     return body;
6244 };
6245 /** @private */
6246 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
6247     var td = document.createElement("td");
6248     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
6249     //stripEl.appendChild(td);
6250     if(closable){
6251         td.className = "x-tabs-closable";
6252         if(!this.closeTpl){
6253             this.closeTpl = new Roo.Template(
6254                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6255                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
6256                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
6257             );
6258         }
6259         var el = this.closeTpl.overwrite(td, {"text": text});
6260         var close = el.getElementsByTagName("div")[0];
6261         var inner = el.getElementsByTagName("em")[0];
6262         return {"el": el, "close": close, "inner": inner};
6263     } else {
6264         if(!this.tabTpl){
6265             this.tabTpl = new Roo.Template(
6266                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
6267                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
6268             );
6269         }
6270         var el = this.tabTpl.overwrite(td, {"text": text});
6271         var inner = el.getElementsByTagName("em")[0];
6272         return {"el": el, "inner": inner};
6273     }
6274 };/*
6275  * Based on:
6276  * Ext JS Library 1.1.1
6277  * Copyright(c) 2006-2007, Ext JS, LLC.
6278  *
6279  * Originally Released Under LGPL - original licence link has changed is not relivant.
6280  *
6281  * Fork - LGPL
6282  * <script type="text/javascript">
6283  */
6284
6285 /**
6286  * @class Roo.Button
6287  * @extends Roo.util.Observable
6288  * Simple Button class
6289  * @cfg {String} text The button text
6290  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
6291  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
6292  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
6293  * @cfg {Object} scope The scope of the handler
6294  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
6295  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
6296  * @cfg {Boolean} hidden True to start hidden (defaults to false)
6297  * @cfg {Boolean} disabled True to start disabled (defaults to false)
6298  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
6299  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
6300    applies if enableToggle = true)
6301  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
6302  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
6303   an {@link Roo.util.ClickRepeater} config object (defaults to false).
6304  * @constructor
6305  * Create a new button
6306  * @param {Object} config The config object
6307  */
6308 Roo.Button = function(renderTo, config)
6309 {
6310     if (!config) {
6311         config = renderTo;
6312         renderTo = config.renderTo || false;
6313     }
6314     
6315     Roo.apply(this, config);
6316     this.addEvents({
6317         /**
6318              * @event click
6319              * Fires when this button is clicked
6320              * @param {Button} this
6321              * @param {EventObject} e The click event
6322              */
6323             "click" : true,
6324         /**
6325              * @event toggle
6326              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
6327              * @param {Button} this
6328              * @param {Boolean} pressed
6329              */
6330             "toggle" : true,
6331         /**
6332              * @event mouseover
6333              * Fires when the mouse hovers over the button
6334              * @param {Button} this
6335              * @param {Event} e The event object
6336              */
6337         'mouseover' : true,
6338         /**
6339              * @event mouseout
6340              * Fires when the mouse exits the button
6341              * @param {Button} this
6342              * @param {Event} e The event object
6343              */
6344         'mouseout': true,
6345          /**
6346              * @event render
6347              * Fires when the button is rendered
6348              * @param {Button} this
6349              */
6350         'render': true
6351     });
6352     if(this.menu){
6353         this.menu = Roo.menu.MenuMgr.get(this.menu);
6354     }
6355     // register listeners first!!  - so render can be captured..
6356     Roo.util.Observable.call(this);
6357     if(renderTo){
6358         this.render(renderTo);
6359     }
6360     
6361   
6362 };
6363
6364 Roo.extend(Roo.Button, Roo.util.Observable, {
6365     /**
6366      * 
6367      */
6368     
6369     /**
6370      * Read-only. True if this button is hidden
6371      * @type Boolean
6372      */
6373     hidden : false,
6374     /**
6375      * Read-only. True if this button is disabled
6376      * @type Boolean
6377      */
6378     disabled : false,
6379     /**
6380      * Read-only. True if this button is pressed (only if enableToggle = true)
6381      * @type Boolean
6382      */
6383     pressed : false,
6384
6385     /**
6386      * @cfg {Number} tabIndex 
6387      * The DOM tabIndex for this button (defaults to undefined)
6388      */
6389     tabIndex : undefined,
6390
6391     /**
6392      * @cfg {Boolean} enableToggle
6393      * True to enable pressed/not pressed toggling (defaults to false)
6394      */
6395     enableToggle: false,
6396     /**
6397      * @cfg {Roo.menu.Menu} menu
6398      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
6399      */
6400     menu : undefined,
6401     /**
6402      * @cfg {String} menuAlign
6403      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
6404      */
6405     menuAlign : "tl-bl?",
6406
6407     /**
6408      * @cfg {String} iconCls
6409      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
6410      */
6411     iconCls : undefined,
6412     /**
6413      * @cfg {String} type
6414      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
6415      */
6416     type : 'button',
6417
6418     // private
6419     menuClassTarget: 'tr',
6420
6421     /**
6422      * @cfg {String} clickEvent
6423      * The type of event to map to the button's event handler (defaults to 'click')
6424      */
6425     clickEvent : 'click',
6426
6427     /**
6428      * @cfg {Boolean} handleMouseEvents
6429      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
6430      */
6431     handleMouseEvents : true,
6432
6433     /**
6434      * @cfg {String} tooltipType
6435      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
6436      */
6437     tooltipType : 'qtip',
6438
6439     /**
6440      * @cfg {String} cls
6441      * A CSS class to apply to the button's main element.
6442      */
6443     
6444     /**
6445      * @cfg {Roo.Template} template (Optional)
6446      * An {@link Roo.Template} with which to create the Button's main element. This Template must
6447      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
6448      * require code modifications if required elements (e.g. a button) aren't present.
6449      */
6450
6451     // private
6452     render : function(renderTo){
6453         var btn;
6454         if(this.hideParent){
6455             this.parentEl = Roo.get(renderTo);
6456         }
6457         if(!this.dhconfig){
6458             if(!this.template){
6459                 if(!Roo.Button.buttonTemplate){
6460                     // hideous table template
6461                     Roo.Button.buttonTemplate = new Roo.Template(
6462                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
6463                         '<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>',
6464                         "</tr></tbody></table>");
6465                 }
6466                 this.template = Roo.Button.buttonTemplate;
6467             }
6468             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
6469             var btnEl = btn.child("button:first");
6470             btnEl.on('focus', this.onFocus, this);
6471             btnEl.on('blur', this.onBlur, this);
6472             if(this.cls){
6473                 btn.addClass(this.cls);
6474             }
6475             if(this.icon){
6476                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
6477             }
6478             if(this.iconCls){
6479                 btnEl.addClass(this.iconCls);
6480                 if(!this.cls){
6481                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6482                 }
6483             }
6484             if(this.tabIndex !== undefined){
6485                 btnEl.dom.tabIndex = this.tabIndex;
6486             }
6487             if(this.tooltip){
6488                 if(typeof this.tooltip == 'object'){
6489                     Roo.QuickTips.tips(Roo.apply({
6490                           target: btnEl.id
6491                     }, this.tooltip));
6492                 } else {
6493                     btnEl.dom[this.tooltipType] = this.tooltip;
6494                 }
6495             }
6496         }else{
6497             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
6498         }
6499         this.el = btn;
6500         if(this.id){
6501             this.el.dom.id = this.el.id = this.id;
6502         }
6503         if(this.menu){
6504             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
6505             this.menu.on("show", this.onMenuShow, this);
6506             this.menu.on("hide", this.onMenuHide, this);
6507         }
6508         btn.addClass("x-btn");
6509         if(Roo.isIE && !Roo.isIE7){
6510             this.autoWidth.defer(1, this);
6511         }else{
6512             this.autoWidth();
6513         }
6514         if(this.handleMouseEvents){
6515             btn.on("mouseover", this.onMouseOver, this);
6516             btn.on("mouseout", this.onMouseOut, this);
6517             btn.on("mousedown", this.onMouseDown, this);
6518         }
6519         btn.on(this.clickEvent, this.onClick, this);
6520         //btn.on("mouseup", this.onMouseUp, this);
6521         if(this.hidden){
6522             this.hide();
6523         }
6524         if(this.disabled){
6525             this.disable();
6526         }
6527         Roo.ButtonToggleMgr.register(this);
6528         if(this.pressed){
6529             this.el.addClass("x-btn-pressed");
6530         }
6531         if(this.repeat){
6532             var repeater = new Roo.util.ClickRepeater(btn,
6533                 typeof this.repeat == "object" ? this.repeat : {}
6534             );
6535             repeater.on("click", this.onClick,  this);
6536         }
6537         
6538         this.fireEvent('render', this);
6539         
6540     },
6541     /**
6542      * Returns the button's underlying element
6543      * @return {Roo.Element} The element
6544      */
6545     getEl : function(){
6546         return this.el;  
6547     },
6548     
6549     /**
6550      * Destroys this Button and removes any listeners.
6551      */
6552     destroy : function(){
6553         Roo.ButtonToggleMgr.unregister(this);
6554         this.el.removeAllListeners();
6555         this.purgeListeners();
6556         this.el.remove();
6557     },
6558
6559     // private
6560     autoWidth : function(){
6561         if(this.el){
6562             this.el.setWidth("auto");
6563             if(Roo.isIE7 && Roo.isStrict){
6564                 var ib = this.el.child('button');
6565                 if(ib && ib.getWidth() > 20){
6566                     ib.clip();
6567                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6568                 }
6569             }
6570             if(this.minWidth){
6571                 if(this.hidden){
6572                     this.el.beginMeasure();
6573                 }
6574                 if(this.el.getWidth() < this.minWidth){
6575                     this.el.setWidth(this.minWidth);
6576                 }
6577                 if(this.hidden){
6578                     this.el.endMeasure();
6579                 }
6580             }
6581         }
6582     },
6583
6584     /**
6585      * Assigns this button's click handler
6586      * @param {Function} handler The function to call when the button is clicked
6587      * @param {Object} scope (optional) Scope for the function passed in
6588      */
6589     setHandler : function(handler, scope){
6590         this.handler = handler;
6591         this.scope = scope;  
6592     },
6593     
6594     /**
6595      * Sets this button's text
6596      * @param {String} text The button text
6597      */
6598     setText : function(text){
6599         this.text = text;
6600         if(this.el){
6601             this.el.child("td.x-btn-center button.x-btn-text").update(text);
6602         }
6603         this.autoWidth();
6604     },
6605     
6606     /**
6607      * Gets the text for this button
6608      * @return {String} The button text
6609      */
6610     getText : function(){
6611         return this.text;  
6612     },
6613     
6614     /**
6615      * Show this button
6616      */
6617     show: function(){
6618         this.hidden = false;
6619         if(this.el){
6620             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
6621         }
6622     },
6623     
6624     /**
6625      * Hide this button
6626      */
6627     hide: function(){
6628         this.hidden = true;
6629         if(this.el){
6630             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
6631         }
6632     },
6633     
6634     /**
6635      * Convenience function for boolean show/hide
6636      * @param {Boolean} visible True to show, false to hide
6637      */
6638     setVisible: function(visible){
6639         if(visible) {
6640             this.show();
6641         }else{
6642             this.hide();
6643         }
6644     },
6645     
6646     /**
6647      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
6648      * @param {Boolean} state (optional) Force a particular state
6649      */
6650     toggle : function(state){
6651         state = state === undefined ? !this.pressed : state;
6652         if(state != this.pressed){
6653             if(state){
6654                 this.el.addClass("x-btn-pressed");
6655                 this.pressed = true;
6656                 this.fireEvent("toggle", this, true);
6657             }else{
6658                 this.el.removeClass("x-btn-pressed");
6659                 this.pressed = false;
6660                 this.fireEvent("toggle", this, false);
6661             }
6662             if(this.toggleHandler){
6663                 this.toggleHandler.call(this.scope || this, this, state);
6664             }
6665         }
6666     },
6667     
6668     /**
6669      * Focus the button
6670      */
6671     focus : function(){
6672         this.el.child('button:first').focus();
6673     },
6674     
6675     /**
6676      * Disable this button
6677      */
6678     disable : function(){
6679         if(this.el){
6680             this.el.addClass("x-btn-disabled");
6681         }
6682         this.disabled = true;
6683     },
6684     
6685     /**
6686      * Enable this button
6687      */
6688     enable : function(){
6689         if(this.el){
6690             this.el.removeClass("x-btn-disabled");
6691         }
6692         this.disabled = false;
6693     },
6694
6695     /**
6696      * Convenience function for boolean enable/disable
6697      * @param {Boolean} enabled True to enable, false to disable
6698      */
6699     setDisabled : function(v){
6700         this[v !== true ? "enable" : "disable"]();
6701     },
6702
6703     // private
6704     onClick : function(e)
6705     {
6706         if(e){
6707             e.preventDefault();
6708         }
6709         if(e.button != 0){
6710             return;
6711         }
6712         if(!this.disabled){
6713             if(this.enableToggle){
6714                 this.toggle();
6715             }
6716             if(this.menu && !this.menu.isVisible()){
6717                 this.menu.show(this.el, this.menuAlign);
6718             }
6719             this.fireEvent("click", this, e);
6720             if(this.handler){
6721                 this.el.removeClass("x-btn-over");
6722                 this.handler.call(this.scope || this, this, e);
6723             }
6724         }
6725     },
6726     // private
6727     onMouseOver : function(e){
6728         if(!this.disabled){
6729             this.el.addClass("x-btn-over");
6730             this.fireEvent('mouseover', this, e);
6731         }
6732     },
6733     // private
6734     onMouseOut : function(e){
6735         if(!e.within(this.el,  true)){
6736             this.el.removeClass("x-btn-over");
6737             this.fireEvent('mouseout', this, e);
6738         }
6739     },
6740     // private
6741     onFocus : function(e){
6742         if(!this.disabled){
6743             this.el.addClass("x-btn-focus");
6744         }
6745     },
6746     // private
6747     onBlur : function(e){
6748         this.el.removeClass("x-btn-focus");
6749     },
6750     // private
6751     onMouseDown : function(e){
6752         if(!this.disabled && e.button == 0){
6753             this.el.addClass("x-btn-click");
6754             Roo.get(document).on('mouseup', this.onMouseUp, this);
6755         }
6756     },
6757     // private
6758     onMouseUp : function(e){
6759         if(e.button == 0){
6760             this.el.removeClass("x-btn-click");
6761             Roo.get(document).un('mouseup', this.onMouseUp, this);
6762         }
6763     },
6764     // private
6765     onMenuShow : function(e){
6766         this.el.addClass("x-btn-menu-active");
6767     },
6768     // private
6769     onMenuHide : function(e){
6770         this.el.removeClass("x-btn-menu-active");
6771     }   
6772 });
6773
6774 // Private utility class used by Button
6775 Roo.ButtonToggleMgr = function(){
6776    var groups = {};
6777    
6778    function toggleGroup(btn, state){
6779        if(state){
6780            var g = groups[btn.toggleGroup];
6781            for(var i = 0, l = g.length; i < l; i++){
6782                if(g[i] != btn){
6783                    g[i].toggle(false);
6784                }
6785            }
6786        }
6787    }
6788    
6789    return {
6790        register : function(btn){
6791            if(!btn.toggleGroup){
6792                return;
6793            }
6794            var g = groups[btn.toggleGroup];
6795            if(!g){
6796                g = groups[btn.toggleGroup] = [];
6797            }
6798            g.push(btn);
6799            btn.on("toggle", toggleGroup);
6800        },
6801        
6802        unregister : function(btn){
6803            if(!btn.toggleGroup){
6804                return;
6805            }
6806            var g = groups[btn.toggleGroup];
6807            if(g){
6808                g.remove(btn);
6809                btn.un("toggle", toggleGroup);
6810            }
6811        }
6812    };
6813 }();/*
6814  * Based on:
6815  * Ext JS Library 1.1.1
6816  * Copyright(c) 2006-2007, Ext JS, LLC.
6817  *
6818  * Originally Released Under LGPL - original licence link has changed is not relivant.
6819  *
6820  * Fork - LGPL
6821  * <script type="text/javascript">
6822  */
6823  
6824 /**
6825  * @class Roo.SplitButton
6826  * @extends Roo.Button
6827  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
6828  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
6829  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
6830  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
6831  * @cfg {String} arrowTooltip The title attribute of the arrow
6832  * @constructor
6833  * Create a new menu button
6834  * @param {String/HTMLElement/Element} renderTo The element to append the button to
6835  * @param {Object} config The config object
6836  */
6837 Roo.SplitButton = function(renderTo, config){
6838     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
6839     /**
6840      * @event arrowclick
6841      * Fires when this button's arrow is clicked
6842      * @param {SplitButton} this
6843      * @param {EventObject} e The click event
6844      */
6845     this.addEvents({"arrowclick":true});
6846 };
6847
6848 Roo.extend(Roo.SplitButton, Roo.Button, {
6849     render : function(renderTo){
6850         // this is one sweet looking template!
6851         var tpl = new Roo.Template(
6852             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
6853             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
6854             '<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>',
6855             "</tbody></table></td><td>",
6856             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
6857             '<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>',
6858             "</tbody></table></td></tr></table>"
6859         );
6860         var btn = tpl.append(renderTo, [this.text, this.type], true);
6861         var btnEl = btn.child("button");
6862         if(this.cls){
6863             btn.addClass(this.cls);
6864         }
6865         if(this.icon){
6866             btnEl.setStyle('background-image', 'url(' +this.icon +')');
6867         }
6868         if(this.iconCls){
6869             btnEl.addClass(this.iconCls);
6870             if(!this.cls){
6871                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
6872             }
6873         }
6874         this.el = btn;
6875         if(this.handleMouseEvents){
6876             btn.on("mouseover", this.onMouseOver, this);
6877             btn.on("mouseout", this.onMouseOut, this);
6878             btn.on("mousedown", this.onMouseDown, this);
6879             btn.on("mouseup", this.onMouseUp, this);
6880         }
6881         btn.on(this.clickEvent, this.onClick, this);
6882         if(this.tooltip){
6883             if(typeof this.tooltip == 'object'){
6884                 Roo.QuickTips.tips(Roo.apply({
6885                       target: btnEl.id
6886                 }, this.tooltip));
6887             } else {
6888                 btnEl.dom[this.tooltipType] = this.tooltip;
6889             }
6890         }
6891         if(this.arrowTooltip){
6892             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
6893         }
6894         if(this.hidden){
6895             this.hide();
6896         }
6897         if(this.disabled){
6898             this.disable();
6899         }
6900         if(this.pressed){
6901             this.el.addClass("x-btn-pressed");
6902         }
6903         if(Roo.isIE && !Roo.isIE7){
6904             this.autoWidth.defer(1, this);
6905         }else{
6906             this.autoWidth();
6907         }
6908         if(this.menu){
6909             this.menu.on("show", this.onMenuShow, this);
6910             this.menu.on("hide", this.onMenuHide, this);
6911         }
6912         this.fireEvent('render', this);
6913     },
6914
6915     // private
6916     autoWidth : function(){
6917         if(this.el){
6918             var tbl = this.el.child("table:first");
6919             var tbl2 = this.el.child("table:last");
6920             this.el.setWidth("auto");
6921             tbl.setWidth("auto");
6922             if(Roo.isIE7 && Roo.isStrict){
6923                 var ib = this.el.child('button:first');
6924                 if(ib && ib.getWidth() > 20){
6925                     ib.clip();
6926                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
6927                 }
6928             }
6929             if(this.minWidth){
6930                 if(this.hidden){
6931                     this.el.beginMeasure();
6932                 }
6933                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
6934                     tbl.setWidth(this.minWidth-tbl2.getWidth());
6935                 }
6936                 if(this.hidden){
6937                     this.el.endMeasure();
6938                 }
6939             }
6940             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
6941         } 
6942     },
6943     /**
6944      * Sets this button's click handler
6945      * @param {Function} handler The function to call when the button is clicked
6946      * @param {Object} scope (optional) Scope for the function passed above
6947      */
6948     setHandler : function(handler, scope){
6949         this.handler = handler;
6950         this.scope = scope;  
6951     },
6952     
6953     /**
6954      * Sets this button's arrow click handler
6955      * @param {Function} handler The function to call when the arrow is clicked
6956      * @param {Object} scope (optional) Scope for the function passed above
6957      */
6958     setArrowHandler : function(handler, scope){
6959         this.arrowHandler = handler;
6960         this.scope = scope;  
6961     },
6962     
6963     /**
6964      * Focus the button
6965      */
6966     focus : function(){
6967         if(this.el){
6968             this.el.child("button:first").focus();
6969         }
6970     },
6971
6972     // private
6973     onClick : function(e){
6974         e.preventDefault();
6975         if(!this.disabled){
6976             if(e.getTarget(".x-btn-menu-arrow-wrap")){
6977                 if(this.menu && !this.menu.isVisible()){
6978                     this.menu.show(this.el, this.menuAlign);
6979                 }
6980                 this.fireEvent("arrowclick", this, e);
6981                 if(this.arrowHandler){
6982                     this.arrowHandler.call(this.scope || this, this, e);
6983                 }
6984             }else{
6985                 this.fireEvent("click", this, e);
6986                 if(this.handler){
6987                     this.handler.call(this.scope || this, this, e);
6988                 }
6989             }
6990         }
6991     },
6992     // private
6993     onMouseDown : function(e){
6994         if(!this.disabled){
6995             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
6996         }
6997     },
6998     // private
6999     onMouseUp : function(e){
7000         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
7001     }   
7002 });
7003
7004
7005 // backwards compat
7006 Roo.MenuButton = Roo.SplitButton;/*
7007  * Based on:
7008  * Ext JS Library 1.1.1
7009  * Copyright(c) 2006-2007, Ext JS, LLC.
7010  *
7011  * Originally Released Under LGPL - original licence link has changed is not relivant.
7012  *
7013  * Fork - LGPL
7014  * <script type="text/javascript">
7015  */
7016
7017 /**
7018  * @class Roo.Toolbar
7019  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field 
7020  * Basic Toolbar class.
7021  * @constructor
7022  * Creates a new Toolbar
7023  * @param {Object} container The config object
7024  */ 
7025 Roo.Toolbar = function(container, buttons, config)
7026 {
7027     /// old consturctor format still supported..
7028     if(container instanceof Array){ // omit the container for later rendering
7029         buttons = container;
7030         config = buttons;
7031         container = null;
7032     }
7033     if (typeof(container) == 'object' && container.xtype) {
7034         config = container;
7035         container = config.container;
7036         buttons = config.buttons || []; // not really - use items!!
7037     }
7038     var xitems = [];
7039     if (config && config.items) {
7040         xitems = config.items;
7041         delete config.items;
7042     }
7043     Roo.apply(this, config);
7044     this.buttons = buttons;
7045     
7046     if(container){
7047         this.render(container);
7048     }
7049     this.xitems = xitems;
7050     Roo.each(xitems, function(b) {
7051         this.add(b);
7052     }, this);
7053     
7054 };
7055
7056 Roo.Toolbar.prototype = {
7057     /**
7058      * @cfg {Array} items
7059      * array of button configs or elements to add (will be converted to a MixedCollection)
7060      */
7061     items: false,
7062     /**
7063      * @cfg {String/HTMLElement/Element} container
7064      * The id or element that will contain the toolbar
7065      */
7066     // private
7067     render : function(ct){
7068         this.el = Roo.get(ct);
7069         if(this.cls){
7070             this.el.addClass(this.cls);
7071         }
7072         // using a table allows for vertical alignment
7073         // 100% width is needed by Safari...
7074         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
7075         this.tr = this.el.child("tr", true);
7076         var autoId = 0;
7077         this.items = new Roo.util.MixedCollection(false, function(o){
7078             return o.id || ("item" + (++autoId));
7079         });
7080         if(this.buttons){
7081             this.add.apply(this, this.buttons);
7082             delete this.buttons;
7083         }
7084     },
7085
7086     /**
7087      * Adds element(s) to the toolbar -- this function takes a variable number of 
7088      * arguments of mixed type and adds them to the toolbar.
7089      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
7090      * <ul>
7091      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
7092      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
7093      * <li>Field: Any form field (equivalent to {@link #addField})</li>
7094      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
7095      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
7096      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
7097      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
7098      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
7099      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
7100      * </ul>
7101      * @param {Mixed} arg2
7102      * @param {Mixed} etc.
7103      */
7104     add : function(){
7105         var a = arguments, l = a.length;
7106         for(var i = 0; i < l; i++){
7107             this._add(a[i]);
7108         }
7109     },
7110     // private..
7111     _add : function(el) {
7112         
7113         if (el.xtype) {
7114             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
7115         }
7116         
7117         if (el.applyTo){ // some kind of form field
7118             return this.addField(el);
7119         } 
7120         if (el.render){ // some kind of Toolbar.Item
7121             return this.addItem(el);
7122         }
7123         if (typeof el == "string"){ // string
7124             if(el == "separator" || el == "-"){
7125                 return this.addSeparator();
7126             }
7127             if (el == " "){
7128                 return this.addSpacer();
7129             }
7130             if(el == "->"){
7131                 return this.addFill();
7132             }
7133             return this.addText(el);
7134             
7135         }
7136         if(el.tagName){ // element
7137             return this.addElement(el);
7138         }
7139         if(typeof el == "object"){ // must be button config?
7140             return this.addButton(el);
7141         }
7142         // and now what?!?!
7143         return false;
7144         
7145     },
7146     
7147     /**
7148      * Add an Xtype element
7149      * @param {Object} xtype Xtype Object
7150      * @return {Object} created Object
7151      */
7152     addxtype : function(e){
7153         return this.add(e);  
7154     },
7155     
7156     /**
7157      * Returns the Element for this toolbar.
7158      * @return {Roo.Element}
7159      */
7160     getEl : function(){
7161         return this.el;  
7162     },
7163     
7164     /**
7165      * Adds a separator
7166      * @return {Roo.Toolbar.Item} The separator item
7167      */
7168     addSeparator : function(){
7169         return this.addItem(new Roo.Toolbar.Separator());
7170     },
7171
7172     /**
7173      * Adds a spacer element
7174      * @return {Roo.Toolbar.Spacer} The spacer item
7175      */
7176     addSpacer : function(){
7177         return this.addItem(new Roo.Toolbar.Spacer());
7178     },
7179
7180     /**
7181      * Adds a fill element that forces subsequent additions to the right side of the toolbar
7182      * @return {Roo.Toolbar.Fill} The fill item
7183      */
7184     addFill : function(){
7185         return this.addItem(new Roo.Toolbar.Fill());
7186     },
7187
7188     /**
7189      * Adds any standard HTML element to the toolbar
7190      * @param {String/HTMLElement/Element} el The element or id of the element to add
7191      * @return {Roo.Toolbar.Item} The element's item
7192      */
7193     addElement : function(el){
7194         return this.addItem(new Roo.Toolbar.Item(el));
7195     },
7196     /**
7197      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
7198      * @type Roo.util.MixedCollection  
7199      */
7200     items : false,
7201      
7202     /**
7203      * Adds any Toolbar.Item or subclass
7204      * @param {Roo.Toolbar.Item} item
7205      * @return {Roo.Toolbar.Item} The item
7206      */
7207     addItem : function(item){
7208         var td = this.nextBlock();
7209         item.render(td);
7210         this.items.add(item);
7211         return item;
7212     },
7213     
7214     /**
7215      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
7216      * @param {Object/Array} config A button config or array of configs
7217      * @return {Roo.Toolbar.Button/Array}
7218      */
7219     addButton : function(config){
7220         if(config instanceof Array){
7221             var buttons = [];
7222             for(var i = 0, len = config.length; i < len; i++) {
7223                 buttons.push(this.addButton(config[i]));
7224             }
7225             return buttons;
7226         }
7227         var b = config;
7228         if(!(config instanceof Roo.Toolbar.Button)){
7229             b = config.split ?
7230                 new Roo.Toolbar.SplitButton(config) :
7231                 new Roo.Toolbar.Button(config);
7232         }
7233         var td = this.nextBlock();
7234         b.render(td);
7235         this.items.add(b);
7236         return b;
7237     },
7238     
7239     /**
7240      * Adds text to the toolbar
7241      * @param {String} text The text to add
7242      * @return {Roo.Toolbar.Item} The element's item
7243      */
7244     addText : function(text){
7245         return this.addItem(new Roo.Toolbar.TextItem(text));
7246     },
7247     
7248     /**
7249      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
7250      * @param {Number} index The index where the item is to be inserted
7251      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
7252      * @return {Roo.Toolbar.Button/Item}
7253      */
7254     insertButton : function(index, item){
7255         if(item instanceof Array){
7256             var buttons = [];
7257             for(var i = 0, len = item.length; i < len; i++) {
7258                buttons.push(this.insertButton(index + i, item[i]));
7259             }
7260             return buttons;
7261         }
7262         if (!(item instanceof Roo.Toolbar.Button)){
7263            item = new Roo.Toolbar.Button(item);
7264         }
7265         var td = document.createElement("td");
7266         this.tr.insertBefore(td, this.tr.childNodes[index]);
7267         item.render(td);
7268         this.items.insert(index, item);
7269         return item;
7270     },
7271     
7272     /**
7273      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
7274      * @param {Object} config
7275      * @return {Roo.Toolbar.Item} The element's item
7276      */
7277     addDom : function(config, returnEl){
7278         var td = this.nextBlock();
7279         Roo.DomHelper.overwrite(td, config);
7280         var ti = new Roo.Toolbar.Item(td.firstChild);
7281         ti.render(td);
7282         this.items.add(ti);
7283         return ti;
7284     },
7285
7286     /**
7287      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
7288      * @type Roo.util.MixedCollection  
7289      */
7290     fields : false,
7291     
7292     /**
7293      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
7294      * Note: the field should not have been rendered yet. For a field that has already been
7295      * rendered, use {@link #addElement}.
7296      * @param {Roo.form.Field} field
7297      * @return {Roo.ToolbarItem}
7298      */
7299      
7300       
7301     addField : function(field) {
7302         if (!this.fields) {
7303             var autoId = 0;
7304             this.fields = new Roo.util.MixedCollection(false, function(o){
7305                 return o.id || ("item" + (++autoId));
7306             });
7307
7308         }
7309         
7310         var td = this.nextBlock();
7311         field.render(td);
7312         var ti = new Roo.Toolbar.Item(td.firstChild);
7313         ti.render(td);
7314         this.items.add(ti);
7315         this.fields.add(field);
7316         return ti;
7317     },
7318     /**
7319      * Hide the toolbar
7320      * @method hide
7321      */
7322      
7323       
7324     hide : function()
7325     {
7326         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
7327         this.el.child('div').hide();
7328     },
7329     /**
7330      * Show the toolbar
7331      * @method show
7332      */
7333     show : function()
7334     {
7335         this.el.child('div').show();
7336     },
7337       
7338     // private
7339     nextBlock : function(){
7340         var td = document.createElement("td");
7341         this.tr.appendChild(td);
7342         return td;
7343     },
7344
7345     // private
7346     destroy : function(){
7347         if(this.items){ // rendered?
7348             Roo.destroy.apply(Roo, this.items.items);
7349         }
7350         if(this.fields){ // rendered?
7351             Roo.destroy.apply(Roo, this.fields.items);
7352         }
7353         Roo.Element.uncache(this.el, this.tr);
7354     }
7355 };
7356
7357 /**
7358  * @class Roo.Toolbar.Item
7359  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
7360  * @constructor
7361  * Creates a new Item
7362  * @param {HTMLElement} el 
7363  */
7364 Roo.Toolbar.Item = function(el){
7365     var cfg = {};
7366     if (typeof (el.xtype) != 'undefined') {
7367         cfg = el;
7368         el = cfg.el;
7369     }
7370     
7371     this.el = Roo.getDom(el);
7372     this.id = Roo.id(this.el);
7373     this.hidden = false;
7374     
7375     this.addEvents({
7376          /**
7377              * @event render
7378              * Fires when the button is rendered
7379              * @param {Button} this
7380              */
7381         'render': true
7382     });
7383     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
7384 };
7385 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
7386 //Roo.Toolbar.Item.prototype = {
7387     
7388     /**
7389      * Get this item's HTML Element
7390      * @return {HTMLElement}
7391      */
7392     getEl : function(){
7393        return this.el;  
7394     },
7395
7396     // private
7397     render : function(td){
7398         
7399          this.td = td;
7400         td.appendChild(this.el);
7401         
7402         this.fireEvent('render', this);
7403     },
7404     
7405     /**
7406      * Removes and destroys this item.
7407      */
7408     destroy : function(){
7409         this.td.parentNode.removeChild(this.td);
7410     },
7411     
7412     /**
7413      * Shows this item.
7414      */
7415     show: function(){
7416         this.hidden = false;
7417         this.td.style.display = "";
7418     },
7419     
7420     /**
7421      * Hides this item.
7422      */
7423     hide: function(){
7424         this.hidden = true;
7425         this.td.style.display = "none";
7426     },
7427     
7428     /**
7429      * Convenience function for boolean show/hide.
7430      * @param {Boolean} visible true to show/false to hide
7431      */
7432     setVisible: function(visible){
7433         if(visible) {
7434             this.show();
7435         }else{
7436             this.hide();
7437         }
7438     },
7439     
7440     /**
7441      * Try to focus this item.
7442      */
7443     focus : function(){
7444         Roo.fly(this.el).focus();
7445     },
7446     
7447     /**
7448      * Disables this item.
7449      */
7450     disable : function(){
7451         Roo.fly(this.td).addClass("x-item-disabled");
7452         this.disabled = true;
7453         this.el.disabled = true;
7454     },
7455     
7456     /**
7457      * Enables this item.
7458      */
7459     enable : function(){
7460         Roo.fly(this.td).removeClass("x-item-disabled");
7461         this.disabled = false;
7462         this.el.disabled = false;
7463     }
7464 });
7465
7466
7467 /**
7468  * @class Roo.Toolbar.Separator
7469  * @extends Roo.Toolbar.Item
7470  * A simple toolbar separator class
7471  * @constructor
7472  * Creates a new Separator
7473  */
7474 Roo.Toolbar.Separator = function(cfg){
7475     
7476     var s = document.createElement("span");
7477     s.className = "ytb-sep";
7478     if (cfg) {
7479         cfg.el = s;
7480     }
7481     
7482     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
7483 };
7484 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
7485     enable:Roo.emptyFn,
7486     disable:Roo.emptyFn,
7487     focus:Roo.emptyFn
7488 });
7489
7490 /**
7491  * @class Roo.Toolbar.Spacer
7492  * @extends Roo.Toolbar.Item
7493  * A simple element that adds extra horizontal space to a toolbar.
7494  * @constructor
7495  * Creates a new Spacer
7496  */
7497 Roo.Toolbar.Spacer = function(cfg){
7498     var s = document.createElement("div");
7499     s.className = "ytb-spacer";
7500     if (cfg) {
7501         cfg.el = s;
7502     }
7503     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
7504 };
7505 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
7506     enable:Roo.emptyFn,
7507     disable:Roo.emptyFn,
7508     focus:Roo.emptyFn
7509 });
7510
7511 /**
7512  * @class Roo.Toolbar.Fill
7513  * @extends Roo.Toolbar.Spacer
7514  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
7515  * @constructor
7516  * Creates a new Spacer
7517  */
7518 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
7519     // private
7520     render : function(td){
7521         td.style.width = '100%';
7522         Roo.Toolbar.Fill.superclass.render.call(this, td);
7523     }
7524 });
7525
7526 /**
7527  * @class Roo.Toolbar.TextItem
7528  * @extends Roo.Toolbar.Item
7529  * A simple class that renders text directly into a toolbar.
7530  * @constructor
7531  * Creates a new TextItem
7532  * @cfg {string} text 
7533  */
7534 Roo.Toolbar.TextItem = function(cfg){
7535     var  text = cfg || "";
7536     if (typeof(cfg) == 'object') {
7537         text = cfg.text || "";
7538     }  else {
7539         cfg = null;
7540     }
7541     var s = document.createElement("span");
7542     s.className = "ytb-text";
7543     s.innerHTML = text;
7544     if (cfg) {
7545         cfg.el  = s;
7546     }
7547     
7548     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
7549 };
7550 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
7551     
7552      
7553     enable:Roo.emptyFn,
7554     disable:Roo.emptyFn,
7555     focus:Roo.emptyFn,
7556      /**
7557      * Shows this button
7558      */
7559     show: function(){
7560         this.hidden = false;
7561         this.el.style.display = "";
7562     },
7563     
7564     /**
7565      * Hides this button
7566      */
7567     hide: function(){
7568         this.hidden = true;
7569         this.el.style.display = "none";
7570     }
7571     
7572 });
7573
7574 /**
7575  * @class Roo.Toolbar.Button
7576  * @extends Roo.Button
7577  * A button that renders into a toolbar.
7578  * @constructor
7579  * Creates a new Button
7580  * @param {Object} config A standard {@link Roo.Button} config object
7581  */
7582 Roo.Toolbar.Button = function(config){
7583     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
7584 };
7585 Roo.extend(Roo.Toolbar.Button, Roo.Button,
7586 {
7587     
7588     
7589     render : function(td){
7590         this.td = td;
7591         Roo.Toolbar.Button.superclass.render.call(this, td);
7592     },
7593     
7594     /**
7595      * Removes and destroys this button
7596      */
7597     destroy : function(){
7598         Roo.Toolbar.Button.superclass.destroy.call(this);
7599         this.td.parentNode.removeChild(this.td);
7600     },
7601     
7602     /**
7603      * Shows this button
7604      */
7605     show: function(){
7606         this.hidden = false;
7607         this.td.style.display = "";
7608     },
7609     
7610     /**
7611      * Hides this button
7612      */
7613     hide: function(){
7614         this.hidden = true;
7615         this.td.style.display = "none";
7616     },
7617
7618     /**
7619      * Disables this item
7620      */
7621     disable : function(){
7622         Roo.fly(this.td).addClass("x-item-disabled");
7623         this.disabled = true;
7624     },
7625
7626     /**
7627      * Enables this item
7628      */
7629     enable : function(){
7630         Roo.fly(this.td).removeClass("x-item-disabled");
7631         this.disabled = false;
7632     }
7633 });
7634 // backwards compat
7635 Roo.ToolbarButton = Roo.Toolbar.Button;
7636
7637 /**
7638  * @class Roo.Toolbar.SplitButton
7639  * @extends Roo.SplitButton
7640  * A menu button that renders into a toolbar.
7641  * @constructor
7642  * Creates a new SplitButton
7643  * @param {Object} config A standard {@link Roo.SplitButton} config object
7644  */
7645 Roo.Toolbar.SplitButton = function(config){
7646     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
7647 };
7648 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
7649     render : function(td){
7650         this.td = td;
7651         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
7652     },
7653     
7654     /**
7655      * Removes and destroys this button
7656      */
7657     destroy : function(){
7658         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
7659         this.td.parentNode.removeChild(this.td);
7660     },
7661     
7662     /**
7663      * Shows this button
7664      */
7665     show: function(){
7666         this.hidden = false;
7667         this.td.style.display = "";
7668     },
7669     
7670     /**
7671      * Hides this button
7672      */
7673     hide: function(){
7674         this.hidden = true;
7675         this.td.style.display = "none";
7676     }
7677 });
7678
7679 // backwards compat
7680 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
7681  * Based on:
7682  * Ext JS Library 1.1.1
7683  * Copyright(c) 2006-2007, Ext JS, LLC.
7684  *
7685  * Originally Released Under LGPL - original licence link has changed is not relivant.
7686  *
7687  * Fork - LGPL
7688  * <script type="text/javascript">
7689  */
7690  
7691 /**
7692  * @class Roo.PagingToolbar
7693  * @extends Roo.Toolbar
7694  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field
7695  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
7696  * @constructor
7697  * Create a new PagingToolbar
7698  * @param {Object} config The config object
7699  */
7700 Roo.PagingToolbar = function(el, ds, config)
7701 {
7702     // old args format still supported... - xtype is prefered..
7703     if (typeof(el) == 'object' && el.xtype) {
7704         // created from xtype...
7705         config = el;
7706         ds = el.dataSource;
7707         el = config.container;
7708     }
7709     var items = [];
7710     if (config.items) {
7711         items = config.items;
7712         config.items = [];
7713     }
7714     
7715     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
7716     this.ds = ds;
7717     this.cursor = 0;
7718     this.renderButtons(this.el);
7719     this.bind(ds);
7720     
7721     // supprot items array.
7722    
7723     Roo.each(items, function(e) {
7724         this.add(Roo.factory(e));
7725     },this);
7726     
7727 };
7728
7729 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
7730    
7731     /**
7732      * @cfg {String/HTMLElement/Element} container
7733      * container The id or element that will contain the toolbar
7734      */
7735     /**
7736      * @cfg {Boolean} displayInfo
7737      * True to display the displayMsg (defaults to false)
7738      */
7739     
7740     
7741     /**
7742      * @cfg {Number} pageSize
7743      * The number of records to display per page (defaults to 20)
7744      */
7745     pageSize: 20,
7746     /**
7747      * @cfg {String} displayMsg
7748      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
7749      */
7750     displayMsg : 'Displaying {0} - {1} of {2}',
7751     /**
7752      * @cfg {String} emptyMsg
7753      * The message to display when no records are found (defaults to "No data to display")
7754      */
7755     emptyMsg : 'No data to display',
7756     /**
7757      * Customizable piece of the default paging text (defaults to "Page")
7758      * @type String
7759      */
7760     beforePageText : "Page",
7761     /**
7762      * Customizable piece of the default paging text (defaults to "of %0")
7763      * @type String
7764      */
7765     afterPageText : "of {0}",
7766     /**
7767      * Customizable piece of the default paging text (defaults to "First Page")
7768      * @type String
7769      */
7770     firstText : "First Page",
7771     /**
7772      * Customizable piece of the default paging text (defaults to "Previous Page")
7773      * @type String
7774      */
7775     prevText : "Previous Page",
7776     /**
7777      * Customizable piece of the default paging text (defaults to "Next Page")
7778      * @type String
7779      */
7780     nextText : "Next Page",
7781     /**
7782      * Customizable piece of the default paging text (defaults to "Last Page")
7783      * @type String
7784      */
7785     lastText : "Last Page",
7786     /**
7787      * Customizable piece of the default paging text (defaults to "Refresh")
7788      * @type String
7789      */
7790     refreshText : "Refresh",
7791
7792     // private
7793     renderButtons : function(el){
7794         Roo.PagingToolbar.superclass.render.call(this, el);
7795         this.first = this.addButton({
7796             tooltip: this.firstText,
7797             cls: "x-btn-icon x-grid-page-first",
7798             disabled: true,
7799             handler: this.onClick.createDelegate(this, ["first"])
7800         });
7801         this.prev = this.addButton({
7802             tooltip: this.prevText,
7803             cls: "x-btn-icon x-grid-page-prev",
7804             disabled: true,
7805             handler: this.onClick.createDelegate(this, ["prev"])
7806         });
7807         //this.addSeparator();
7808         this.add(this.beforePageText);
7809         this.field = Roo.get(this.addDom({
7810            tag: "input",
7811            type: "text",
7812            size: "3",
7813            value: "1",
7814            cls: "x-grid-page-number"
7815         }).el);
7816         this.field.on("keydown", this.onPagingKeydown, this);
7817         this.field.on("focus", function(){this.dom.select();});
7818         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
7819         this.field.setHeight(18);
7820         //this.addSeparator();
7821         this.next = this.addButton({
7822             tooltip: this.nextText,
7823             cls: "x-btn-icon x-grid-page-next",
7824             disabled: true,
7825             handler: this.onClick.createDelegate(this, ["next"])
7826         });
7827         this.last = this.addButton({
7828             tooltip: this.lastText,
7829             cls: "x-btn-icon x-grid-page-last",
7830             disabled: true,
7831             handler: this.onClick.createDelegate(this, ["last"])
7832         });
7833         //this.addSeparator();
7834         this.loading = this.addButton({
7835             tooltip: this.refreshText,
7836             cls: "x-btn-icon x-grid-loading",
7837             handler: this.onClick.createDelegate(this, ["refresh"])
7838         });
7839
7840         if(this.displayInfo){
7841             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
7842         }
7843     },
7844
7845     // private
7846     updateInfo : function(){
7847         if(this.displayEl){
7848             var count = this.ds.getCount();
7849             var msg = count == 0 ?
7850                 this.emptyMsg :
7851                 String.format(
7852                     this.displayMsg,
7853                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
7854                 );
7855             this.displayEl.update(msg);
7856         }
7857     },
7858
7859     // private
7860     onLoad : function(ds, r, o){
7861        this.cursor = o.params ? o.params.start : 0;
7862        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
7863
7864        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
7865        this.field.dom.value = ap;
7866        this.first.setDisabled(ap == 1);
7867        this.prev.setDisabled(ap == 1);
7868        this.next.setDisabled(ap == ps);
7869        this.last.setDisabled(ap == ps);
7870        this.loading.enable();
7871        this.updateInfo();
7872     },
7873
7874     // private
7875     getPageData : function(){
7876         var total = this.ds.getTotalCount();
7877         return {
7878             total : total,
7879             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
7880             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
7881         };
7882     },
7883
7884     // private
7885     onLoadError : function(){
7886         this.loading.enable();
7887     },
7888
7889     // private
7890     onPagingKeydown : function(e){
7891         var k = e.getKey();
7892         var d = this.getPageData();
7893         if(k == e.RETURN){
7894             var v = this.field.dom.value, pageNum;
7895             if(!v || isNaN(pageNum = parseInt(v, 10))){
7896                 this.field.dom.value = d.activePage;
7897                 return;
7898             }
7899             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
7900             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
7901             e.stopEvent();
7902         }
7903         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))
7904         {
7905           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
7906           this.field.dom.value = pageNum;
7907           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
7908           e.stopEvent();
7909         }
7910         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
7911         {
7912           var v = this.field.dom.value, pageNum; 
7913           var increment = (e.shiftKey) ? 10 : 1;
7914           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
7915             increment *= -1;
7916           }
7917           if(!v || isNaN(pageNum = parseInt(v, 10))) {
7918             this.field.dom.value = d.activePage;
7919             return;
7920           }
7921           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
7922           {
7923             this.field.dom.value = parseInt(v, 10) + increment;
7924             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
7925             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
7926           }
7927           e.stopEvent();
7928         }
7929     },
7930
7931     // private
7932     beforeLoad : function(){
7933         if(this.loading){
7934             this.loading.disable();
7935         }
7936     },
7937
7938     // private
7939     onClick : function(which){
7940         var ds = this.ds;
7941         switch(which){
7942             case "first":
7943                 ds.load({params:{start: 0, limit: this.pageSize}});
7944             break;
7945             case "prev":
7946                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
7947             break;
7948             case "next":
7949                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
7950             break;
7951             case "last":
7952                 var total = ds.getTotalCount();
7953                 var extra = total % this.pageSize;
7954                 var lastStart = extra ? (total - extra) : total-this.pageSize;
7955                 ds.load({params:{start: lastStart, limit: this.pageSize}});
7956             break;
7957             case "refresh":
7958                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
7959             break;
7960         }
7961     },
7962
7963     /**
7964      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
7965      * @param {Roo.data.Store} store The data store to unbind
7966      */
7967     unbind : function(ds){
7968         ds.un("beforeload", this.beforeLoad, this);
7969         ds.un("load", this.onLoad, this);
7970         ds.un("loadexception", this.onLoadError, this);
7971         ds.un("remove", this.updateInfo, this);
7972         ds.un("add", this.updateInfo, this);
7973         this.ds = undefined;
7974     },
7975
7976     /**
7977      * Binds the paging toolbar to the specified {@link Roo.data.Store}
7978      * @param {Roo.data.Store} store The data store to bind
7979      */
7980     bind : function(ds){
7981         ds.on("beforeload", this.beforeLoad, this);
7982         ds.on("load", this.onLoad, this);
7983         ds.on("loadexception", this.onLoadError, this);
7984         ds.on("remove", this.updateInfo, this);
7985         ds.on("add", this.updateInfo, this);
7986         this.ds = ds;
7987     }
7988 });/*
7989  * Based on:
7990  * Ext JS Library 1.1.1
7991  * Copyright(c) 2006-2007, Ext JS, LLC.
7992  *
7993  * Originally Released Under LGPL - original licence link has changed is not relivant.
7994  *
7995  * Fork - LGPL
7996  * <script type="text/javascript">
7997  */
7998
7999 /**
8000  * @class Roo.Resizable
8001  * @extends Roo.util.Observable
8002  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
8003  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
8004  * 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
8005  * the element will be wrapped for you automatically.</p>
8006  * <p>Here is the list of valid resize handles:</p>
8007  * <pre>
8008 Value   Description
8009 ------  -------------------
8010  'n'     north
8011  's'     south
8012  'e'     east
8013  'w'     west
8014  'nw'    northwest
8015  'sw'    southwest
8016  'se'    southeast
8017  'ne'    northeast
8018  'hd'    horizontal drag
8019  'all'   all
8020 </pre>
8021  * <p>Here's an example showing the creation of a typical Resizable:</p>
8022  * <pre><code>
8023 var resizer = new Roo.Resizable("element-id", {
8024     handles: 'all',
8025     minWidth: 200,
8026     minHeight: 100,
8027     maxWidth: 500,
8028     maxHeight: 400,
8029     pinned: true
8030 });
8031 resizer.on("resize", myHandler);
8032 </code></pre>
8033  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
8034  * resizer.east.setDisplayed(false);</p>
8035  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
8036  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
8037  * resize operation's new size (defaults to [0, 0])
8038  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
8039  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
8040  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
8041  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
8042  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
8043  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
8044  * @cfg {Number} width The width of the element in pixels (defaults to null)
8045  * @cfg {Number} height The height of the element in pixels (defaults to null)
8046  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
8047  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
8048  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
8049  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
8050  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
8051  * in favor of the handles config option (defaults to false)
8052  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
8053  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
8054  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
8055  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
8056  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
8057  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
8058  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
8059  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
8060  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
8061  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
8062  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
8063  * @constructor
8064  * Create a new resizable component
8065  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
8066  * @param {Object} config configuration options
8067   */
8068 Roo.Resizable = function(el, config)
8069 {
8070     this.el = Roo.get(el);
8071
8072     if(config && config.wrap){
8073         config.resizeChild = this.el;
8074         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
8075         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
8076         this.el.setStyle("overflow", "hidden");
8077         this.el.setPositioning(config.resizeChild.getPositioning());
8078         config.resizeChild.clearPositioning();
8079         if(!config.width || !config.height){
8080             var csize = config.resizeChild.getSize();
8081             this.el.setSize(csize.width, csize.height);
8082         }
8083         if(config.pinned && !config.adjustments){
8084             config.adjustments = "auto";
8085         }
8086     }
8087
8088     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
8089     this.proxy.unselectable();
8090     this.proxy.enableDisplayMode('block');
8091
8092     Roo.apply(this, config);
8093
8094     if(this.pinned){
8095         this.disableTrackOver = true;
8096         this.el.addClass("x-resizable-pinned");
8097     }
8098     // if the element isn't positioned, make it relative
8099     var position = this.el.getStyle("position");
8100     if(position != "absolute" && position != "fixed"){
8101         this.el.setStyle("position", "relative");
8102     }
8103     if(!this.handles){ // no handles passed, must be legacy style
8104         this.handles = 's,e,se';
8105         if(this.multiDirectional){
8106             this.handles += ',n,w';
8107         }
8108     }
8109     if(this.handles == "all"){
8110         this.handles = "n s e w ne nw se sw";
8111     }
8112     var hs = this.handles.split(/\s*?[,;]\s*?| /);
8113     var ps = Roo.Resizable.positions;
8114     for(var i = 0, len = hs.length; i < len; i++){
8115         if(hs[i] && ps[hs[i]]){
8116             var pos = ps[hs[i]];
8117             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
8118         }
8119     }
8120     // legacy
8121     this.corner = this.southeast;
8122     
8123     // updateBox = the box can move..
8124     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
8125         this.updateBox = true;
8126     }
8127
8128     this.activeHandle = null;
8129
8130     if(this.resizeChild){
8131         if(typeof this.resizeChild == "boolean"){
8132             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
8133         }else{
8134             this.resizeChild = Roo.get(this.resizeChild, true);
8135         }
8136     }
8137     
8138     if(this.adjustments == "auto"){
8139         var rc = this.resizeChild;
8140         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
8141         if(rc && (hw || hn)){
8142             rc.position("relative");
8143             rc.setLeft(hw ? hw.el.getWidth() : 0);
8144             rc.setTop(hn ? hn.el.getHeight() : 0);
8145         }
8146         this.adjustments = [
8147             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
8148             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
8149         ];
8150     }
8151
8152     if(this.draggable){
8153         this.dd = this.dynamic ?
8154             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
8155         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
8156     }
8157
8158     // public events
8159     this.addEvents({
8160         /**
8161          * @event beforeresize
8162          * Fired before resize is allowed. Set enabled to false to cancel resize.
8163          * @param {Roo.Resizable} this
8164          * @param {Roo.EventObject} e The mousedown event
8165          */
8166         "beforeresize" : true,
8167         /**
8168          * @event resizing
8169          * Fired a resizing.
8170          * @param {Roo.Resizable} this
8171          * @param {Number} x The new x position
8172          * @param {Number} y The new y position
8173          * @param {Number} w The new w width
8174          * @param {Number} h The new h hight
8175          * @param {Roo.EventObject} e The mouseup event
8176          */
8177         "resizing" : true,
8178         /**
8179          * @event resize
8180          * Fired after a resize.
8181          * @param {Roo.Resizable} this
8182          * @param {Number} width The new width
8183          * @param {Number} height The new height
8184          * @param {Roo.EventObject} e The mouseup event
8185          */
8186         "resize" : true
8187     });
8188
8189     if(this.width !== null && this.height !== null){
8190         this.resizeTo(this.width, this.height);
8191     }else{
8192         this.updateChildSize();
8193     }
8194     if(Roo.isIE){
8195         this.el.dom.style.zoom = 1;
8196     }
8197     Roo.Resizable.superclass.constructor.call(this);
8198 };
8199
8200 Roo.extend(Roo.Resizable, Roo.util.Observable, {
8201         resizeChild : false,
8202         adjustments : [0, 0],
8203         minWidth : 5,
8204         minHeight : 5,
8205         maxWidth : 10000,
8206         maxHeight : 10000,
8207         enabled : true,
8208         animate : false,
8209         duration : .35,
8210         dynamic : false,
8211         handles : false,
8212         multiDirectional : false,
8213         disableTrackOver : false,
8214         easing : 'easeOutStrong',
8215         widthIncrement : 0,
8216         heightIncrement : 0,
8217         pinned : false,
8218         width : null,
8219         height : null,
8220         preserveRatio : false,
8221         transparent: false,
8222         minX: 0,
8223         minY: 0,
8224         draggable: false,
8225
8226         /**
8227          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
8228          */
8229         constrainTo: undefined,
8230         /**
8231          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
8232          */
8233         resizeRegion: undefined,
8234
8235
8236     /**
8237      * Perform a manual resize
8238      * @param {Number} width
8239      * @param {Number} height
8240      */
8241     resizeTo : function(width, height){
8242         this.el.setSize(width, height);
8243         this.updateChildSize();
8244         this.fireEvent("resize", this, width, height, null);
8245     },
8246
8247     // private
8248     startSizing : function(e, handle){
8249         this.fireEvent("beforeresize", this, e);
8250         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
8251
8252             if(!this.overlay){
8253                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
8254                 this.overlay.unselectable();
8255                 this.overlay.enableDisplayMode("block");
8256                 this.overlay.on("mousemove", this.onMouseMove, this);
8257                 this.overlay.on("mouseup", this.onMouseUp, this);
8258             }
8259             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
8260
8261             this.resizing = true;
8262             this.startBox = this.el.getBox();
8263             this.startPoint = e.getXY();
8264             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
8265                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
8266
8267             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8268             this.overlay.show();
8269
8270             if(this.constrainTo) {
8271                 var ct = Roo.get(this.constrainTo);
8272                 this.resizeRegion = ct.getRegion().adjust(
8273                     ct.getFrameWidth('t'),
8274                     ct.getFrameWidth('l'),
8275                     -ct.getFrameWidth('b'),
8276                     -ct.getFrameWidth('r')
8277                 );
8278             }
8279
8280             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
8281             this.proxy.show();
8282             this.proxy.setBox(this.startBox);
8283             if(!this.dynamic){
8284                 this.proxy.setStyle('visibility', 'visible');
8285             }
8286         }
8287     },
8288
8289     // private
8290     onMouseDown : function(handle, e){
8291         if(this.enabled){
8292             e.stopEvent();
8293             this.activeHandle = handle;
8294             this.startSizing(e, handle);
8295         }
8296     },
8297
8298     // private
8299     onMouseUp : function(e){
8300         var size = this.resizeElement();
8301         this.resizing = false;
8302         this.handleOut();
8303         this.overlay.hide();
8304         this.proxy.hide();
8305         this.fireEvent("resize", this, size.width, size.height, e);
8306     },
8307
8308     // private
8309     updateChildSize : function(){
8310         
8311         if(this.resizeChild){
8312             var el = this.el;
8313             var child = this.resizeChild;
8314             var adj = this.adjustments;
8315             if(el.dom.offsetWidth){
8316                 var b = el.getSize(true);
8317                 child.setSize(b.width+adj[0], b.height+adj[1]);
8318             }
8319             // Second call here for IE
8320             // The first call enables instant resizing and
8321             // the second call corrects scroll bars if they
8322             // exist
8323             if(Roo.isIE){
8324                 setTimeout(function(){
8325                     if(el.dom.offsetWidth){
8326                         var b = el.getSize(true);
8327                         child.setSize(b.width+adj[0], b.height+adj[1]);
8328                     }
8329                 }, 10);
8330             }
8331         }
8332     },
8333
8334     // private
8335     snap : function(value, inc, min){
8336         if(!inc || !value) {
8337             return value;
8338         }
8339         var newValue = value;
8340         var m = value % inc;
8341         if(m > 0){
8342             if(m > (inc/2)){
8343                 newValue = value + (inc-m);
8344             }else{
8345                 newValue = value - m;
8346             }
8347         }
8348         return Math.max(min, newValue);
8349     },
8350
8351     // private
8352     resizeElement : function(){
8353         var box = this.proxy.getBox();
8354         if(this.updateBox){
8355             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
8356         }else{
8357             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
8358         }
8359         this.updateChildSize();
8360         if(!this.dynamic){
8361             this.proxy.hide();
8362         }
8363         return box;
8364     },
8365
8366     // private
8367     constrain : function(v, diff, m, mx){
8368         if(v - diff < m){
8369             diff = v - m;
8370         }else if(v - diff > mx){
8371             diff = mx - v;
8372         }
8373         return diff;
8374     },
8375
8376     // private
8377     onMouseMove : function(e){
8378         
8379         if(this.enabled){
8380             try{// try catch so if something goes wrong the user doesn't get hung
8381
8382             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
8383                 return;
8384             }
8385
8386             //var curXY = this.startPoint;
8387             var curSize = this.curSize || this.startBox;
8388             var x = this.startBox.x, y = this.startBox.y;
8389             var ox = x, oy = y;
8390             var w = curSize.width, h = curSize.height;
8391             var ow = w, oh = h;
8392             var mw = this.minWidth, mh = this.minHeight;
8393             var mxw = this.maxWidth, mxh = this.maxHeight;
8394             var wi = this.widthIncrement;
8395             var hi = this.heightIncrement;
8396
8397             var eventXY = e.getXY();
8398             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
8399             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
8400
8401             var pos = this.activeHandle.position;
8402
8403             switch(pos){
8404                 case "east":
8405                     w += diffX;
8406                     w = Math.min(Math.max(mw, w), mxw);
8407                     break;
8408              
8409                 case "south":
8410                     h += diffY;
8411                     h = Math.min(Math.max(mh, h), mxh);
8412                     break;
8413                 case "southeast":
8414                     w += diffX;
8415                     h += diffY;
8416                     w = Math.min(Math.max(mw, w), mxw);
8417                     h = Math.min(Math.max(mh, h), mxh);
8418                     break;
8419                 case "north":
8420                     diffY = this.constrain(h, diffY, mh, mxh);
8421                     y += diffY;
8422                     h -= diffY;
8423                     break;
8424                 case "hdrag":
8425                     
8426                     if (wi) {
8427                         var adiffX = Math.abs(diffX);
8428                         var sub = (adiffX % wi); // how much 
8429                         if (sub > (wi/2)) { // far enough to snap
8430                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
8431                         } else {
8432                             // remove difference.. 
8433                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
8434                         }
8435                     }
8436                     x += diffX;
8437                     x = Math.max(this.minX, x);
8438                     break;
8439                 case "west":
8440                     diffX = this.constrain(w, diffX, mw, mxw);
8441                     x += diffX;
8442                     w -= diffX;
8443                     break;
8444                 case "northeast":
8445                     w += diffX;
8446                     w = Math.min(Math.max(mw, w), mxw);
8447                     diffY = this.constrain(h, diffY, mh, mxh);
8448                     y += diffY;
8449                     h -= diffY;
8450                     break;
8451                 case "northwest":
8452                     diffX = this.constrain(w, diffX, mw, mxw);
8453                     diffY = this.constrain(h, diffY, mh, mxh);
8454                     y += diffY;
8455                     h -= diffY;
8456                     x += diffX;
8457                     w -= diffX;
8458                     break;
8459                case "southwest":
8460                     diffX = this.constrain(w, diffX, mw, mxw);
8461                     h += diffY;
8462                     h = Math.min(Math.max(mh, h), mxh);
8463                     x += diffX;
8464                     w -= diffX;
8465                     break;
8466             }
8467
8468             var sw = this.snap(w, wi, mw);
8469             var sh = this.snap(h, hi, mh);
8470             if(sw != w || sh != h){
8471                 switch(pos){
8472                     case "northeast":
8473                         y -= sh - h;
8474                     break;
8475                     case "north":
8476                         y -= sh - h;
8477                         break;
8478                     case "southwest":
8479                         x -= sw - w;
8480                     break;
8481                     case "west":
8482                         x -= sw - w;
8483                         break;
8484                     case "northwest":
8485                         x -= sw - w;
8486                         y -= sh - h;
8487                     break;
8488                 }
8489                 w = sw;
8490                 h = sh;
8491             }
8492
8493             if(this.preserveRatio){
8494                 switch(pos){
8495                     case "southeast":
8496                     case "east":
8497                         h = oh * (w/ow);
8498                         h = Math.min(Math.max(mh, h), mxh);
8499                         w = ow * (h/oh);
8500                        break;
8501                     case "south":
8502                         w = ow * (h/oh);
8503                         w = Math.min(Math.max(mw, w), mxw);
8504                         h = oh * (w/ow);
8505                         break;
8506                     case "northeast":
8507                         w = ow * (h/oh);
8508                         w = Math.min(Math.max(mw, w), mxw);
8509                         h = oh * (w/ow);
8510                     break;
8511                     case "north":
8512                         var tw = w;
8513                         w = ow * (h/oh);
8514                         w = Math.min(Math.max(mw, w), mxw);
8515                         h = oh * (w/ow);
8516                         x += (tw - w) / 2;
8517                         break;
8518                     case "southwest":
8519                         h = oh * (w/ow);
8520                         h = Math.min(Math.max(mh, h), mxh);
8521                         var tw = w;
8522                         w = ow * (h/oh);
8523                         x += tw - w;
8524                         break;
8525                     case "west":
8526                         var th = h;
8527                         h = oh * (w/ow);
8528                         h = Math.min(Math.max(mh, h), mxh);
8529                         y += (th - h) / 2;
8530                         var tw = w;
8531                         w = ow * (h/oh);
8532                         x += tw - w;
8533                        break;
8534                     case "northwest":
8535                         var tw = w;
8536                         var th = h;
8537                         h = oh * (w/ow);
8538                         h = Math.min(Math.max(mh, h), mxh);
8539                         w = ow * (h/oh);
8540                         y += th - h;
8541                         x += tw - w;
8542                        break;
8543
8544                 }
8545             }
8546             if (pos == 'hdrag') {
8547                 w = ow;
8548             }
8549             this.proxy.setBounds(x, y, w, h);
8550             if(this.dynamic){
8551                 this.resizeElement();
8552             }
8553             }catch(e){}
8554         }
8555         this.fireEvent("resizing", this, x, y, w, h, e);
8556     },
8557
8558     // private
8559     handleOver : function(){
8560         if(this.enabled){
8561             this.el.addClass("x-resizable-over");
8562         }
8563     },
8564
8565     // private
8566     handleOut : function(){
8567         if(!this.resizing){
8568             this.el.removeClass("x-resizable-over");
8569         }
8570     },
8571
8572     /**
8573      * Returns the element this component is bound to.
8574      * @return {Roo.Element}
8575      */
8576     getEl : function(){
8577         return this.el;
8578     },
8579
8580     /**
8581      * Returns the resizeChild element (or null).
8582      * @return {Roo.Element}
8583      */
8584     getResizeChild : function(){
8585         return this.resizeChild;
8586     },
8587     groupHandler : function()
8588     {
8589         
8590     },
8591     /**
8592      * Destroys this resizable. If the element was wrapped and
8593      * removeEl is not true then the element remains.
8594      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
8595      */
8596     destroy : function(removeEl){
8597         this.proxy.remove();
8598         if(this.overlay){
8599             this.overlay.removeAllListeners();
8600             this.overlay.remove();
8601         }
8602         var ps = Roo.Resizable.positions;
8603         for(var k in ps){
8604             if(typeof ps[k] != "function" && this[ps[k]]){
8605                 var h = this[ps[k]];
8606                 h.el.removeAllListeners();
8607                 h.el.remove();
8608             }
8609         }
8610         if(removeEl){
8611             this.el.update("");
8612             this.el.remove();
8613         }
8614     }
8615 });
8616
8617 // private
8618 // hash to map config positions to true positions
8619 Roo.Resizable.positions = {
8620     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
8621     hd: "hdrag"
8622 };
8623
8624 // private
8625 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
8626     if(!this.tpl){
8627         // only initialize the template if resizable is used
8628         var tpl = Roo.DomHelper.createTemplate(
8629             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
8630         );
8631         tpl.compile();
8632         Roo.Resizable.Handle.prototype.tpl = tpl;
8633     }
8634     this.position = pos;
8635     this.rz = rz;
8636     // show north drag fro topdra
8637     var handlepos = pos == 'hdrag' ? 'north' : pos;
8638     
8639     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
8640     if (pos == 'hdrag') {
8641         this.el.setStyle('cursor', 'pointer');
8642     }
8643     this.el.unselectable();
8644     if(transparent){
8645         this.el.setOpacity(0);
8646     }
8647     this.el.on("mousedown", this.onMouseDown, this);
8648     if(!disableTrackOver){
8649         this.el.on("mouseover", this.onMouseOver, this);
8650         this.el.on("mouseout", this.onMouseOut, this);
8651     }
8652 };
8653
8654 // private
8655 Roo.Resizable.Handle.prototype = {
8656     afterResize : function(rz){
8657         Roo.log('after?');
8658         // do nothing
8659     },
8660     // private
8661     onMouseDown : function(e){
8662         this.rz.onMouseDown(this, e);
8663     },
8664     // private
8665     onMouseOver : function(e){
8666         this.rz.handleOver(this, e);
8667     },
8668     // private
8669     onMouseOut : function(e){
8670         this.rz.handleOut(this, e);
8671     }
8672 };/*
8673  * Based on:
8674  * Ext JS Library 1.1.1
8675  * Copyright(c) 2006-2007, Ext JS, LLC.
8676  *
8677  * Originally Released Under LGPL - original licence link has changed is not relivant.
8678  *
8679  * Fork - LGPL
8680  * <script type="text/javascript">
8681  */
8682
8683 /**
8684  * @class Roo.Editor
8685  * @extends Roo.Component
8686  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
8687  * @constructor
8688  * Create a new Editor
8689  * @param {Roo.form.Field} field The Field object (or descendant)
8690  * @param {Object} config The config object
8691  */
8692 Roo.Editor = function(field, config){
8693     Roo.Editor.superclass.constructor.call(this, config);
8694     this.field = field;
8695     this.addEvents({
8696         /**
8697              * @event beforestartedit
8698              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
8699              * false from the handler of this event.
8700              * @param {Editor} this
8701              * @param {Roo.Element} boundEl The underlying element bound to this editor
8702              * @param {Mixed} value The field value being set
8703              */
8704         "beforestartedit" : true,
8705         /**
8706              * @event startedit
8707              * Fires when this editor is displayed
8708              * @param {Roo.Element} boundEl The underlying element bound to this editor
8709              * @param {Mixed} value The starting field value
8710              */
8711         "startedit" : true,
8712         /**
8713              * @event beforecomplete
8714              * Fires after a change has been made to the field, but before the change is reflected in the underlying
8715              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
8716              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
8717              * event will not fire since no edit actually occurred.
8718              * @param {Editor} this
8719              * @param {Mixed} value The current field value
8720              * @param {Mixed} startValue The original field value
8721              */
8722         "beforecomplete" : true,
8723         /**
8724              * @event complete
8725              * Fires after editing is complete and any changed value has been written to the underlying field.
8726              * @param {Editor} this
8727              * @param {Mixed} value The current field value
8728              * @param {Mixed} startValue The original field value
8729              */
8730         "complete" : true,
8731         /**
8732          * @event specialkey
8733          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
8734          * {@link Roo.EventObject#getKey} to determine which key was pressed.
8735          * @param {Roo.form.Field} this
8736          * @param {Roo.EventObject} e The event object
8737          */
8738         "specialkey" : true
8739     });
8740 };
8741
8742 Roo.extend(Roo.Editor, Roo.Component, {
8743     /**
8744      * @cfg {Boolean/String} autosize
8745      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
8746      * or "height" to adopt the height only (defaults to false)
8747      */
8748     /**
8749      * @cfg {Boolean} revertInvalid
8750      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
8751      * validation fails (defaults to true)
8752      */
8753     /**
8754      * @cfg {Boolean} ignoreNoChange
8755      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
8756      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
8757      * will never be ignored.
8758      */
8759     /**
8760      * @cfg {Boolean} hideEl
8761      * False to keep the bound element visible while the editor is displayed (defaults to true)
8762      */
8763     /**
8764      * @cfg {Mixed} value
8765      * The data value of the underlying field (defaults to "")
8766      */
8767     value : "",
8768     /**
8769      * @cfg {String} alignment
8770      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
8771      */
8772     alignment: "c-c?",
8773     /**
8774      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
8775      * for bottom-right shadow (defaults to "frame")
8776      */
8777     shadow : "frame",
8778     /**
8779      * @cfg {Boolean} constrain True to constrain the editor to the viewport
8780      */
8781     constrain : false,
8782     /**
8783      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
8784      */
8785     completeOnEnter : false,
8786     /**
8787      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
8788      */
8789     cancelOnEsc : false,
8790     /**
8791      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
8792      */
8793     updateEl : false,
8794
8795     // private
8796     onRender : function(ct, position){
8797         this.el = new Roo.Layer({
8798             shadow: this.shadow,
8799             cls: "x-editor",
8800             parentEl : ct,
8801             shim : this.shim,
8802             shadowOffset:4,
8803             id: this.id,
8804             constrain: this.constrain
8805         });
8806         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
8807         if(this.field.msgTarget != 'title'){
8808             this.field.msgTarget = 'qtip';
8809         }
8810         this.field.render(this.el);
8811         if(Roo.isGecko){
8812             this.field.el.dom.setAttribute('autocomplete', 'off');
8813         }
8814         this.field.on("specialkey", this.onSpecialKey, this);
8815         if(this.swallowKeys){
8816             this.field.el.swallowEvent(['keydown','keypress']);
8817         }
8818         this.field.show();
8819         this.field.on("blur", this.onBlur, this);
8820         if(this.field.grow){
8821             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
8822         }
8823     },
8824
8825     onSpecialKey : function(field, e)
8826     {
8827         //Roo.log('editor onSpecialKey');
8828         if(this.completeOnEnter && e.getKey() == e.ENTER){
8829             e.stopEvent();
8830             this.completeEdit();
8831             return;
8832         }
8833         // do not fire special key otherwise it might hide close the editor...
8834         if(e.getKey() == e.ENTER){    
8835             return;
8836         }
8837         if(this.cancelOnEsc && e.getKey() == e.ESC){
8838             this.cancelEdit();
8839             return;
8840         } 
8841         this.fireEvent('specialkey', field, e);
8842     
8843     },
8844
8845     /**
8846      * Starts the editing process and shows the editor.
8847      * @param {String/HTMLElement/Element} el The element to edit
8848      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
8849       * to the innerHTML of el.
8850      */
8851     startEdit : function(el, value){
8852         if(this.editing){
8853             this.completeEdit();
8854         }
8855         this.boundEl = Roo.get(el);
8856         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
8857         if(!this.rendered){
8858             this.render(this.parentEl || document.body);
8859         }
8860         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
8861             return;
8862         }
8863         this.startValue = v;
8864         this.field.setValue(v);
8865         if(this.autoSize){
8866             var sz = this.boundEl.getSize();
8867             switch(this.autoSize){
8868                 case "width":
8869                 this.setSize(sz.width,  "");
8870                 break;
8871                 case "height":
8872                 this.setSize("",  sz.height);
8873                 break;
8874                 default:
8875                 this.setSize(sz.width,  sz.height);
8876             }
8877         }
8878         this.el.alignTo(this.boundEl, this.alignment);
8879         this.editing = true;
8880         if(Roo.QuickTips){
8881             Roo.QuickTips.disable();
8882         }
8883         this.show();
8884     },
8885
8886     /**
8887      * Sets the height and width of this editor.
8888      * @param {Number} width The new width
8889      * @param {Number} height The new height
8890      */
8891     setSize : function(w, h){
8892         this.field.setSize(w, h);
8893         if(this.el){
8894             this.el.sync();
8895         }
8896     },
8897
8898     /**
8899      * Realigns the editor to the bound field based on the current alignment config value.
8900      */
8901     realign : function(){
8902         this.el.alignTo(this.boundEl, this.alignment);
8903     },
8904
8905     /**
8906      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
8907      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
8908      */
8909     completeEdit : function(remainVisible){
8910         if(!this.editing){
8911             return;
8912         }
8913         var v = this.getValue();
8914         if(this.revertInvalid !== false && !this.field.isValid()){
8915             v = this.startValue;
8916             this.cancelEdit(true);
8917         }
8918         if(String(v) === String(this.startValue) && this.ignoreNoChange){
8919             this.editing = false;
8920             this.hide();
8921             return;
8922         }
8923         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
8924             this.editing = false;
8925             if(this.updateEl && this.boundEl){
8926                 this.boundEl.update(v);
8927             }
8928             if(remainVisible !== true){
8929                 this.hide();
8930             }
8931             this.fireEvent("complete", this, v, this.startValue);
8932         }
8933     },
8934
8935     // private
8936     onShow : function(){
8937         this.el.show();
8938         if(this.hideEl !== false){
8939             this.boundEl.hide();
8940         }
8941         this.field.show();
8942         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
8943             this.fixIEFocus = true;
8944             this.deferredFocus.defer(50, this);
8945         }else{
8946             this.field.focus();
8947         }
8948         this.fireEvent("startedit", this.boundEl, this.startValue);
8949     },
8950
8951     deferredFocus : function(){
8952         if(this.editing){
8953             this.field.focus();
8954         }
8955     },
8956
8957     /**
8958      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
8959      * reverted to the original starting value.
8960      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
8961      * cancel (defaults to false)
8962      */
8963     cancelEdit : function(remainVisible){
8964         if(this.editing){
8965             this.setValue(this.startValue);
8966             if(remainVisible !== true){
8967                 this.hide();
8968             }
8969         }
8970     },
8971
8972     // private
8973     onBlur : function(){
8974         if(this.allowBlur !== true && this.editing){
8975             this.completeEdit();
8976         }
8977     },
8978
8979     // private
8980     onHide : function(){
8981         if(this.editing){
8982             this.completeEdit();
8983             return;
8984         }
8985         this.field.blur();
8986         if(this.field.collapse){
8987             this.field.collapse();
8988         }
8989         this.el.hide();
8990         if(this.hideEl !== false){
8991             this.boundEl.show();
8992         }
8993         if(Roo.QuickTips){
8994             Roo.QuickTips.enable();
8995         }
8996     },
8997
8998     /**
8999      * Sets the data value of the editor
9000      * @param {Mixed} value Any valid value supported by the underlying field
9001      */
9002     setValue : function(v){
9003         this.field.setValue(v);
9004     },
9005
9006     /**
9007      * Gets the data value of the editor
9008      * @return {Mixed} The data value
9009      */
9010     getValue : function(){
9011         return this.field.getValue();
9012     }
9013 });/*
9014  * Based on:
9015  * Ext JS Library 1.1.1
9016  * Copyright(c) 2006-2007, Ext JS, LLC.
9017  *
9018  * Originally Released Under LGPL - original licence link has changed is not relivant.
9019  *
9020  * Fork - LGPL
9021  * <script type="text/javascript">
9022  */
9023  
9024 /**
9025  * @class Roo.BasicDialog
9026  * @extends Roo.util.Observable
9027  * @parent none builder
9028  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
9029  * <pre><code>
9030 var dlg = new Roo.BasicDialog("my-dlg", {
9031     height: 200,
9032     width: 300,
9033     minHeight: 100,
9034     minWidth: 150,
9035     modal: true,
9036     proxyDrag: true,
9037     shadow: true
9038 });
9039 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
9040 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
9041 dlg.addButton('Cancel', dlg.hide, dlg);
9042 dlg.show();
9043 </code></pre>
9044   <b>A Dialog should always be a direct child of the body element.</b>
9045  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
9046  * @cfg {String} title Default text to display in the title bar (defaults to null)
9047  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9048  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
9049  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
9050  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
9051  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
9052  * (defaults to null with no animation)
9053  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
9054  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
9055  * property for valid values (defaults to 'all')
9056  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
9057  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
9058  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
9059  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
9060  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
9061  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
9062  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
9063  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
9064  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
9065  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
9066  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
9067  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
9068  * draggable = true (defaults to false)
9069  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
9070  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
9071  * shadow (defaults to false)
9072  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
9073  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
9074  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
9075  * @cfg {Array} buttons Array of buttons
9076  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
9077  * @constructor
9078  * Create a new BasicDialog.
9079  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
9080  * @param {Object} config Configuration options
9081  */
9082 Roo.BasicDialog = function(el, config){
9083     this.el = Roo.get(el);
9084     var dh = Roo.DomHelper;
9085     if(!this.el && config && config.autoCreate){
9086         if(typeof config.autoCreate == "object"){
9087             if(!config.autoCreate.id){
9088                 config.autoCreate.id = el;
9089             }
9090             this.el = dh.append(document.body,
9091                         config.autoCreate, true);
9092         }else{
9093             this.el = dh.append(document.body,
9094                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
9095         }
9096     }
9097     el = this.el;
9098     el.setDisplayed(true);
9099     el.hide = this.hideAction;
9100     this.id = el.id;
9101     el.addClass("x-dlg");
9102
9103     Roo.apply(this, config);
9104
9105     this.proxy = el.createProxy("x-dlg-proxy");
9106     this.proxy.hide = this.hideAction;
9107     this.proxy.setOpacity(.5);
9108     this.proxy.hide();
9109
9110     if(config.width){
9111         el.setWidth(config.width);
9112     }
9113     if(config.height){
9114         el.setHeight(config.height);
9115     }
9116     this.size = el.getSize();
9117     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
9118         this.xy = [config.x,config.y];
9119     }else{
9120         this.xy = el.getCenterXY(true);
9121     }
9122     /** The header element @type Roo.Element */
9123     this.header = el.child("> .x-dlg-hd");
9124     /** The body element @type Roo.Element */
9125     this.body = el.child("> .x-dlg-bd");
9126     /** The footer element @type Roo.Element */
9127     this.footer = el.child("> .x-dlg-ft");
9128
9129     if(!this.header){
9130         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
9131     }
9132     if(!this.body){
9133         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
9134     }
9135
9136     this.header.unselectable();
9137     if(this.title){
9138         this.header.update(this.title);
9139     }
9140     // this element allows the dialog to be focused for keyboard event
9141     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
9142     this.focusEl.swallowEvent("click", true);
9143
9144     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
9145
9146     // wrap the body and footer for special rendering
9147     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
9148     if(this.footer){
9149         this.bwrap.dom.appendChild(this.footer.dom);
9150     }
9151
9152     this.bg = this.el.createChild({
9153         tag: "div", cls:"x-dlg-bg",
9154         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
9155     });
9156     this.centerBg = this.bg.child("div.x-dlg-bg-center");
9157
9158
9159     if(this.autoScroll !== false && !this.autoTabs){
9160         this.body.setStyle("overflow", "auto");
9161     }
9162
9163     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
9164
9165     if(this.closable !== false){
9166         this.el.addClass("x-dlg-closable");
9167         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
9168         this.close.on("click", this.closeClick, this);
9169         this.close.addClassOnOver("x-dlg-close-over");
9170     }
9171     if(this.collapsible !== false){
9172         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
9173         this.collapseBtn.on("click", this.collapseClick, this);
9174         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
9175         this.header.on("dblclick", this.collapseClick, this);
9176     }
9177     if(this.resizable !== false){
9178         this.el.addClass("x-dlg-resizable");
9179         this.resizer = new Roo.Resizable(el, {
9180             minWidth: this.minWidth || 80,
9181             minHeight:this.minHeight || 80,
9182             handles: this.resizeHandles || "all",
9183             pinned: true
9184         });
9185         this.resizer.on("beforeresize", this.beforeResize, this);
9186         this.resizer.on("resize", this.onResize, this);
9187     }
9188     if(this.draggable !== false){
9189         el.addClass("x-dlg-draggable");
9190         if (!this.proxyDrag) {
9191             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
9192         }
9193         else {
9194             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
9195         }
9196         dd.setHandleElId(this.header.id);
9197         dd.endDrag = this.endMove.createDelegate(this);
9198         dd.startDrag = this.startMove.createDelegate(this);
9199         dd.onDrag = this.onDrag.createDelegate(this);
9200         dd.scroll = false;
9201         this.dd = dd;
9202     }
9203     if(this.modal){
9204         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
9205         this.mask.enableDisplayMode("block");
9206         this.mask.hide();
9207         this.el.addClass("x-dlg-modal");
9208     }
9209     if(this.shadow){
9210         this.shadow = new Roo.Shadow({
9211             mode : typeof this.shadow == "string" ? this.shadow : "sides",
9212             offset : this.shadowOffset
9213         });
9214     }else{
9215         this.shadowOffset = 0;
9216     }
9217     if(Roo.useShims && this.shim !== false){
9218         this.shim = this.el.createShim();
9219         this.shim.hide = this.hideAction;
9220         this.shim.hide();
9221     }else{
9222         this.shim = false;
9223     }
9224     if(this.autoTabs){
9225         this.initTabs();
9226     }
9227     if (this.buttons) { 
9228         var bts= this.buttons;
9229         this.buttons = [];
9230         Roo.each(bts, function(b) {
9231             this.addButton(b);
9232         }, this);
9233     }
9234     
9235     
9236     this.addEvents({
9237         /**
9238          * @event keydown
9239          * Fires when a key is pressed
9240          * @param {Roo.BasicDialog} this
9241          * @param {Roo.EventObject} e
9242          */
9243         "keydown" : true,
9244         /**
9245          * @event move
9246          * Fires when this dialog is moved by the user.
9247          * @param {Roo.BasicDialog} this
9248          * @param {Number} x The new page X
9249          * @param {Number} y The new page Y
9250          */
9251         "move" : true,
9252         /**
9253          * @event resize
9254          * Fires when this dialog is resized by the user.
9255          * @param {Roo.BasicDialog} this
9256          * @param {Number} width The new width
9257          * @param {Number} height The new height
9258          */
9259         "resize" : true,
9260         /**
9261          * @event beforehide
9262          * Fires before this dialog is hidden.
9263          * @param {Roo.BasicDialog} this
9264          */
9265         "beforehide" : true,
9266         /**
9267          * @event hide
9268          * Fires when this dialog is hidden.
9269          * @param {Roo.BasicDialog} this
9270          */
9271         "hide" : true,
9272         /**
9273          * @event beforeshow
9274          * Fires before this dialog is shown.
9275          * @param {Roo.BasicDialog} this
9276          */
9277         "beforeshow" : true,
9278         /**
9279          * @event show
9280          * Fires when this dialog is shown.
9281          * @param {Roo.BasicDialog} this
9282          */
9283         "show" : true
9284     });
9285     el.on("keydown", this.onKeyDown, this);
9286     el.on("mousedown", this.toFront, this);
9287     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
9288     this.el.hide();
9289     Roo.DialogManager.register(this);
9290     Roo.BasicDialog.superclass.constructor.call(this);
9291 };
9292
9293 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
9294     shadowOffset: Roo.isIE ? 6 : 5,
9295     minHeight: 80,
9296     minWidth: 200,
9297     minButtonWidth: 75,
9298     defaultButton: null,
9299     buttonAlign: "right",
9300     tabTag: 'div',
9301     firstShow: true,
9302
9303     /**
9304      * Sets the dialog title text
9305      * @param {String} text The title text to display
9306      * @return {Roo.BasicDialog} this
9307      */
9308     setTitle : function(text){
9309         this.header.update(text);
9310         return this;
9311     },
9312
9313     // private
9314     closeClick : function(){
9315         this.hide();
9316     },
9317
9318     // private
9319     collapseClick : function(){
9320         this[this.collapsed ? "expand" : "collapse"]();
9321     },
9322
9323     /**
9324      * Collapses the dialog to its minimized state (only the title bar is visible).
9325      * Equivalent to the user clicking the collapse dialog button.
9326      */
9327     collapse : function(){
9328         if(!this.collapsed){
9329             this.collapsed = true;
9330             this.el.addClass("x-dlg-collapsed");
9331             this.restoreHeight = this.el.getHeight();
9332             this.resizeTo(this.el.getWidth(), this.header.getHeight());
9333         }
9334     },
9335
9336     /**
9337      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
9338      * clicking the expand dialog button.
9339      */
9340     expand : function(){
9341         if(this.collapsed){
9342             this.collapsed = false;
9343             this.el.removeClass("x-dlg-collapsed");
9344             this.resizeTo(this.el.getWidth(), this.restoreHeight);
9345         }
9346     },
9347
9348     /**
9349      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
9350      * @return {Roo.TabPanel} The tabs component
9351      */
9352     initTabs : function(){
9353         var tabs = this.getTabs();
9354         while(tabs.getTab(0)){
9355             tabs.removeTab(0);
9356         }
9357         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
9358             var dom = el.dom;
9359             tabs.addTab(Roo.id(dom), dom.title);
9360             dom.title = "";
9361         });
9362         tabs.activate(0);
9363         return tabs;
9364     },
9365
9366     // private
9367     beforeResize : function(){
9368         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
9369     },
9370
9371     // private
9372     onResize : function(){
9373         this.refreshSize();
9374         this.syncBodyHeight();
9375         this.adjustAssets();
9376         this.focus();
9377         this.fireEvent("resize", this, this.size.width, this.size.height);
9378     },
9379
9380     // private
9381     onKeyDown : function(e){
9382         if(this.isVisible()){
9383             this.fireEvent("keydown", this, e);
9384         }
9385     },
9386
9387     /**
9388      * Resizes the dialog.
9389      * @param {Number} width
9390      * @param {Number} height
9391      * @return {Roo.BasicDialog} this
9392      */
9393     resizeTo : function(width, height){
9394         this.el.setSize(width, height);
9395         this.size = {width: width, height: height};
9396         this.syncBodyHeight();
9397         if(this.fixedcenter){
9398             this.center();
9399         }
9400         if(this.isVisible()){
9401             this.constrainXY();
9402             this.adjustAssets();
9403         }
9404         this.fireEvent("resize", this, width, height);
9405         return this;
9406     },
9407
9408
9409     /**
9410      * Resizes the dialog to fit the specified content size.
9411      * @param {Number} width
9412      * @param {Number} height
9413      * @return {Roo.BasicDialog} this
9414      */
9415     setContentSize : function(w, h){
9416         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
9417         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
9418         //if(!this.el.isBorderBox()){
9419             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
9420             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
9421         //}
9422         if(this.tabs){
9423             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
9424             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
9425         }
9426         this.resizeTo(w, h);
9427         return this;
9428     },
9429
9430     /**
9431      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
9432      * executed in response to a particular key being pressed while the dialog is active.
9433      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
9434      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9435      * @param {Function} fn The function to call
9436      * @param {Object} scope (optional) The scope of the function
9437      * @return {Roo.BasicDialog} this
9438      */
9439     addKeyListener : function(key, fn, scope){
9440         var keyCode, shift, ctrl, alt;
9441         if(typeof key == "object" && !(key instanceof Array)){
9442             keyCode = key["key"];
9443             shift = key["shift"];
9444             ctrl = key["ctrl"];
9445             alt = key["alt"];
9446         }else{
9447             keyCode = key;
9448         }
9449         var handler = function(dlg, e){
9450             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
9451                 var k = e.getKey();
9452                 if(keyCode instanceof Array){
9453                     for(var i = 0, len = keyCode.length; i < len; i++){
9454                         if(keyCode[i] == k){
9455                           fn.call(scope || window, dlg, k, e);
9456                           return;
9457                         }
9458                     }
9459                 }else{
9460                     if(k == keyCode){
9461                         fn.call(scope || window, dlg, k, e);
9462                     }
9463                 }
9464             }
9465         };
9466         this.on("keydown", handler);
9467         return this;
9468     },
9469
9470     /**
9471      * Returns the TabPanel component (creates it if it doesn't exist).
9472      * Note: If you wish to simply check for the existence of tabs without creating them,
9473      * check for a null 'tabs' property.
9474      * @return {Roo.TabPanel} The tabs component
9475      */
9476     getTabs : function(){
9477         if(!this.tabs){
9478             this.el.addClass("x-dlg-auto-tabs");
9479             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
9480             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
9481         }
9482         return this.tabs;
9483     },
9484
9485     /**
9486      * Adds a button to the footer section of the dialog.
9487      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
9488      * object or a valid Roo.DomHelper element config
9489      * @param {Function} handler The function called when the button is clicked
9490      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
9491      * @return {Roo.Button} The new button
9492      */
9493     addButton : function(config, handler, scope){
9494         var dh = Roo.DomHelper;
9495         if(!this.footer){
9496             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
9497         }
9498         if(!this.btnContainer){
9499             var tb = this.footer.createChild({
9500
9501                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
9502                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
9503             }, null, true);
9504             this.btnContainer = tb.firstChild.firstChild.firstChild;
9505         }
9506         var bconfig = {
9507             handler: handler,
9508             scope: scope,
9509             minWidth: this.minButtonWidth,
9510             hideParent:true
9511         };
9512         if(typeof config == "string"){
9513             bconfig.text = config;
9514         }else{
9515             if(config.tag){
9516                 bconfig.dhconfig = config;
9517             }else{
9518                 Roo.apply(bconfig, config);
9519             }
9520         }
9521         var fc = false;
9522         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
9523             bconfig.position = Math.max(0, bconfig.position);
9524             fc = this.btnContainer.childNodes[bconfig.position];
9525         }
9526          
9527         var btn = new Roo.Button(
9528             fc ? 
9529                 this.btnContainer.insertBefore(document.createElement("td"),fc)
9530                 : this.btnContainer.appendChild(document.createElement("td")),
9531             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
9532             bconfig
9533         );
9534         this.syncBodyHeight();
9535         if(!this.buttons){
9536             /**
9537              * Array of all the buttons that have been added to this dialog via addButton
9538              * @type Array
9539              */
9540             this.buttons = [];
9541         }
9542         this.buttons.push(btn);
9543         return btn;
9544     },
9545
9546     /**
9547      * Sets the default button to be focused when the dialog is displayed.
9548      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
9549      * @return {Roo.BasicDialog} this
9550      */
9551     setDefaultButton : function(btn){
9552         this.defaultButton = btn;
9553         return this;
9554     },
9555
9556     // private
9557     getHeaderFooterHeight : function(safe){
9558         var height = 0;
9559         if(this.header){
9560            height += this.header.getHeight();
9561         }
9562         if(this.footer){
9563            var fm = this.footer.getMargins();
9564             height += (this.footer.getHeight()+fm.top+fm.bottom);
9565         }
9566         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
9567         height += this.centerBg.getPadding("tb");
9568         return height;
9569     },
9570
9571     // private
9572     syncBodyHeight : function()
9573     {
9574         var bd = this.body, // the text
9575             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
9576             bw = this.bwrap;
9577         var height = this.size.height - this.getHeaderFooterHeight(false);
9578         bd.setHeight(height-bd.getMargins("tb"));
9579         var hh = this.header.getHeight();
9580         var h = this.size.height-hh;
9581         cb.setHeight(h);
9582         
9583         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
9584         bw.setHeight(h-cb.getPadding("tb"));
9585         
9586         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
9587         bd.setWidth(bw.getWidth(true));
9588         if(this.tabs){
9589             this.tabs.syncHeight();
9590             if(Roo.isIE){
9591                 this.tabs.el.repaint();
9592             }
9593         }
9594     },
9595
9596     /**
9597      * Restores the previous state of the dialog if Roo.state is configured.
9598      * @return {Roo.BasicDialog} this
9599      */
9600     restoreState : function(){
9601         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
9602         if(box && box.width){
9603             this.xy = [box.x, box.y];
9604             this.resizeTo(box.width, box.height);
9605         }
9606         return this;
9607     },
9608
9609     // private
9610     beforeShow : function(){
9611         this.expand();
9612         if(this.fixedcenter){
9613             this.xy = this.el.getCenterXY(true);
9614         }
9615         if(this.modal){
9616             Roo.get(document.body).addClass("x-body-masked");
9617             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9618             this.mask.show();
9619         }
9620         this.constrainXY();
9621     },
9622
9623     // private
9624     animShow : function(){
9625         var b = Roo.get(this.animateTarget).getBox();
9626         this.proxy.setSize(b.width, b.height);
9627         this.proxy.setLocation(b.x, b.y);
9628         this.proxy.show();
9629         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
9630                     true, .35, this.showEl.createDelegate(this));
9631     },
9632
9633     /**
9634      * Shows the dialog.
9635      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
9636      * @return {Roo.BasicDialog} this
9637      */
9638     show : function(animateTarget){
9639         if (this.fireEvent("beforeshow", this) === false){
9640             return;
9641         }
9642         if(this.syncHeightBeforeShow){
9643             this.syncBodyHeight();
9644         }else if(this.firstShow){
9645             this.firstShow = false;
9646             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
9647         }
9648         this.animateTarget = animateTarget || this.animateTarget;
9649         if(!this.el.isVisible()){
9650             this.beforeShow();
9651             if(this.animateTarget && Roo.get(this.animateTarget)){
9652                 this.animShow();
9653             }else{
9654                 this.showEl();
9655             }
9656         }
9657         return this;
9658     },
9659
9660     // private
9661     showEl : function(){
9662         this.proxy.hide();
9663         this.el.setXY(this.xy);
9664         this.el.show();
9665         this.adjustAssets(true);
9666         this.toFront();
9667         this.focus();
9668         // IE peekaboo bug - fix found by Dave Fenwick
9669         if(Roo.isIE){
9670             this.el.repaint();
9671         }
9672         this.fireEvent("show", this);
9673     },
9674
9675     /**
9676      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
9677      * dialog itself will receive focus.
9678      */
9679     focus : function(){
9680         if(this.defaultButton){
9681             this.defaultButton.focus();
9682         }else{
9683             this.focusEl.focus();
9684         }
9685     },
9686
9687     // private
9688     constrainXY : function(){
9689         if(this.constraintoviewport !== false){
9690             if(!this.viewSize){
9691                 if(this.container){
9692                     var s = this.container.getSize();
9693                     this.viewSize = [s.width, s.height];
9694                 }else{
9695                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
9696                 }
9697             }
9698             var s = Roo.get(this.container||document).getScroll();
9699
9700             var x = this.xy[0], y = this.xy[1];
9701             var w = this.size.width, h = this.size.height;
9702             var vw = this.viewSize[0], vh = this.viewSize[1];
9703             // only move it if it needs it
9704             var moved = false;
9705             // first validate right/bottom
9706             if(x + w > vw+s.left){
9707                 x = vw - w;
9708                 moved = true;
9709             }
9710             if(y + h > vh+s.top){
9711                 y = vh - h;
9712                 moved = true;
9713             }
9714             // then make sure top/left isn't negative
9715             if(x < s.left){
9716                 x = s.left;
9717                 moved = true;
9718             }
9719             if(y < s.top){
9720                 y = s.top;
9721                 moved = true;
9722             }
9723             if(moved){
9724                 // cache xy
9725                 this.xy = [x, y];
9726                 if(this.isVisible()){
9727                     this.el.setLocation(x, y);
9728                     this.adjustAssets();
9729                 }
9730             }
9731         }
9732     },
9733
9734     // private
9735     onDrag : function(){
9736         if(!this.proxyDrag){
9737             this.xy = this.el.getXY();
9738             this.adjustAssets();
9739         }
9740     },
9741
9742     // private
9743     adjustAssets : function(doShow){
9744         var x = this.xy[0], y = this.xy[1];
9745         var w = this.size.width, h = this.size.height;
9746         if(doShow === true){
9747             if(this.shadow){
9748                 this.shadow.show(this.el);
9749             }
9750             if(this.shim){
9751                 this.shim.show();
9752             }
9753         }
9754         if(this.shadow && this.shadow.isVisible()){
9755             this.shadow.show(this.el);
9756         }
9757         if(this.shim && this.shim.isVisible()){
9758             this.shim.setBounds(x, y, w, h);
9759         }
9760     },
9761
9762     // private
9763     adjustViewport : function(w, h){
9764         if(!w || !h){
9765             w = Roo.lib.Dom.getViewWidth();
9766             h = Roo.lib.Dom.getViewHeight();
9767         }
9768         // cache the size
9769         this.viewSize = [w, h];
9770         if(this.modal && this.mask.isVisible()){
9771             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
9772             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
9773         }
9774         if(this.isVisible()){
9775             this.constrainXY();
9776         }
9777     },
9778
9779     /**
9780      * Destroys this dialog and all its supporting elements (including any tabs, shim,
9781      * shadow, proxy, mask, etc.)  Also removes all event listeners.
9782      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
9783      */
9784     destroy : function(removeEl){
9785         if(this.isVisible()){
9786             this.animateTarget = null;
9787             this.hide();
9788         }
9789         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
9790         if(this.tabs){
9791             this.tabs.destroy(removeEl);
9792         }
9793         Roo.destroy(
9794              this.shim,
9795              this.proxy,
9796              this.resizer,
9797              this.close,
9798              this.mask
9799         );
9800         if(this.dd){
9801             this.dd.unreg();
9802         }
9803         if(this.buttons){
9804            for(var i = 0, len = this.buttons.length; i < len; i++){
9805                this.buttons[i].destroy();
9806            }
9807         }
9808         this.el.removeAllListeners();
9809         if(removeEl === true){
9810             this.el.update("");
9811             this.el.remove();
9812         }
9813         Roo.DialogManager.unregister(this);
9814     },
9815
9816     // private
9817     startMove : function(){
9818         if(this.proxyDrag){
9819             this.proxy.show();
9820         }
9821         if(this.constraintoviewport !== false){
9822             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
9823         }
9824     },
9825
9826     // private
9827     endMove : function(){
9828         if(!this.proxyDrag){
9829             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
9830         }else{
9831             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
9832             this.proxy.hide();
9833         }
9834         this.refreshSize();
9835         this.adjustAssets();
9836         this.focus();
9837         this.fireEvent("move", this, this.xy[0], this.xy[1]);
9838     },
9839
9840     /**
9841      * Brings this dialog to the front of any other visible dialogs
9842      * @return {Roo.BasicDialog} this
9843      */
9844     toFront : function(){
9845         Roo.DialogManager.bringToFront(this);
9846         return this;
9847     },
9848
9849     /**
9850      * Sends this dialog to the back (under) of any other visible dialogs
9851      * @return {Roo.BasicDialog} this
9852      */
9853     toBack : function(){
9854         Roo.DialogManager.sendToBack(this);
9855         return this;
9856     },
9857
9858     /**
9859      * Centers this dialog in the viewport
9860      * @return {Roo.BasicDialog} this
9861      */
9862     center : function(){
9863         var xy = this.el.getCenterXY(true);
9864         this.moveTo(xy[0], xy[1]);
9865         return this;
9866     },
9867
9868     /**
9869      * Moves the dialog's top-left corner to the specified point
9870      * @param {Number} x
9871      * @param {Number} y
9872      * @return {Roo.BasicDialog} this
9873      */
9874     moveTo : function(x, y){
9875         this.xy = [x,y];
9876         if(this.isVisible()){
9877             this.el.setXY(this.xy);
9878             this.adjustAssets();
9879         }
9880         return this;
9881     },
9882
9883     /**
9884      * Aligns the dialog to the specified element
9885      * @param {String/HTMLElement/Roo.Element} element The element to align to.
9886      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
9887      * @param {Array} offsets (optional) Offset the positioning by [x, y]
9888      * @return {Roo.BasicDialog} this
9889      */
9890     alignTo : function(element, position, offsets){
9891         this.xy = this.el.getAlignToXY(element, position, offsets);
9892         if(this.isVisible()){
9893             this.el.setXY(this.xy);
9894             this.adjustAssets();
9895         }
9896         return this;
9897     },
9898
9899     /**
9900      * Anchors an element to another element and realigns it when the window is resized.
9901      * @param {String/HTMLElement/Roo.Element} element The element to align to.
9902      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
9903      * @param {Array} offsets (optional) Offset the positioning by [x, y]
9904      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
9905      * is a number, it is used as the buffer delay (defaults to 50ms).
9906      * @return {Roo.BasicDialog} this
9907      */
9908     anchorTo : function(el, alignment, offsets, monitorScroll){
9909         var action = function(){
9910             this.alignTo(el, alignment, offsets);
9911         };
9912         Roo.EventManager.onWindowResize(action, this);
9913         var tm = typeof monitorScroll;
9914         if(tm != 'undefined'){
9915             Roo.EventManager.on(window, 'scroll', action, this,
9916                 {buffer: tm == 'number' ? monitorScroll : 50});
9917         }
9918         action.call(this);
9919         return this;
9920     },
9921
9922     /**
9923      * Returns true if the dialog is visible
9924      * @return {Boolean}
9925      */
9926     isVisible : function(){
9927         return this.el.isVisible();
9928     },
9929
9930     // private
9931     animHide : function(callback){
9932         var b = Roo.get(this.animateTarget).getBox();
9933         this.proxy.show();
9934         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
9935         this.el.hide();
9936         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
9937                     this.hideEl.createDelegate(this, [callback]));
9938     },
9939
9940     /**
9941      * Hides the dialog.
9942      * @param {Function} callback (optional) Function to call when the dialog is hidden
9943      * @return {Roo.BasicDialog} this
9944      */
9945     hide : function(callback){
9946         if (this.fireEvent("beforehide", this) === false){
9947             return;
9948         }
9949         if(this.shadow){
9950             this.shadow.hide();
9951         }
9952         if(this.shim) {
9953           this.shim.hide();
9954         }
9955         // sometimes animateTarget seems to get set.. causing problems...
9956         // this just double checks..
9957         if(this.animateTarget && Roo.get(this.animateTarget)) {
9958            this.animHide(callback);
9959         }else{
9960             this.el.hide();
9961             this.hideEl(callback);
9962         }
9963         return this;
9964     },
9965
9966     // private
9967     hideEl : function(callback){
9968         this.proxy.hide();
9969         if(this.modal){
9970             this.mask.hide();
9971             Roo.get(document.body).removeClass("x-body-masked");
9972         }
9973         this.fireEvent("hide", this);
9974         if(typeof callback == "function"){
9975             callback();
9976         }
9977     },
9978
9979     // private
9980     hideAction : function(){
9981         this.setLeft("-10000px");
9982         this.setTop("-10000px");
9983         this.setStyle("visibility", "hidden");
9984     },
9985
9986     // private
9987     refreshSize : function(){
9988         this.size = this.el.getSize();
9989         this.xy = this.el.getXY();
9990         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
9991     },
9992
9993     // private
9994     // z-index is managed by the DialogManager and may be overwritten at any time
9995     setZIndex : function(index){
9996         if(this.modal){
9997             this.mask.setStyle("z-index", index);
9998         }
9999         if(this.shim){
10000             this.shim.setStyle("z-index", ++index);
10001         }
10002         if(this.shadow){
10003             this.shadow.setZIndex(++index);
10004         }
10005         this.el.setStyle("z-index", ++index);
10006         if(this.proxy){
10007             this.proxy.setStyle("z-index", ++index);
10008         }
10009         if(this.resizer){
10010             this.resizer.proxy.setStyle("z-index", ++index);
10011         }
10012
10013         this.lastZIndex = index;
10014     },
10015
10016     /**
10017      * Returns the element for this dialog
10018      * @return {Roo.Element} The underlying dialog Element
10019      */
10020     getEl : function(){
10021         return this.el;
10022     }
10023 });
10024
10025 /**
10026  * @class Roo.DialogManager
10027  * Provides global access to BasicDialogs that have been created and
10028  * support for z-indexing (layering) multiple open dialogs.
10029  */
10030 Roo.DialogManager = function(){
10031     var list = {};
10032     var accessList = [];
10033     var front = null;
10034
10035     // private
10036     var sortDialogs = function(d1, d2){
10037         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
10038     };
10039
10040     // private
10041     var orderDialogs = function(){
10042         accessList.sort(sortDialogs);
10043         var seed = Roo.DialogManager.zseed;
10044         for(var i = 0, len = accessList.length; i < len; i++){
10045             var dlg = accessList[i];
10046             if(dlg){
10047                 dlg.setZIndex(seed + (i*10));
10048             }
10049         }
10050     };
10051
10052     return {
10053         /**
10054          * The starting z-index for BasicDialogs (defaults to 9000)
10055          * @type Number The z-index value
10056          */
10057         zseed : 9000,
10058
10059         // private
10060         register : function(dlg){
10061             list[dlg.id] = dlg;
10062             accessList.push(dlg);
10063         },
10064
10065         // private
10066         unregister : function(dlg){
10067             delete list[dlg.id];
10068             var i=0;
10069             var len=0;
10070             if(!accessList.indexOf){
10071                 for(  i = 0, len = accessList.length; i < len; i++){
10072                     if(accessList[i] == dlg){
10073                         accessList.splice(i, 1);
10074                         return;
10075                     }
10076                 }
10077             }else{
10078                  i = accessList.indexOf(dlg);
10079                 if(i != -1){
10080                     accessList.splice(i, 1);
10081                 }
10082             }
10083         },
10084
10085         /**
10086          * Gets a registered dialog by id
10087          * @param {String/Object} id The id of the dialog or a dialog
10088          * @return {Roo.BasicDialog} this
10089          */
10090         get : function(id){
10091             return typeof id == "object" ? id : list[id];
10092         },
10093
10094         /**
10095          * Brings the specified dialog to the front
10096          * @param {String/Object} dlg The id of the dialog or a dialog
10097          * @return {Roo.BasicDialog} this
10098          */
10099         bringToFront : function(dlg){
10100             dlg = this.get(dlg);
10101             if(dlg != front){
10102                 front = dlg;
10103                 dlg._lastAccess = new Date().getTime();
10104                 orderDialogs();
10105             }
10106             return dlg;
10107         },
10108
10109         /**
10110          * Sends the specified dialog to the back
10111          * @param {String/Object} dlg The id of the dialog or a dialog
10112          * @return {Roo.BasicDialog} this
10113          */
10114         sendToBack : function(dlg){
10115             dlg = this.get(dlg);
10116             dlg._lastAccess = -(new Date().getTime());
10117             orderDialogs();
10118             return dlg;
10119         },
10120
10121         /**
10122          * Hides all dialogs
10123          */
10124         hideAll : function(){
10125             for(var id in list){
10126                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
10127                     list[id].hide();
10128                 }
10129             }
10130         }
10131     };
10132 }();
10133
10134 /**
10135  * @class Roo.LayoutDialog
10136  * @extends Roo.BasicDialog
10137  * @children Roo.ContentPanel
10138  * @parent builder none
10139  * Dialog which provides adjustments for working with a layout in a Dialog.
10140  * Add your necessary layout config options to the dialog's config.<br>
10141  * Example usage (including a nested layout):
10142  * <pre><code>
10143 if(!dialog){
10144     dialog = new Roo.LayoutDialog("download-dlg", {
10145         modal: true,
10146         width:600,
10147         height:450,
10148         shadow:true,
10149         minWidth:500,
10150         minHeight:350,
10151         autoTabs:true,
10152         proxyDrag:true,
10153         // layout config merges with the dialog config
10154         center:{
10155             tabPosition: "top",
10156             alwaysShowTabs: true
10157         }
10158     });
10159     dialog.addKeyListener(27, dialog.hide, dialog);
10160     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
10161     dialog.addButton("Build It!", this.getDownload, this);
10162
10163     // we can even add nested layouts
10164     var innerLayout = new Roo.BorderLayout("dl-inner", {
10165         east: {
10166             initialSize: 200,
10167             autoScroll:true,
10168             split:true
10169         },
10170         center: {
10171             autoScroll:true
10172         }
10173     });
10174     innerLayout.beginUpdate();
10175     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
10176     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
10177     innerLayout.endUpdate(true);
10178
10179     var layout = dialog.getLayout();
10180     layout.beginUpdate();
10181     layout.add("center", new Roo.ContentPanel("standard-panel",
10182                         {title: "Download the Source", fitToFrame:true}));
10183     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
10184                {title: "Build your own roo.js"}));
10185     layout.getRegion("center").showPanel(sp);
10186     layout.endUpdate();
10187 }
10188 </code></pre>
10189     * @constructor
10190     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
10191     * @param {Object} config configuration options
10192   */
10193 Roo.LayoutDialog = function(el, cfg){
10194     
10195     var config=  cfg;
10196     if (typeof(cfg) == 'undefined') {
10197         config = Roo.apply({}, el);
10198         // not sure why we use documentElement here.. - it should always be body.
10199         // IE7 borks horribly if we use documentElement.
10200         // webkit also does not like documentElement - it creates a body element...
10201         el = Roo.get( document.body || document.documentElement ).createChild();
10202         //config.autoCreate = true;
10203     }
10204     
10205     
10206     config.autoTabs = false;
10207     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
10208     this.body.setStyle({overflow:"hidden", position:"relative"});
10209     this.layout = new Roo.BorderLayout(this.body.dom, config);
10210     this.layout.monitorWindowResize = false;
10211     this.el.addClass("x-dlg-auto-layout");
10212     // fix case when center region overwrites center function
10213     this.center = Roo.BasicDialog.prototype.center;
10214     this.on("show", this.layout.layout, this.layout, true);
10215     if (config.items) {
10216         var xitems = config.items;
10217         delete config.items;
10218         Roo.each(xitems, this.addxtype, this);
10219     }
10220     
10221     
10222 };
10223 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
10224     
10225     
10226     /**
10227      * @cfg {Roo.LayoutRegion} east  
10228      */
10229     /**
10230      * @cfg {Roo.LayoutRegion} west
10231      */
10232     /**
10233      * @cfg {Roo.LayoutRegion} south
10234      */
10235     /**
10236      * @cfg {Roo.LayoutRegion} north
10237      */
10238     /**
10239      * @cfg {Roo.LayoutRegion} center
10240      */
10241     /**
10242      * @cfg {Roo.Button} buttons[]  Bottom buttons..
10243      */
10244     
10245     
10246     /**
10247      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
10248      * @deprecated
10249      */
10250     endUpdate : function(){
10251         this.layout.endUpdate();
10252     },
10253
10254     /**
10255      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
10256      *  @deprecated
10257      */
10258     beginUpdate : function(){
10259         this.layout.beginUpdate();
10260     },
10261
10262     /**
10263      * Get the BorderLayout for this dialog
10264      * @return {Roo.BorderLayout}
10265      */
10266     getLayout : function(){
10267         return this.layout;
10268     },
10269
10270     showEl : function(){
10271         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
10272         if(Roo.isIE7){
10273             this.layout.layout();
10274         }
10275     },
10276
10277     // private
10278     // Use the syncHeightBeforeShow config option to control this automatically
10279     syncBodyHeight : function(){
10280         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
10281         if(this.layout){this.layout.layout();}
10282     },
10283     
10284       /**
10285      * Add an xtype element (actually adds to the layout.)
10286      * @return {Object} xdata xtype object data.
10287      */
10288     
10289     addxtype : function(c) {
10290         return this.layout.addxtype(c);
10291     }
10292 });/*
10293  * Based on:
10294  * Ext JS Library 1.1.1
10295  * Copyright(c) 2006-2007, Ext JS, LLC.
10296  *
10297  * Originally Released Under LGPL - original licence link has changed is not relivant.
10298  *
10299  * Fork - LGPL
10300  * <script type="text/javascript">
10301  */
10302  
10303 /**
10304  * @class Roo.MessageBox
10305  * @static
10306  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
10307  * Example usage:
10308  *<pre><code>
10309 // Basic alert:
10310 Roo.Msg.alert('Status', 'Changes saved successfully.');
10311
10312 // Prompt for user data:
10313 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
10314     if (btn == 'ok'){
10315         // process text value...
10316     }
10317 });
10318
10319 // Show a dialog using config options:
10320 Roo.Msg.show({
10321    title:'Save Changes?',
10322    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
10323    buttons: Roo.Msg.YESNOCANCEL,
10324    fn: processResult,
10325    animEl: 'elId'
10326 });
10327 </code></pre>
10328  * @static
10329  */
10330 Roo.MessageBox = function(){
10331     var dlg, opt, mask, waitTimer;
10332     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
10333     var buttons, activeTextEl, bwidth;
10334
10335     // private
10336     var handleButton = function(button){
10337         dlg.hide();
10338         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
10339     };
10340
10341     // private
10342     var handleHide = function(){
10343         if(opt && opt.cls){
10344             dlg.el.removeClass(opt.cls);
10345         }
10346         if(waitTimer){
10347             Roo.TaskMgr.stop(waitTimer);
10348             waitTimer = null;
10349         }
10350     };
10351
10352     // private
10353     var updateButtons = function(b){
10354         var width = 0;
10355         if(!b){
10356             buttons["ok"].hide();
10357             buttons["cancel"].hide();
10358             buttons["yes"].hide();
10359             buttons["no"].hide();
10360             dlg.footer.dom.style.display = 'none';
10361             return width;
10362         }
10363         dlg.footer.dom.style.display = '';
10364         for(var k in buttons){
10365             if(typeof buttons[k] != "function"){
10366                 if(b[k]){
10367                     buttons[k].show();
10368                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
10369                     width += buttons[k].el.getWidth()+15;
10370                 }else{
10371                     buttons[k].hide();
10372                 }
10373             }
10374         }
10375         return width;
10376     };
10377
10378     // private
10379     var handleEsc = function(d, k, e){
10380         if(opt && opt.closable !== false){
10381             dlg.hide();
10382         }
10383         if(e){
10384             e.stopEvent();
10385         }
10386     };
10387
10388     return {
10389         /**
10390          * Returns a reference to the underlying {@link Roo.BasicDialog} element
10391          * @return {Roo.BasicDialog} The BasicDialog element
10392          */
10393         getDialog : function(){
10394            if(!dlg){
10395                 dlg = new Roo.BasicDialog("x-msg-box", {
10396                     autoCreate : true,
10397                     shadow: true,
10398                     draggable: true,
10399                     resizable:false,
10400                     constraintoviewport:false,
10401                     fixedcenter:true,
10402                     collapsible : false,
10403                     shim:true,
10404                     modal: true,
10405                     width:400, height:100,
10406                     buttonAlign:"center",
10407                     closeClick : function(){
10408                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
10409                             handleButton("no");
10410                         }else{
10411                             handleButton("cancel");
10412                         }
10413                     }
10414                 });
10415                 dlg.on("hide", handleHide);
10416                 mask = dlg.mask;
10417                 dlg.addKeyListener(27, handleEsc);
10418                 buttons = {};
10419                 var bt = this.buttonText;
10420                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
10421                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
10422                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
10423                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
10424                 bodyEl = dlg.body.createChild({
10425
10426                     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>'
10427                 });
10428                 msgEl = bodyEl.dom.firstChild;
10429                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
10430                 textboxEl.enableDisplayMode();
10431                 textboxEl.addKeyListener([10,13], function(){
10432                     if(dlg.isVisible() && opt && opt.buttons){
10433                         if(opt.buttons.ok){
10434                             handleButton("ok");
10435                         }else if(opt.buttons.yes){
10436                             handleButton("yes");
10437                         }
10438                     }
10439                 });
10440                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
10441                 textareaEl.enableDisplayMode();
10442                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
10443                 progressEl.enableDisplayMode();
10444                 var pf = progressEl.dom.firstChild;
10445                 if (pf) {
10446                     pp = Roo.get(pf.firstChild);
10447                     pp.setHeight(pf.offsetHeight);
10448                 }
10449                 
10450             }
10451             return dlg;
10452         },
10453
10454         /**
10455          * Updates the message box body text
10456          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
10457          * the XHTML-compliant non-breaking space character '&amp;#160;')
10458          * @return {Roo.MessageBox} This message box
10459          */
10460         updateText : function(text){
10461             if(!dlg.isVisible() && !opt.width){
10462                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
10463             }
10464             msgEl.innerHTML = text || '&#160;';
10465       
10466             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
10467             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
10468             var w = Math.max(
10469                     Math.min(opt.width || cw , this.maxWidth), 
10470                     Math.max(opt.minWidth || this.minWidth, bwidth)
10471             );
10472             if(opt.prompt){
10473                 activeTextEl.setWidth(w);
10474             }
10475             if(dlg.isVisible()){
10476                 dlg.fixedcenter = false;
10477             }
10478             // to big, make it scroll. = But as usual stupid IE does not support
10479             // !important..
10480             
10481             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
10482                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
10483                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
10484             } else {
10485                 bodyEl.dom.style.height = '';
10486                 bodyEl.dom.style.overflowY = '';
10487             }
10488             if (cw > w) {
10489                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
10490             } else {
10491                 bodyEl.dom.style.overflowX = '';
10492             }
10493             
10494             dlg.setContentSize(w, bodyEl.getHeight());
10495             if(dlg.isVisible()){
10496                 dlg.fixedcenter = true;
10497             }
10498             return this;
10499         },
10500
10501         /**
10502          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
10503          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
10504          * @param {Number} value Any number between 0 and 1 (e.g., .5)
10505          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
10506          * @return {Roo.MessageBox} This message box
10507          */
10508         updateProgress : function(value, text){
10509             if(text){
10510                 this.updateText(text);
10511             }
10512             if (pp) { // weird bug on my firefox - for some reason this is not defined
10513                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
10514             }
10515             return this;
10516         },        
10517
10518         /**
10519          * Returns true if the message box is currently displayed
10520          * @return {Boolean} True if the message box is visible, else false
10521          */
10522         isVisible : function(){
10523             return dlg && dlg.isVisible();  
10524         },
10525
10526         /**
10527          * Hides the message box if it is displayed
10528          */
10529         hide : function(){
10530             if(this.isVisible()){
10531                 dlg.hide();
10532             }  
10533         },
10534
10535         /**
10536          * Displays a new message box, or reinitializes an existing message box, based on the config options
10537          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
10538          * The following config object properties are supported:
10539          * <pre>
10540 Property    Type             Description
10541 ----------  ---------------  ------------------------------------------------------------------------------------
10542 animEl            String/Element   An id or Element from which the message box should animate as it opens and
10543                                    closes (defaults to undefined)
10544 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
10545                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
10546 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
10547                                    progress and wait dialogs will ignore this property and always hide the
10548                                    close button as they can only be closed programmatically.
10549 cls               String           A custom CSS class to apply to the message box element
10550 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
10551                                    displayed (defaults to 75)
10552 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
10553                                    function will be btn (the name of the button that was clicked, if applicable,
10554                                    e.g. "ok"), and text (the value of the active text field, if applicable).
10555                                    Progress and wait dialogs will ignore this option since they do not respond to
10556                                    user actions and can only be closed programmatically, so any required function
10557                                    should be called by the same code after it closes the dialog.
10558 icon              String           A CSS class that provides a background image to be used as an icon for
10559                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
10560 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
10561 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
10562 modal             Boolean          False to allow user interaction with the page while the message box is
10563                                    displayed (defaults to true)
10564 msg               String           A string that will replace the existing message box body text (defaults
10565                                    to the XHTML-compliant non-breaking space character '&#160;')
10566 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
10567 progress          Boolean          True to display a progress bar (defaults to false)
10568 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
10569 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
10570 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
10571 title             String           The title text
10572 value             String           The string value to set into the active textbox element if displayed
10573 wait              Boolean          True to display a progress bar (defaults to false)
10574 width             Number           The width of the dialog in pixels
10575 </pre>
10576          *
10577          * Example usage:
10578          * <pre><code>
10579 Roo.Msg.show({
10580    title: 'Address',
10581    msg: 'Please enter your address:',
10582    width: 300,
10583    buttons: Roo.MessageBox.OKCANCEL,
10584    multiline: true,
10585    fn: saveAddress,
10586    animEl: 'addAddressBtn'
10587 });
10588 </code></pre>
10589          * @param {Object} config Configuration options
10590          * @return {Roo.MessageBox} This message box
10591          */
10592         show : function(options)
10593         {
10594             
10595             // this causes nightmares if you show one dialog after another
10596             // especially on callbacks..
10597              
10598             if(this.isVisible()){
10599                 
10600                 this.hide();
10601                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
10602                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
10603                 Roo.log("New Dialog Message:" +  options.msg )
10604                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
10605                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
10606                 
10607             }
10608             var d = this.getDialog();
10609             opt = options;
10610             d.setTitle(opt.title || "&#160;");
10611             d.close.setDisplayed(opt.closable !== false);
10612             activeTextEl = textboxEl;
10613             opt.prompt = opt.prompt || (opt.multiline ? true : false);
10614             if(opt.prompt){
10615                 if(opt.multiline){
10616                     textboxEl.hide();
10617                     textareaEl.show();
10618                     textareaEl.setHeight(typeof opt.multiline == "number" ?
10619                         opt.multiline : this.defaultTextHeight);
10620                     activeTextEl = textareaEl;
10621                 }else{
10622                     textboxEl.show();
10623                     textareaEl.hide();
10624                 }
10625             }else{
10626                 textboxEl.hide();
10627                 textareaEl.hide();
10628             }
10629             progressEl.setDisplayed(opt.progress === true);
10630             this.updateProgress(0);
10631             activeTextEl.dom.value = opt.value || "";
10632             if(opt.prompt){
10633                 dlg.setDefaultButton(activeTextEl);
10634             }else{
10635                 var bs = opt.buttons;
10636                 var db = null;
10637                 if(bs && bs.ok){
10638                     db = buttons["ok"];
10639                 }else if(bs && bs.yes){
10640                     db = buttons["yes"];
10641                 }
10642                 dlg.setDefaultButton(db);
10643             }
10644             bwidth = updateButtons(opt.buttons);
10645             this.updateText(opt.msg);
10646             if(opt.cls){
10647                 d.el.addClass(opt.cls);
10648             }
10649             d.proxyDrag = opt.proxyDrag === true;
10650             d.modal = opt.modal !== false;
10651             d.mask = opt.modal !== false ? mask : false;
10652             if(!d.isVisible()){
10653                 // force it to the end of the z-index stack so it gets a cursor in FF
10654                 document.body.appendChild(dlg.el.dom);
10655                 d.animateTarget = null;
10656                 d.show(options.animEl);
10657             }
10658             return this;
10659         },
10660
10661         /**
10662          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
10663          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
10664          * and closing the message box when the process is complete.
10665          * @param {String} title The title bar text
10666          * @param {String} msg The message box body text
10667          * @return {Roo.MessageBox} This message box
10668          */
10669         progress : function(title, msg){
10670             this.show({
10671                 title : title,
10672                 msg : msg,
10673                 buttons: false,
10674                 progress:true,
10675                 closable:false,
10676                 minWidth: this.minProgressWidth,
10677                 modal : true
10678             });
10679             return this;
10680         },
10681
10682         /**
10683          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
10684          * If a callback function is passed it will be called after the user clicks the button, and the
10685          * id of the button that was clicked will be passed as the only parameter to the callback
10686          * (could also be the top-right close button).
10687          * @param {String} title The title bar text
10688          * @param {String} msg The message box body text
10689          * @param {Function} fn (optional) The callback function invoked after the message box is closed
10690          * @param {Object} scope (optional) The scope of the callback function
10691          * @return {Roo.MessageBox} This message box
10692          */
10693         alert : function(title, msg, fn, scope){
10694             this.show({
10695                 title : title,
10696                 msg : msg,
10697                 buttons: this.OK,
10698                 fn: fn,
10699                 scope : scope,
10700                 modal : true
10701             });
10702             return this;
10703         },
10704
10705         /**
10706          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
10707          * interaction while waiting for a long-running process to complete that does not have defined intervals.
10708          * You are responsible for closing the message box when the process is complete.
10709          * @param {String} msg The message box body text
10710          * @param {String} title (optional) The title bar text
10711          * @return {Roo.MessageBox} This message box
10712          */
10713         wait : function(msg, title){
10714             this.show({
10715                 title : title,
10716                 msg : msg,
10717                 buttons: false,
10718                 closable:false,
10719                 progress:true,
10720                 modal:true,
10721                 width:300,
10722                 wait:true
10723             });
10724             waitTimer = Roo.TaskMgr.start({
10725                 run: function(i){
10726                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
10727                 },
10728                 interval: 1000
10729             });
10730             return this;
10731         },
10732
10733         /**
10734          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
10735          * If a callback function is passed it will be called after the user clicks either button, and the id of the
10736          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
10737          * @param {String} title The title bar text
10738          * @param {String} msg The message box body text
10739          * @param {Function} fn (optional) The callback function invoked after the message box is closed
10740          * @param {Object} scope (optional) The scope of the callback function
10741          * @return {Roo.MessageBox} This message box
10742          */
10743         confirm : function(title, msg, fn, scope){
10744             this.show({
10745                 title : title,
10746                 msg : msg,
10747                 buttons: this.YESNO,
10748                 fn: fn,
10749                 scope : scope,
10750                 modal : true
10751             });
10752             return this;
10753         },
10754
10755         /**
10756          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
10757          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
10758          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
10759          * (could also be the top-right close button) and the text that was entered will be passed as the two
10760          * parameters to the callback.
10761          * @param {String} title The title bar text
10762          * @param {String} msg The message box body text
10763          * @param {Function} fn (optional) The callback function invoked after the message box is closed
10764          * @param {Object} scope (optional) The scope of the callback function
10765          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
10766          * property, or the height in pixels to create the textbox (defaults to false / single-line)
10767          * @return {Roo.MessageBox} This message box
10768          */
10769         prompt : function(title, msg, fn, scope, multiline){
10770             this.show({
10771                 title : title,
10772                 msg : msg,
10773                 buttons: this.OKCANCEL,
10774                 fn: fn,
10775                 minWidth:250,
10776                 scope : scope,
10777                 prompt:true,
10778                 multiline: multiline,
10779                 modal : true
10780             });
10781             return this;
10782         },
10783
10784         /**
10785          * Button config that displays a single OK button
10786          * @type Object
10787          */
10788         OK : {ok:true},
10789         /**
10790          * Button config that displays Yes and No buttons
10791          * @type Object
10792          */
10793         YESNO : {yes:true, no:true},
10794         /**
10795          * Button config that displays OK and Cancel buttons
10796          * @type Object
10797          */
10798         OKCANCEL : {ok:true, cancel:true},
10799         /**
10800          * Button config that displays Yes, No and Cancel buttons
10801          * @type Object
10802          */
10803         YESNOCANCEL : {yes:true, no:true, cancel:true},
10804
10805         /**
10806          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
10807          * @type Number
10808          */
10809         defaultTextHeight : 75,
10810         /**
10811          * The maximum width in pixels of the message box (defaults to 600)
10812          * @type Number
10813          */
10814         maxWidth : 600,
10815         /**
10816          * The minimum width in pixels of the message box (defaults to 100)
10817          * @type Number
10818          */
10819         minWidth : 100,
10820         /**
10821          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
10822          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
10823          * @type Number
10824          */
10825         minProgressWidth : 250,
10826         /**
10827          * An object containing the default button text strings that can be overriden for localized language support.
10828          * Supported properties are: ok, cancel, yes and no.
10829          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
10830          * @type Object
10831          */
10832         buttonText : {
10833             ok : "OK",
10834             cancel : "Cancel",
10835             yes : "Yes",
10836             no : "No"
10837         }
10838     };
10839 }();
10840
10841 /**
10842  * Shorthand for {@link Roo.MessageBox}
10843  */
10844 Roo.Msg = Roo.MessageBox;/*
10845  * Based on:
10846  * Ext JS Library 1.1.1
10847  * Copyright(c) 2006-2007, Ext JS, LLC.
10848  *
10849  * Originally Released Under LGPL - original licence link has changed is not relivant.
10850  *
10851  * Fork - LGPL
10852  * <script type="text/javascript">
10853  */
10854 /**
10855  * @class Roo.QuickTips
10856  * Provides attractive and customizable tooltips for any element.
10857  * @static
10858  */
10859 Roo.QuickTips = function(){
10860     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
10861     var ce, bd, xy, dd;
10862     var visible = false, disabled = true, inited = false;
10863     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
10864     
10865     var onOver = function(e){
10866         if(disabled){
10867             return;
10868         }
10869         var t = e.getTarget();
10870         if(!t || t.nodeType !== 1 || t == document || t == document.body){
10871             return;
10872         }
10873         if(ce && t == ce.el){
10874             clearTimeout(hideProc);
10875             return;
10876         }
10877         if(t && tagEls[t.id]){
10878             tagEls[t.id].el = t;
10879             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
10880             return;
10881         }
10882         var ttp, et = Roo.fly(t);
10883         var ns = cfg.namespace;
10884         if(tm.interceptTitles && t.title){
10885             ttp = t.title;
10886             t.qtip = ttp;
10887             t.removeAttribute("title");
10888             e.preventDefault();
10889         }else{
10890             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
10891         }
10892         if(ttp){
10893             showProc = show.defer(tm.showDelay, tm, [{
10894                 el: t, 
10895                 text: ttp.replace(/\\n/g,'<br/>'),
10896                 width: et.getAttributeNS(ns, cfg.width),
10897                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
10898                 title: et.getAttributeNS(ns, cfg.title),
10899                     cls: et.getAttributeNS(ns, cfg.cls)
10900             }]);
10901         }
10902     };
10903     
10904     var onOut = function(e){
10905         clearTimeout(showProc);
10906         var t = e.getTarget();
10907         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
10908             hideProc = setTimeout(hide, tm.hideDelay);
10909         }
10910     };
10911     
10912     var onMove = function(e){
10913         if(disabled){
10914             return;
10915         }
10916         xy = e.getXY();
10917         xy[1] += 18;
10918         if(tm.trackMouse && ce){
10919             el.setXY(xy);
10920         }
10921     };
10922     
10923     var onDown = function(e){
10924         clearTimeout(showProc);
10925         clearTimeout(hideProc);
10926         if(!e.within(el)){
10927             if(tm.hideOnClick){
10928                 hide();
10929                 tm.disable();
10930                 tm.enable.defer(100, tm);
10931             }
10932         }
10933     };
10934     
10935     var getPad = function(){
10936         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
10937     };
10938
10939     var show = function(o){
10940         if(disabled){
10941             return;
10942         }
10943         clearTimeout(dismissProc);
10944         ce = o;
10945         if(removeCls){ // in case manually hidden
10946             el.removeClass(removeCls);
10947             removeCls = null;
10948         }
10949         if(ce.cls){
10950             el.addClass(ce.cls);
10951             removeCls = ce.cls;
10952         }
10953         if(ce.title){
10954             tipTitle.update(ce.title);
10955             tipTitle.show();
10956         }else{
10957             tipTitle.update('');
10958             tipTitle.hide();
10959         }
10960         el.dom.style.width  = tm.maxWidth+'px';
10961         //tipBody.dom.style.width = '';
10962         tipBodyText.update(o.text);
10963         var p = getPad(), w = ce.width;
10964         if(!w){
10965             var td = tipBodyText.dom;
10966             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
10967             if(aw > tm.maxWidth){
10968                 w = tm.maxWidth;
10969             }else if(aw < tm.minWidth){
10970                 w = tm.minWidth;
10971             }else{
10972                 w = aw;
10973             }
10974         }
10975         //tipBody.setWidth(w);
10976         el.setWidth(parseInt(w, 10) + p);
10977         if(ce.autoHide === false){
10978             close.setDisplayed(true);
10979             if(dd){
10980                 dd.unlock();
10981             }
10982         }else{
10983             close.setDisplayed(false);
10984             if(dd){
10985                 dd.lock();
10986             }
10987         }
10988         if(xy){
10989             el.avoidY = xy[1]-18;
10990             el.setXY(xy);
10991         }
10992         if(tm.animate){
10993             el.setOpacity(.1);
10994             el.setStyle("visibility", "visible");
10995             el.fadeIn({callback: afterShow});
10996         }else{
10997             afterShow();
10998         }
10999     };
11000     
11001     var afterShow = function(){
11002         if(ce){
11003             el.show();
11004             esc.enable();
11005             if(tm.autoDismiss && ce.autoHide !== false){
11006                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
11007             }
11008         }
11009     };
11010     
11011     var hide = function(noanim){
11012         clearTimeout(dismissProc);
11013         clearTimeout(hideProc);
11014         ce = null;
11015         if(el.isVisible()){
11016             esc.disable();
11017             if(noanim !== true && tm.animate){
11018                 el.fadeOut({callback: afterHide});
11019             }else{
11020                 afterHide();
11021             } 
11022         }
11023     };
11024     
11025     var afterHide = function(){
11026         el.hide();
11027         if(removeCls){
11028             el.removeClass(removeCls);
11029             removeCls = null;
11030         }
11031     };
11032     
11033     return {
11034         /**
11035         * @cfg {Number} minWidth
11036         * The minimum width of the quick tip (defaults to 40)
11037         */
11038        minWidth : 40,
11039         /**
11040         * @cfg {Number} maxWidth
11041         * The maximum width of the quick tip (defaults to 300)
11042         */
11043        maxWidth : 300,
11044         /**
11045         * @cfg {Boolean} interceptTitles
11046         * True to automatically use the element's DOM title value if available (defaults to false)
11047         */
11048        interceptTitles : false,
11049         /**
11050         * @cfg {Boolean} trackMouse
11051         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
11052         */
11053        trackMouse : false,
11054         /**
11055         * @cfg {Boolean} hideOnClick
11056         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
11057         */
11058        hideOnClick : true,
11059         /**
11060         * @cfg {Number} showDelay
11061         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
11062         */
11063        showDelay : 500,
11064         /**
11065         * @cfg {Number} hideDelay
11066         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
11067         */
11068        hideDelay : 200,
11069         /**
11070         * @cfg {Boolean} autoHide
11071         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
11072         * Used in conjunction with hideDelay.
11073         */
11074        autoHide : true,
11075         /**
11076         * @cfg {Boolean}
11077         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
11078         * (defaults to true).  Used in conjunction with autoDismissDelay.
11079         */
11080        autoDismiss : true,
11081         /**
11082         * @cfg {Number}
11083         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
11084         */
11085        autoDismissDelay : 5000,
11086        /**
11087         * @cfg {Boolean} animate
11088         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
11089         */
11090        animate : false,
11091
11092        /**
11093         * @cfg {String} title
11094         * Title text to display (defaults to '').  This can be any valid HTML markup.
11095         */
11096         title: '',
11097        /**
11098         * @cfg {String} text
11099         * Body text to display (defaults to '').  This can be any valid HTML markup.
11100         */
11101         text : '',
11102        /**
11103         * @cfg {String} cls
11104         * A CSS class to apply to the base quick tip element (defaults to '').
11105         */
11106         cls : '',
11107        /**
11108         * @cfg {Number} width
11109         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
11110         * minWidth or maxWidth.
11111         */
11112         width : null,
11113
11114     /**
11115      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
11116      * or display QuickTips in a page.
11117      */
11118        init : function(){
11119           tm = Roo.QuickTips;
11120           cfg = tm.tagConfig;
11121           if(!inited){
11122               if(!Roo.isReady){ // allow calling of init() before onReady
11123                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
11124                   return;
11125               }
11126               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
11127               el.fxDefaults = {stopFx: true};
11128               // maximum custom styling
11129               //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>');
11130               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>');              
11131               tipTitle = el.child('h3');
11132               tipTitle.enableDisplayMode("block");
11133               tipBody = el.child('div.x-tip-bd');
11134               tipBodyText = el.child('div.x-tip-bd-inner');
11135               //bdLeft = el.child('div.x-tip-bd-left');
11136               //bdRight = el.child('div.x-tip-bd-right');
11137               close = el.child('div.x-tip-close');
11138               close.enableDisplayMode("block");
11139               close.on("click", hide);
11140               var d = Roo.get(document);
11141               d.on("mousedown", onDown);
11142               d.on("mouseover", onOver);
11143               d.on("mouseout", onOut);
11144               d.on("mousemove", onMove);
11145               esc = d.addKeyListener(27, hide);
11146               esc.disable();
11147               if(Roo.dd.DD){
11148                   dd = el.initDD("default", null, {
11149                       onDrag : function(){
11150                           el.sync();  
11151                       }
11152                   });
11153                   dd.setHandleElId(tipTitle.id);
11154                   dd.lock();
11155               }
11156               inited = true;
11157           }
11158           this.enable(); 
11159        },
11160
11161     /**
11162      * Configures a new quick tip instance and assigns it to a target element.  The following config options
11163      * are supported:
11164      * <pre>
11165 Property    Type                   Description
11166 ----------  ---------------------  ------------------------------------------------------------------------
11167 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
11168      * </ul>
11169      * @param {Object} config The config object
11170      */
11171        register : function(config){
11172            var cs = config instanceof Array ? config : arguments;
11173            for(var i = 0, len = cs.length; i < len; i++) {
11174                var c = cs[i];
11175                var target = c.target;
11176                if(target){
11177                    if(target instanceof Array){
11178                        for(var j = 0, jlen = target.length; j < jlen; j++){
11179                            tagEls[target[j]] = c;
11180                        }
11181                    }else{
11182                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
11183                    }
11184                }
11185            }
11186        },
11187
11188     /**
11189      * Removes this quick tip from its element and destroys it.
11190      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
11191      */
11192        unregister : function(el){
11193            delete tagEls[Roo.id(el)];
11194        },
11195
11196     /**
11197      * Enable this quick tip.
11198      */
11199        enable : function(){
11200            if(inited && disabled){
11201                locks.pop();
11202                if(locks.length < 1){
11203                    disabled = false;
11204                }
11205            }
11206        },
11207
11208     /**
11209      * Disable this quick tip.
11210      */
11211        disable : function(){
11212           disabled = true;
11213           clearTimeout(showProc);
11214           clearTimeout(hideProc);
11215           clearTimeout(dismissProc);
11216           if(ce){
11217               hide(true);
11218           }
11219           locks.push(1);
11220        },
11221
11222     /**
11223      * Returns true if the quick tip is enabled, else false.
11224      */
11225        isEnabled : function(){
11226             return !disabled;
11227        },
11228
11229         // private
11230        tagConfig : {
11231            namespace : "roo", // was ext?? this may break..
11232            alt_namespace : "ext",
11233            attribute : "qtip",
11234            width : "width",
11235            target : "target",
11236            title : "qtitle",
11237            hide : "hide",
11238            cls : "qclass"
11239        }
11240    };
11241 }();
11242
11243 // backwards compat
11244 Roo.QuickTips.tips = Roo.QuickTips.register;/*
11245  * Based on:
11246  * Ext JS Library 1.1.1
11247  * Copyright(c) 2006-2007, Ext JS, LLC.
11248  *
11249  * Originally Released Under LGPL - original licence link has changed is not relivant.
11250  *
11251  * Fork - LGPL
11252  * <script type="text/javascript">
11253  */
11254  
11255
11256 /**
11257  * @class Roo.tree.TreePanel
11258  * @extends Roo.data.Tree
11259  * @cfg {Roo.tree.TreeNode} root The root node
11260  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
11261  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
11262  * @cfg {Boolean} enableDD true to enable drag and drop
11263  * @cfg {Boolean} enableDrag true to enable just drag
11264  * @cfg {Boolean} enableDrop true to enable just drop
11265  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
11266  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
11267  * @cfg {String} ddGroup The DD group this TreePanel belongs to
11268  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
11269  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
11270  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
11271  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
11272  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
11273  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
11274  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
11275  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
11276  * @cfg {Roo.tree.TreeLoader} loader A TreeLoader for use with this TreePanel
11277  * @cfg {Roo.tree.TreeEditor} editor The TreeEditor to display when clicked.
11278  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
11279  * @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>
11280  * @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>
11281  * 
11282  * @constructor
11283  * @param {String/HTMLElement/Element} el The container element
11284  * @param {Object} config
11285  */
11286 Roo.tree.TreePanel = function(el, config){
11287     var root = false;
11288     var loader = false;
11289     if (config.root) {
11290         root = config.root;
11291         delete config.root;
11292     }
11293     if (config.loader) {
11294         loader = config.loader;
11295         delete config.loader;
11296     }
11297     
11298     Roo.apply(this, config);
11299     Roo.tree.TreePanel.superclass.constructor.call(this);
11300     this.el = Roo.get(el);
11301     this.el.addClass('x-tree');
11302     //console.log(root);
11303     if (root) {
11304         this.setRootNode( Roo.factory(root, Roo.tree));
11305     }
11306     if (loader) {
11307         this.loader = Roo.factory(loader, Roo.tree);
11308     }
11309    /**
11310     * Read-only. The id of the container element becomes this TreePanel's id.
11311     */
11312     this.id = this.el.id;
11313     this.addEvents({
11314         /**
11315         * @event beforeload
11316         * Fires before a node is loaded, return false to cancel
11317         * @param {Node} node The node being loaded
11318         */
11319         "beforeload" : true,
11320         /**
11321         * @event load
11322         * Fires when a node is loaded
11323         * @param {Node} node The node that was loaded
11324         */
11325         "load" : true,
11326         /**
11327         * @event textchange
11328         * Fires when the text for a node is changed
11329         * @param {Node} node The node
11330         * @param {String} text The new text
11331         * @param {String} oldText The old text
11332         */
11333         "textchange" : true,
11334         /**
11335         * @event beforeexpand
11336         * Fires before a node is expanded, return false to cancel.
11337         * @param {Node} node The node
11338         * @param {Boolean} deep
11339         * @param {Boolean} anim
11340         */
11341         "beforeexpand" : true,
11342         /**
11343         * @event beforecollapse
11344         * Fires before a node is collapsed, return false to cancel.
11345         * @param {Node} node The node
11346         * @param {Boolean} deep
11347         * @param {Boolean} anim
11348         */
11349         "beforecollapse" : true,
11350         /**
11351         * @event expand
11352         * Fires when a node is expanded
11353         * @param {Node} node The node
11354         */
11355         "expand" : true,
11356         /**
11357         * @event disabledchange
11358         * Fires when the disabled status of a node changes
11359         * @param {Node} node The node
11360         * @param {Boolean} disabled
11361         */
11362         "disabledchange" : true,
11363         /**
11364         * @event collapse
11365         * Fires when a node is collapsed
11366         * @param {Node} node The node
11367         */
11368         "collapse" : true,
11369         /**
11370         * @event beforeclick
11371         * Fires before click processing on a node. Return false to cancel the default action.
11372         * @param {Node} node The node
11373         * @param {Roo.EventObject} e The event object
11374         */
11375         "beforeclick":true,
11376         /**
11377         * @event checkchange
11378         * Fires when a node with a checkbox's checked property changes
11379         * @param {Node} this This node
11380         * @param {Boolean} checked
11381         */
11382         "checkchange":true,
11383         /**
11384         * @event click
11385         * Fires when a node is clicked
11386         * @param {Node} node The node
11387         * @param {Roo.EventObject} e The event object
11388         */
11389         "click":true,
11390         /**
11391         * @event dblclick
11392         * Fires when a node is double clicked
11393         * @param {Node} node The node
11394         * @param {Roo.EventObject} e The event object
11395         */
11396         "dblclick":true,
11397         /**
11398         * @event contextmenu
11399         * Fires when a node is right clicked
11400         * @param {Node} node The node
11401         * @param {Roo.EventObject} e The event object
11402         */
11403         "contextmenu":true,
11404         /**
11405         * @event beforechildrenrendered
11406         * Fires right before the child nodes for a node are rendered
11407         * @param {Node} node The node
11408         */
11409         "beforechildrenrendered":true,
11410         /**
11411         * @event startdrag
11412         * Fires when a node starts being dragged
11413         * @param {Roo.tree.TreePanel} this
11414         * @param {Roo.tree.TreeNode} node
11415         * @param {event} e The raw browser event
11416         */ 
11417        "startdrag" : true,
11418        /**
11419         * @event enddrag
11420         * Fires when a drag operation is complete
11421         * @param {Roo.tree.TreePanel} this
11422         * @param {Roo.tree.TreeNode} node
11423         * @param {event} e The raw browser event
11424         */
11425        "enddrag" : true,
11426        /**
11427         * @event dragdrop
11428         * Fires when a dragged node is dropped on a valid DD target
11429         * @param {Roo.tree.TreePanel} this
11430         * @param {Roo.tree.TreeNode} node
11431         * @param {DD} dd The dd it was dropped on
11432         * @param {event} e The raw browser event
11433         */
11434        "dragdrop" : true,
11435        /**
11436         * @event beforenodedrop
11437         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
11438         * passed to handlers has the following properties:<br />
11439         * <ul style="padding:5px;padding-left:16px;">
11440         * <li>tree - The TreePanel</li>
11441         * <li>target - The node being targeted for the drop</li>
11442         * <li>data - The drag data from the drag source</li>
11443         * <li>point - The point of the drop - append, above or below</li>
11444         * <li>source - The drag source</li>
11445         * <li>rawEvent - Raw mouse event</li>
11446         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
11447         * to be inserted by setting them on this object.</li>
11448         * <li>cancel - Set this to true to cancel the drop.</li>
11449         * </ul>
11450         * @param {Object} dropEvent
11451         */
11452        "beforenodedrop" : true,
11453        /**
11454         * @event nodedrop
11455         * Fires after a DD object is dropped on a node in this tree. The dropEvent
11456         * passed to handlers has the following properties:<br />
11457         * <ul style="padding:5px;padding-left:16px;">
11458         * <li>tree - The TreePanel</li>
11459         * <li>target - The node being targeted for the drop</li>
11460         * <li>data - The drag data from the drag source</li>
11461         * <li>point - The point of the drop - append, above or below</li>
11462         * <li>source - The drag source</li>
11463         * <li>rawEvent - Raw mouse event</li>
11464         * <li>dropNode - Dropped node(s).</li>
11465         * </ul>
11466         * @param {Object} dropEvent
11467         */
11468        "nodedrop" : true,
11469         /**
11470         * @event nodedragover
11471         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
11472         * passed to handlers has the following properties:<br />
11473         * <ul style="padding:5px;padding-left:16px;">
11474         * <li>tree - The TreePanel</li>
11475         * <li>target - The node being targeted for the drop</li>
11476         * <li>data - The drag data from the drag source</li>
11477         * <li>point - The point of the drop - append, above or below</li>
11478         * <li>source - The drag source</li>
11479         * <li>rawEvent - Raw mouse event</li>
11480         * <li>dropNode - Drop node(s) provided by the source.</li>
11481         * <li>cancel - Set this to true to signal drop not allowed.</li>
11482         * </ul>
11483         * @param {Object} dragOverEvent
11484         */
11485        "nodedragover" : true,
11486        /**
11487         * @event appendnode
11488         * Fires when append node to the tree
11489         * @param {Roo.tree.TreePanel} this
11490         * @param {Roo.tree.TreeNode} node
11491         * @param {Number} index The index of the newly appended node
11492         */
11493        "appendnode" : true
11494         
11495     });
11496     if(this.singleExpand){
11497        this.on("beforeexpand", this.restrictExpand, this);
11498     }
11499     if (this.editor) {
11500         this.editor.tree = this;
11501         this.editor = Roo.factory(this.editor, Roo.tree);
11502     }
11503     
11504     if (this.selModel) {
11505         this.selModel = Roo.factory(this.selModel, Roo.tree);
11506     }
11507    
11508 };
11509 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
11510     rootVisible : true,
11511     animate: Roo.enableFx,
11512     lines : true,
11513     enableDD : false,
11514     hlDrop : Roo.enableFx,
11515   
11516     renderer: false,
11517     
11518     rendererTip: false,
11519     // private
11520     restrictExpand : function(node){
11521         var p = node.parentNode;
11522         if(p){
11523             if(p.expandedChild && p.expandedChild.parentNode == p){
11524                 p.expandedChild.collapse();
11525             }
11526             p.expandedChild = node;
11527         }
11528     },
11529
11530     // private override
11531     setRootNode : function(node){
11532         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
11533         if(!this.rootVisible){
11534             node.ui = new Roo.tree.RootTreeNodeUI(node);
11535         }
11536         return node;
11537     },
11538
11539     /**
11540      * Returns the container element for this TreePanel
11541      */
11542     getEl : function(){
11543         return this.el;
11544     },
11545
11546     /**
11547      * Returns the default TreeLoader for this TreePanel
11548      */
11549     getLoader : function(){
11550         return this.loader;
11551     },
11552
11553     /**
11554      * Expand all nodes
11555      */
11556     expandAll : function(){
11557         this.root.expand(true);
11558     },
11559
11560     /**
11561      * Collapse all nodes
11562      */
11563     collapseAll : function(){
11564         this.root.collapse(true);
11565     },
11566
11567     /**
11568      * Returns the selection model used by this TreePanel
11569      */
11570     getSelectionModel : function(){
11571         if(!this.selModel){
11572             this.selModel = new Roo.tree.DefaultSelectionModel();
11573         }
11574         return this.selModel;
11575     },
11576
11577     /**
11578      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
11579      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
11580      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
11581      * @return {Array}
11582      */
11583     getChecked : function(a, startNode){
11584         startNode = startNode || this.root;
11585         var r = [];
11586         var f = function(){
11587             if(this.attributes.checked){
11588                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
11589             }
11590         }
11591         startNode.cascade(f);
11592         return r;
11593     },
11594
11595     /**
11596      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11597      * @param {String} path
11598      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11599      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
11600      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
11601      */
11602     expandPath : function(path, attr, callback){
11603         attr = attr || "id";
11604         var keys = path.split(this.pathSeparator);
11605         var curNode = this.root;
11606         if(curNode.attributes[attr] != keys[1]){ // invalid root
11607             if(callback){
11608                 callback(false, null);
11609             }
11610             return;
11611         }
11612         var index = 1;
11613         var f = function(){
11614             if(++index == keys.length){
11615                 if(callback){
11616                     callback(true, curNode);
11617                 }
11618                 return;
11619             }
11620             var c = curNode.findChild(attr, keys[index]);
11621             if(!c){
11622                 if(callback){
11623                     callback(false, curNode);
11624                 }
11625                 return;
11626             }
11627             curNode = c;
11628             c.expand(false, false, f);
11629         };
11630         curNode.expand(false, false, f);
11631     },
11632
11633     /**
11634      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
11635      * @param {String} path
11636      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
11637      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
11638      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
11639      */
11640     selectPath : function(path, attr, callback){
11641         attr = attr || "id";
11642         var keys = path.split(this.pathSeparator);
11643         var v = keys.pop();
11644         if(keys.length > 0){
11645             var f = function(success, node){
11646                 if(success && node){
11647                     var n = node.findChild(attr, v);
11648                     if(n){
11649                         n.select();
11650                         if(callback){
11651                             callback(true, n);
11652                         }
11653                     }else if(callback){
11654                         callback(false, n);
11655                     }
11656                 }else{
11657                     if(callback){
11658                         callback(false, n);
11659                     }
11660                 }
11661             };
11662             this.expandPath(keys.join(this.pathSeparator), attr, f);
11663         }else{
11664             this.root.select();
11665             if(callback){
11666                 callback(true, this.root);
11667             }
11668         }
11669     },
11670
11671     getTreeEl : function(){
11672         return this.el;
11673     },
11674
11675     /**
11676      * Trigger rendering of this TreePanel
11677      */
11678     render : function(){
11679         if (this.innerCt) {
11680             return this; // stop it rendering more than once!!
11681         }
11682         
11683         this.innerCt = this.el.createChild({tag:"ul",
11684                cls:"x-tree-root-ct " +
11685                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
11686
11687         if(this.containerScroll){
11688             Roo.dd.ScrollManager.register(this.el);
11689         }
11690         if((this.enableDD || this.enableDrop) && !this.dropZone){
11691            /**
11692             * The dropZone used by this tree if drop is enabled
11693             * @type Roo.tree.TreeDropZone
11694             */
11695              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
11696                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
11697            });
11698         }
11699         if((this.enableDD || this.enableDrag) && !this.dragZone){
11700            /**
11701             * The dragZone used by this tree if drag is enabled
11702             * @type Roo.tree.TreeDragZone
11703             */
11704             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
11705                ddGroup: this.ddGroup || "TreeDD",
11706                scroll: this.ddScroll
11707            });
11708         }
11709         this.getSelectionModel().init(this);
11710         if (!this.root) {
11711             Roo.log("ROOT not set in tree");
11712             return this;
11713         }
11714         this.root.render();
11715         if(!this.rootVisible){
11716             this.root.renderChildren();
11717         }
11718         return this;
11719     }
11720 });/*
11721  * Based on:
11722  * Ext JS Library 1.1.1
11723  * Copyright(c) 2006-2007, Ext JS, LLC.
11724  *
11725  * Originally Released Under LGPL - original licence link has changed is not relivant.
11726  *
11727  * Fork - LGPL
11728  * <script type="text/javascript">
11729  */
11730  
11731
11732 /**
11733  * @class Roo.tree.DefaultSelectionModel
11734  * @extends Roo.util.Observable
11735  * The default single selection for a TreePanel.
11736  * @param {Object} cfg Configuration
11737  */
11738 Roo.tree.DefaultSelectionModel = function(cfg){
11739    this.selNode = null;
11740    
11741    
11742    
11743    this.addEvents({
11744        /**
11745         * @event selectionchange
11746         * Fires when the selected node changes
11747         * @param {DefaultSelectionModel} this
11748         * @param {TreeNode} node the new selection
11749         */
11750        "selectionchange" : true,
11751
11752        /**
11753         * @event beforeselect
11754         * Fires before the selected node changes, return false to cancel the change
11755         * @param {DefaultSelectionModel} this
11756         * @param {TreeNode} node the new selection
11757         * @param {TreeNode} node the old selection
11758         */
11759        "beforeselect" : true
11760    });
11761    
11762     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
11763 };
11764
11765 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
11766     init : function(tree){
11767         this.tree = tree;
11768         tree.getTreeEl().on("keydown", this.onKeyDown, this);
11769         tree.on("click", this.onNodeClick, this);
11770     },
11771     
11772     onNodeClick : function(node, e){
11773         if (e.ctrlKey && this.selNode == node)  {
11774             this.unselect(node);
11775             return;
11776         }
11777         this.select(node);
11778     },
11779     
11780     /**
11781      * Select a node.
11782      * @param {TreeNode} node The node to select
11783      * @return {TreeNode} The selected node
11784      */
11785     select : function(node){
11786         var last = this.selNode;
11787         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
11788             if(last){
11789                 last.ui.onSelectedChange(false);
11790             }
11791             this.selNode = node;
11792             node.ui.onSelectedChange(true);
11793             this.fireEvent("selectionchange", this, node, last);
11794         }
11795         return node;
11796     },
11797     
11798     /**
11799      * Deselect a node.
11800      * @param {TreeNode} node The node to unselect
11801      */
11802     unselect : function(node){
11803         if(this.selNode == node){
11804             this.clearSelections();
11805         }    
11806     },
11807     
11808     /**
11809      * Clear all selections
11810      */
11811     clearSelections : function(){
11812         var n = this.selNode;
11813         if(n){
11814             n.ui.onSelectedChange(false);
11815             this.selNode = null;
11816             this.fireEvent("selectionchange", this, null);
11817         }
11818         return n;
11819     },
11820     
11821     /**
11822      * Get the selected node
11823      * @return {TreeNode} The selected node
11824      */
11825     getSelectedNode : function(){
11826         return this.selNode;    
11827     },
11828     
11829     /**
11830      * Returns true if the node is selected
11831      * @param {TreeNode} node The node to check
11832      * @return {Boolean}
11833      */
11834     isSelected : function(node){
11835         return this.selNode == node;  
11836     },
11837
11838     /**
11839      * Selects the node above the selected node in the tree, intelligently walking the nodes
11840      * @return TreeNode The new selection
11841      */
11842     selectPrevious : function(){
11843         var s = this.selNode || this.lastSelNode;
11844         if(!s){
11845             return null;
11846         }
11847         var ps = s.previousSibling;
11848         if(ps){
11849             if(!ps.isExpanded() || ps.childNodes.length < 1){
11850                 return this.select(ps);
11851             } else{
11852                 var lc = ps.lastChild;
11853                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
11854                     lc = lc.lastChild;
11855                 }
11856                 return this.select(lc);
11857             }
11858         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
11859             return this.select(s.parentNode);
11860         }
11861         return null;
11862     },
11863
11864     /**
11865      * Selects the node above the selected node in the tree, intelligently walking the nodes
11866      * @return TreeNode The new selection
11867      */
11868     selectNext : function(){
11869         var s = this.selNode || this.lastSelNode;
11870         if(!s){
11871             return null;
11872         }
11873         if(s.firstChild && s.isExpanded()){
11874              return this.select(s.firstChild);
11875          }else if(s.nextSibling){
11876              return this.select(s.nextSibling);
11877          }else if(s.parentNode){
11878             var newS = null;
11879             s.parentNode.bubble(function(){
11880                 if(this.nextSibling){
11881                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
11882                     return false;
11883                 }
11884             });
11885             return newS;
11886          }
11887         return null;
11888     },
11889
11890     onKeyDown : function(e){
11891         var s = this.selNode || this.lastSelNode;
11892         // undesirable, but required
11893         var sm = this;
11894         if(!s){
11895             return;
11896         }
11897         var k = e.getKey();
11898         switch(k){
11899              case e.DOWN:
11900                  e.stopEvent();
11901                  this.selectNext();
11902              break;
11903              case e.UP:
11904                  e.stopEvent();
11905                  this.selectPrevious();
11906              break;
11907              case e.RIGHT:
11908                  e.preventDefault();
11909                  if(s.hasChildNodes()){
11910                      if(!s.isExpanded()){
11911                          s.expand();
11912                      }else if(s.firstChild){
11913                          this.select(s.firstChild, e);
11914                      }
11915                  }
11916              break;
11917              case e.LEFT:
11918                  e.preventDefault();
11919                  if(s.hasChildNodes() && s.isExpanded()){
11920                      s.collapse();
11921                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
11922                      this.select(s.parentNode, e);
11923                  }
11924              break;
11925         };
11926     }
11927 });
11928
11929 /**
11930  * @class Roo.tree.MultiSelectionModel
11931  * @extends Roo.util.Observable
11932  * Multi selection for a TreePanel.
11933  * @param {Object} cfg Configuration
11934  */
11935 Roo.tree.MultiSelectionModel = function(){
11936    this.selNodes = [];
11937    this.selMap = {};
11938    this.addEvents({
11939        /**
11940         * @event selectionchange
11941         * Fires when the selected nodes change
11942         * @param {MultiSelectionModel} this
11943         * @param {Array} nodes Array of the selected nodes
11944         */
11945        "selectionchange" : true
11946    });
11947    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
11948    
11949 };
11950
11951 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
11952     init : function(tree){
11953         this.tree = tree;
11954         tree.getTreeEl().on("keydown", this.onKeyDown, this);
11955         tree.on("click", this.onNodeClick, this);
11956     },
11957     
11958     onNodeClick : function(node, e){
11959         this.select(node, e, e.ctrlKey);
11960     },
11961     
11962     /**
11963      * Select a node.
11964      * @param {TreeNode} node The node to select
11965      * @param {EventObject} e (optional) An event associated with the selection
11966      * @param {Boolean} keepExisting True to retain existing selections
11967      * @return {TreeNode} The selected node
11968      */
11969     select : function(node, e, keepExisting){
11970         if(keepExisting !== true){
11971             this.clearSelections(true);
11972         }
11973         if(this.isSelected(node)){
11974             this.lastSelNode = node;
11975             return node;
11976         }
11977         this.selNodes.push(node);
11978         this.selMap[node.id] = node;
11979         this.lastSelNode = node;
11980         node.ui.onSelectedChange(true);
11981         this.fireEvent("selectionchange", this, this.selNodes);
11982         return node;
11983     },
11984     
11985     /**
11986      * Deselect a node.
11987      * @param {TreeNode} node The node to unselect
11988      */
11989     unselect : function(node){
11990         if(this.selMap[node.id]){
11991             node.ui.onSelectedChange(false);
11992             var sn = this.selNodes;
11993             var index = -1;
11994             if(sn.indexOf){
11995                 index = sn.indexOf(node);
11996             }else{
11997                 for(var i = 0, len = sn.length; i < len; i++){
11998                     if(sn[i] == node){
11999                         index = i;
12000                         break;
12001                     }
12002                 }
12003             }
12004             if(index != -1){
12005                 this.selNodes.splice(index, 1);
12006             }
12007             delete this.selMap[node.id];
12008             this.fireEvent("selectionchange", this, this.selNodes);
12009         }
12010     },
12011     
12012     /**
12013      * Clear all selections
12014      */
12015     clearSelections : function(suppressEvent){
12016         var sn = this.selNodes;
12017         if(sn.length > 0){
12018             for(var i = 0, len = sn.length; i < len; i++){
12019                 sn[i].ui.onSelectedChange(false);
12020             }
12021             this.selNodes = [];
12022             this.selMap = {};
12023             if(suppressEvent !== true){
12024                 this.fireEvent("selectionchange", this, this.selNodes);
12025             }
12026         }
12027     },
12028     
12029     /**
12030      * Returns true if the node is selected
12031      * @param {TreeNode} node The node to check
12032      * @return {Boolean}
12033      */
12034     isSelected : function(node){
12035         return this.selMap[node.id] ? true : false;  
12036     },
12037     
12038     /**
12039      * Returns an array of the selected nodes
12040      * @return {Array}
12041      */
12042     getSelectedNodes : function(){
12043         return this.selNodes;    
12044     },
12045
12046     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
12047
12048     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
12049
12050     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
12051 });/*
12052  * Based on:
12053  * Ext JS Library 1.1.1
12054  * Copyright(c) 2006-2007, Ext JS, LLC.
12055  *
12056  * Originally Released Under LGPL - original licence link has changed is not relivant.
12057  *
12058  * Fork - LGPL
12059  * <script type="text/javascript">
12060  */
12061  
12062 /**
12063  * @class Roo.tree.TreeNode
12064  * @extends Roo.data.Node
12065  * @cfg {String} text The text for this node
12066  * @cfg {Boolean} expanded true to start the node expanded
12067  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
12068  * @cfg {Boolean} allowDrop false if this node cannot be drop on
12069  * @cfg {Boolean} disabled true to start the node disabled
12070  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
12071  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
12072  * @cfg {String} cls A css class to be added to the node
12073  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
12074  * @cfg {String} href URL of the link used for the node (defaults to #)
12075  * @cfg {String} hrefTarget target frame for the link
12076  * @cfg {String} qtip An Ext QuickTip for the node
12077  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
12078  * @cfg {Boolean} singleClickExpand True for single click expand on this node
12079  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
12080  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
12081  * (defaults to undefined with no checkbox rendered)
12082  * @constructor
12083  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
12084  */
12085 Roo.tree.TreeNode = function(attributes){
12086     attributes = attributes || {};
12087     if(typeof attributes == "string"){
12088         attributes = {text: attributes};
12089     }
12090     this.childrenRendered = false;
12091     this.rendered = false;
12092     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
12093     this.expanded = attributes.expanded === true;
12094     this.isTarget = attributes.isTarget !== false;
12095     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
12096     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
12097
12098     /**
12099      * Read-only. The text for this node. To change it use setText().
12100      * @type String
12101      */
12102     this.text = attributes.text;
12103     /**
12104      * True if this node is disabled.
12105      * @type Boolean
12106      */
12107     this.disabled = attributes.disabled === true;
12108
12109     this.addEvents({
12110         /**
12111         * @event textchange
12112         * Fires when the text for this node is changed
12113         * @param {Node} this This node
12114         * @param {String} text The new text
12115         * @param {String} oldText The old text
12116         */
12117         "textchange" : true,
12118         /**
12119         * @event beforeexpand
12120         * Fires before this node is expanded, return false to cancel.
12121         * @param {Node} this This node
12122         * @param {Boolean} deep
12123         * @param {Boolean} anim
12124         */
12125         "beforeexpand" : true,
12126         /**
12127         * @event beforecollapse
12128         * Fires before this node is collapsed, return false to cancel.
12129         * @param {Node} this This node
12130         * @param {Boolean} deep
12131         * @param {Boolean} anim
12132         */
12133         "beforecollapse" : true,
12134         /**
12135         * @event expand
12136         * Fires when this node is expanded
12137         * @param {Node} this This node
12138         */
12139         "expand" : true,
12140         /**
12141         * @event disabledchange
12142         * Fires when the disabled status of this node changes
12143         * @param {Node} this This node
12144         * @param {Boolean} disabled
12145         */
12146         "disabledchange" : true,
12147         /**
12148         * @event collapse
12149         * Fires when this node is collapsed
12150         * @param {Node} this This node
12151         */
12152         "collapse" : true,
12153         /**
12154         * @event beforeclick
12155         * Fires before click processing. Return false to cancel the default action.
12156         * @param {Node} this This node
12157         * @param {Roo.EventObject} e The event object
12158         */
12159         "beforeclick":true,
12160         /**
12161         * @event checkchange
12162         * Fires when a node with a checkbox's checked property changes
12163         * @param {Node} this This node
12164         * @param {Boolean} checked
12165         */
12166         "checkchange":true,
12167         /**
12168         * @event click
12169         * Fires when this node is clicked
12170         * @param {Node} this This node
12171         * @param {Roo.EventObject} e The event object
12172         */
12173         "click":true,
12174         /**
12175         * @event dblclick
12176         * Fires when this node is double clicked
12177         * @param {Node} this This node
12178         * @param {Roo.EventObject} e The event object
12179         */
12180         "dblclick":true,
12181         /**
12182         * @event contextmenu
12183         * Fires when this node is right clicked
12184         * @param {Node} this This node
12185         * @param {Roo.EventObject} e The event object
12186         */
12187         "contextmenu":true,
12188         /**
12189         * @event beforechildrenrendered
12190         * Fires right before the child nodes for this node are rendered
12191         * @param {Node} this This node
12192         */
12193         "beforechildrenrendered":true
12194     });
12195
12196     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
12197
12198     /**
12199      * Read-only. The UI for this node
12200      * @type TreeNodeUI
12201      */
12202     this.ui = new uiClass(this);
12203     
12204     // finally support items[]
12205     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
12206         return;
12207     }
12208     
12209     
12210     Roo.each(this.attributes.items, function(c) {
12211         this.appendChild(Roo.factory(c,Roo.Tree));
12212     }, this);
12213     delete this.attributes.items;
12214     
12215     
12216     
12217 };
12218 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
12219     preventHScroll: true,
12220     /**
12221      * Returns true if this node is expanded
12222      * @return {Boolean}
12223      */
12224     isExpanded : function(){
12225         return this.expanded;
12226     },
12227
12228     /**
12229      * Returns the UI object for this node
12230      * @return {TreeNodeUI}
12231      */
12232     getUI : function(){
12233         return this.ui;
12234     },
12235
12236     // private override
12237     setFirstChild : function(node){
12238         var of = this.firstChild;
12239         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
12240         if(this.childrenRendered && of && node != of){
12241             of.renderIndent(true, true);
12242         }
12243         if(this.rendered){
12244             this.renderIndent(true, true);
12245         }
12246     },
12247
12248     // private override
12249     setLastChild : function(node){
12250         var ol = this.lastChild;
12251         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
12252         if(this.childrenRendered && ol && node != ol){
12253             ol.renderIndent(true, true);
12254         }
12255         if(this.rendered){
12256             this.renderIndent(true, true);
12257         }
12258     },
12259
12260     // these methods are overridden to provide lazy rendering support
12261     // private override
12262     appendChild : function()
12263     {
12264         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
12265         if(node && this.childrenRendered){
12266             node.render();
12267         }
12268         this.ui.updateExpandIcon();
12269         return node;
12270     },
12271
12272     // private override
12273     removeChild : function(node){
12274         this.ownerTree.getSelectionModel().unselect(node);
12275         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
12276         // if it's been rendered remove dom node
12277         if(this.childrenRendered){
12278             node.ui.remove();
12279         }
12280         if(this.childNodes.length < 1){
12281             this.collapse(false, false);
12282         }else{
12283             this.ui.updateExpandIcon();
12284         }
12285         if(!this.firstChild) {
12286             this.childrenRendered = false;
12287         }
12288         return node;
12289     },
12290
12291     // private override
12292     insertBefore : function(node, refNode){
12293         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
12294         if(newNode && refNode && this.childrenRendered){
12295             node.render();
12296         }
12297         this.ui.updateExpandIcon();
12298         return newNode;
12299     },
12300
12301     /**
12302      * Sets the text for this node
12303      * @param {String} text
12304      */
12305     setText : function(text){
12306         var oldText = this.text;
12307         this.text = text;
12308         this.attributes.text = text;
12309         if(this.rendered){ // event without subscribing
12310             this.ui.onTextChange(this, text, oldText);
12311         }
12312         this.fireEvent("textchange", this, text, oldText);
12313     },
12314
12315     /**
12316      * Triggers selection of this node
12317      */
12318     select : function(){
12319         this.getOwnerTree().getSelectionModel().select(this);
12320     },
12321
12322     /**
12323      * Triggers deselection of this node
12324      */
12325     unselect : function(){
12326         this.getOwnerTree().getSelectionModel().unselect(this);
12327     },
12328
12329     /**
12330      * Returns true if this node is selected
12331      * @return {Boolean}
12332      */
12333     isSelected : function(){
12334         return this.getOwnerTree().getSelectionModel().isSelected(this);
12335     },
12336
12337     /**
12338      * Expand this node.
12339      * @param {Boolean} deep (optional) True to expand all children as well
12340      * @param {Boolean} anim (optional) false to cancel the default animation
12341      * @param {Function} callback (optional) A callback to be called when
12342      * expanding this node completes (does not wait for deep expand to complete).
12343      * Called with 1 parameter, this node.
12344      */
12345     expand : function(deep, anim, callback){
12346         if(!this.expanded){
12347             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
12348                 return;
12349             }
12350             if(!this.childrenRendered){
12351                 this.renderChildren();
12352             }
12353             this.expanded = true;
12354             
12355             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
12356                 this.ui.animExpand(function(){
12357                     this.fireEvent("expand", this);
12358                     if(typeof callback == "function"){
12359                         callback(this);
12360                     }
12361                     if(deep === true){
12362                         this.expandChildNodes(true);
12363                     }
12364                 }.createDelegate(this));
12365                 return;
12366             }else{
12367                 this.ui.expand();
12368                 this.fireEvent("expand", this);
12369                 if(typeof callback == "function"){
12370                     callback(this);
12371                 }
12372             }
12373         }else{
12374            if(typeof callback == "function"){
12375                callback(this);
12376            }
12377         }
12378         if(deep === true){
12379             this.expandChildNodes(true);
12380         }
12381     },
12382
12383     isHiddenRoot : function(){
12384         return this.isRoot && !this.getOwnerTree().rootVisible;
12385     },
12386
12387     /**
12388      * Collapse this node.
12389      * @param {Boolean} deep (optional) True to collapse all children as well
12390      * @param {Boolean} anim (optional) false to cancel the default animation
12391      */
12392     collapse : function(deep, anim){
12393         if(this.expanded && !this.isHiddenRoot()){
12394             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
12395                 return;
12396             }
12397             this.expanded = false;
12398             if((this.getOwnerTree().animate && anim !== false) || anim){
12399                 this.ui.animCollapse(function(){
12400                     this.fireEvent("collapse", this);
12401                     if(deep === true){
12402                         this.collapseChildNodes(true);
12403                     }
12404                 }.createDelegate(this));
12405                 return;
12406             }else{
12407                 this.ui.collapse();
12408                 this.fireEvent("collapse", this);
12409             }
12410         }
12411         if(deep === true){
12412             var cs = this.childNodes;
12413             for(var i = 0, len = cs.length; i < len; i++) {
12414                 cs[i].collapse(true, false);
12415             }
12416         }
12417     },
12418
12419     // private
12420     delayedExpand : function(delay){
12421         if(!this.expandProcId){
12422             this.expandProcId = this.expand.defer(delay, this);
12423         }
12424     },
12425
12426     // private
12427     cancelExpand : function(){
12428         if(this.expandProcId){
12429             clearTimeout(this.expandProcId);
12430         }
12431         this.expandProcId = false;
12432     },
12433
12434     /**
12435      * Toggles expanded/collapsed state of the node
12436      */
12437     toggle : function(){
12438         if(this.expanded){
12439             this.collapse();
12440         }else{
12441             this.expand();
12442         }
12443     },
12444
12445     /**
12446      * Ensures all parent nodes are expanded
12447      */
12448     ensureVisible : function(callback){
12449         var tree = this.getOwnerTree();
12450         tree.expandPath(this.parentNode.getPath(), false, function(){
12451             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
12452             Roo.callback(callback);
12453         }.createDelegate(this));
12454     },
12455
12456     /**
12457      * Expand all child nodes
12458      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
12459      */
12460     expandChildNodes : function(deep){
12461         var cs = this.childNodes;
12462         for(var i = 0, len = cs.length; i < len; i++) {
12463                 cs[i].expand(deep);
12464         }
12465     },
12466
12467     /**
12468      * Collapse all child nodes
12469      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
12470      */
12471     collapseChildNodes : function(deep){
12472         var cs = this.childNodes;
12473         for(var i = 0, len = cs.length; i < len; i++) {
12474                 cs[i].collapse(deep);
12475         }
12476     },
12477
12478     /**
12479      * Disables this node
12480      */
12481     disable : function(){
12482         this.disabled = true;
12483         this.unselect();
12484         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12485             this.ui.onDisableChange(this, true);
12486         }
12487         this.fireEvent("disabledchange", this, true);
12488     },
12489
12490     /**
12491      * Enables this node
12492      */
12493     enable : function(){
12494         this.disabled = false;
12495         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
12496             this.ui.onDisableChange(this, false);
12497         }
12498         this.fireEvent("disabledchange", this, false);
12499     },
12500
12501     // private
12502     renderChildren : function(suppressEvent){
12503         if(suppressEvent !== false){
12504             this.fireEvent("beforechildrenrendered", this);
12505         }
12506         var cs = this.childNodes;
12507         for(var i = 0, len = cs.length; i < len; i++){
12508             cs[i].render(true);
12509         }
12510         this.childrenRendered = true;
12511     },
12512
12513     // private
12514     sort : function(fn, scope){
12515         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
12516         if(this.childrenRendered){
12517             var cs = this.childNodes;
12518             for(var i = 0, len = cs.length; i < len; i++){
12519                 cs[i].render(true);
12520             }
12521         }
12522     },
12523
12524     // private
12525     render : function(bulkRender){
12526         this.ui.render(bulkRender);
12527         if(!this.rendered){
12528             this.rendered = true;
12529             if(this.expanded){
12530                 this.expanded = false;
12531                 this.expand(false, false);
12532             }
12533         }
12534     },
12535
12536     // private
12537     renderIndent : function(deep, refresh){
12538         if(refresh){
12539             this.ui.childIndent = null;
12540         }
12541         this.ui.renderIndent();
12542         if(deep === true && this.childrenRendered){
12543             var cs = this.childNodes;
12544             for(var i = 0, len = cs.length; i < len; i++){
12545                 cs[i].renderIndent(true, refresh);
12546             }
12547         }
12548     }
12549 });/*
12550  * Based on:
12551  * Ext JS Library 1.1.1
12552  * Copyright(c) 2006-2007, Ext JS, LLC.
12553  *
12554  * Originally Released Under LGPL - original licence link has changed is not relivant.
12555  *
12556  * Fork - LGPL
12557  * <script type="text/javascript">
12558  */
12559  
12560 /**
12561  * @class Roo.tree.AsyncTreeNode
12562  * @extends Roo.tree.TreeNode
12563  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
12564  * @constructor
12565  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
12566  */
12567  Roo.tree.AsyncTreeNode = function(config){
12568     this.loaded = false;
12569     this.loading = false;
12570     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
12571     /**
12572     * @event beforeload
12573     * Fires before this node is loaded, return false to cancel
12574     * @param {Node} this This node
12575     */
12576     this.addEvents({'beforeload':true, 'load': true});
12577     /**
12578     * @event load
12579     * Fires when this node is loaded
12580     * @param {Node} this This node
12581     */
12582     /**
12583      * The loader used by this node (defaults to using the tree's defined loader)
12584      * @type TreeLoader
12585      * @property loader
12586      */
12587 };
12588 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
12589     expand : function(deep, anim, callback){
12590         if(this.loading){ // if an async load is already running, waiting til it's done
12591             var timer;
12592             var f = function(){
12593                 if(!this.loading){ // done loading
12594                     clearInterval(timer);
12595                     this.expand(deep, anim, callback);
12596                 }
12597             }.createDelegate(this);
12598             timer = setInterval(f, 200);
12599             return;
12600         }
12601         if(!this.loaded){
12602             if(this.fireEvent("beforeload", this) === false){
12603                 return;
12604             }
12605             this.loading = true;
12606             this.ui.beforeLoad(this);
12607             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
12608             if(loader){
12609                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
12610                 return;
12611             }
12612         }
12613         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
12614     },
12615     
12616     /**
12617      * Returns true if this node is currently loading
12618      * @return {Boolean}
12619      */
12620     isLoading : function(){
12621         return this.loading;  
12622     },
12623     
12624     loadComplete : function(deep, anim, callback){
12625         this.loading = false;
12626         this.loaded = true;
12627         this.ui.afterLoad(this);
12628         this.fireEvent("load", this);
12629         this.expand(deep, anim, callback);
12630     },
12631     
12632     /**
12633      * Returns true if this node has been loaded
12634      * @return {Boolean}
12635      */
12636     isLoaded : function(){
12637         return this.loaded;
12638     },
12639     
12640     hasChildNodes : function(){
12641         if(!this.isLeaf() && !this.loaded){
12642             return true;
12643         }else{
12644             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
12645         }
12646     },
12647
12648     /**
12649      * Trigger a reload for this node
12650      * @param {Function} callback
12651      */
12652     reload : function(callback){
12653         this.collapse(false, false);
12654         while(this.firstChild){
12655             this.removeChild(this.firstChild);
12656         }
12657         this.childrenRendered = false;
12658         this.loaded = false;
12659         if(this.isHiddenRoot()){
12660             this.expanded = false;
12661         }
12662         this.expand(false, false, callback);
12663     }
12664 });/*
12665  * Based on:
12666  * Ext JS Library 1.1.1
12667  * Copyright(c) 2006-2007, Ext JS, LLC.
12668  *
12669  * Originally Released Under LGPL - original licence link has changed is not relivant.
12670  *
12671  * Fork - LGPL
12672  * <script type="text/javascript">
12673  */
12674  
12675 /**
12676  * @class Roo.tree.TreeNodeUI
12677  * @constructor
12678  * @param {Object} node The node to render
12679  * The TreeNode UI implementation is separate from the
12680  * tree implementation. Unless you are customizing the tree UI,
12681  * you should never have to use this directly.
12682  */
12683 Roo.tree.TreeNodeUI = function(node){
12684     this.node = node;
12685     this.rendered = false;
12686     this.animating = false;
12687     this.emptyIcon = Roo.BLANK_IMAGE_URL;
12688 };
12689
12690 Roo.tree.TreeNodeUI.prototype = {
12691     removeChild : function(node){
12692         if(this.rendered){
12693             this.ctNode.removeChild(node.ui.getEl());
12694         }
12695     },
12696
12697     beforeLoad : function(){
12698          this.addClass("x-tree-node-loading");
12699     },
12700
12701     afterLoad : function(){
12702          this.removeClass("x-tree-node-loading");
12703     },
12704
12705     onTextChange : function(node, text, oldText){
12706         if(this.rendered){
12707             this.textNode.innerHTML = text;
12708         }
12709     },
12710
12711     onDisableChange : function(node, state){
12712         this.disabled = state;
12713         if(state){
12714             this.addClass("x-tree-node-disabled");
12715         }else{
12716             this.removeClass("x-tree-node-disabled");
12717         }
12718     },
12719
12720     onSelectedChange : function(state){
12721         if(state){
12722             this.focus();
12723             this.addClass("x-tree-selected");
12724         }else{
12725             //this.blur();
12726             this.removeClass("x-tree-selected");
12727         }
12728     },
12729
12730     onMove : function(tree, node, oldParent, newParent, index, refNode){
12731         this.childIndent = null;
12732         if(this.rendered){
12733             var targetNode = newParent.ui.getContainer();
12734             if(!targetNode){//target not rendered
12735                 this.holder = document.createElement("div");
12736                 this.holder.appendChild(this.wrap);
12737                 return;
12738             }
12739             var insertBefore = refNode ? refNode.ui.getEl() : null;
12740             if(insertBefore){
12741                 targetNode.insertBefore(this.wrap, insertBefore);
12742             }else{
12743                 targetNode.appendChild(this.wrap);
12744             }
12745             this.node.renderIndent(true);
12746         }
12747     },
12748
12749     addClass : function(cls){
12750         if(this.elNode){
12751             Roo.fly(this.elNode).addClass(cls);
12752         }
12753     },
12754
12755     removeClass : function(cls){
12756         if(this.elNode){
12757             Roo.fly(this.elNode).removeClass(cls);
12758         }
12759     },
12760
12761     remove : function(){
12762         if(this.rendered){
12763             this.holder = document.createElement("div");
12764             this.holder.appendChild(this.wrap);
12765         }
12766     },
12767
12768     fireEvent : function(){
12769         return this.node.fireEvent.apply(this.node, arguments);
12770     },
12771
12772     initEvents : function(){
12773         this.node.on("move", this.onMove, this);
12774         var E = Roo.EventManager;
12775         var a = this.anchor;
12776
12777         var el = Roo.fly(a, '_treeui');
12778
12779         if(Roo.isOpera){ // opera render bug ignores the CSS
12780             el.setStyle("text-decoration", "none");
12781         }
12782
12783         el.on("click", this.onClick, this);
12784         el.on("dblclick", this.onDblClick, this);
12785
12786         if(this.checkbox){
12787             Roo.EventManager.on(this.checkbox,
12788                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
12789         }
12790
12791         el.on("contextmenu", this.onContextMenu, this);
12792
12793         var icon = Roo.fly(this.iconNode);
12794         icon.on("click", this.onClick, this);
12795         icon.on("dblclick", this.onDblClick, this);
12796         icon.on("contextmenu", this.onContextMenu, this);
12797         E.on(this.ecNode, "click", this.ecClick, this, true);
12798
12799         if(this.node.disabled){
12800             this.addClass("x-tree-node-disabled");
12801         }
12802         if(this.node.hidden){
12803             this.addClass("x-tree-node-disabled");
12804         }
12805         var ot = this.node.getOwnerTree();
12806         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
12807         if(dd && (!this.node.isRoot || ot.rootVisible)){
12808             Roo.dd.Registry.register(this.elNode, {
12809                 node: this.node,
12810                 handles: this.getDDHandles(),
12811                 isHandle: false
12812             });
12813         }
12814     },
12815
12816     getDDHandles : function(){
12817         return [this.iconNode, this.textNode];
12818     },
12819
12820     hide : function(){
12821         if(this.rendered){
12822             this.wrap.style.display = "none";
12823         }
12824     },
12825
12826     show : function(){
12827         if(this.rendered){
12828             this.wrap.style.display = "";
12829         }
12830     },
12831
12832     onContextMenu : function(e){
12833         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
12834             e.preventDefault();
12835             this.focus();
12836             this.fireEvent("contextmenu", this.node, e);
12837         }
12838     },
12839
12840     onClick : function(e){
12841         if(this.dropping){
12842             e.stopEvent();
12843             return;
12844         }
12845         if(this.fireEvent("beforeclick", this.node, e) !== false){
12846             if(!this.disabled && this.node.attributes.href){
12847                 this.fireEvent("click", this.node, e);
12848                 return;
12849             }
12850             e.preventDefault();
12851             if(this.disabled){
12852                 return;
12853             }
12854
12855             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
12856                 this.node.toggle();
12857             }
12858
12859             this.fireEvent("click", this.node, e);
12860         }else{
12861             e.stopEvent();
12862         }
12863     },
12864
12865     onDblClick : function(e){
12866         e.preventDefault();
12867         if(this.disabled){
12868             return;
12869         }
12870         if(this.checkbox){
12871             this.toggleCheck();
12872         }
12873         if(!this.animating && this.node.hasChildNodes()){
12874             this.node.toggle();
12875         }
12876         this.fireEvent("dblclick", this.node, e);
12877     },
12878
12879     onCheckChange : function(){
12880         var checked = this.checkbox.checked;
12881         this.node.attributes.checked = checked;
12882         this.fireEvent('checkchange', this.node, checked);
12883     },
12884
12885     ecClick : function(e){
12886         if(!this.animating && this.node.hasChildNodes()){
12887             this.node.toggle();
12888         }
12889     },
12890
12891     startDrop : function(){
12892         this.dropping = true;
12893     },
12894
12895     // delayed drop so the click event doesn't get fired on a drop
12896     endDrop : function(){
12897        setTimeout(function(){
12898            this.dropping = false;
12899        }.createDelegate(this), 50);
12900     },
12901
12902     expand : function(){
12903         this.updateExpandIcon();
12904         this.ctNode.style.display = "";
12905     },
12906
12907     focus : function(){
12908         if(!this.node.preventHScroll){
12909             try{this.anchor.focus();
12910             }catch(e){}
12911         }else if(!Roo.isIE){
12912             try{
12913                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
12914                 var l = noscroll.scrollLeft;
12915                 this.anchor.focus();
12916                 noscroll.scrollLeft = l;
12917             }catch(e){}
12918         }
12919     },
12920
12921     toggleCheck : function(value){
12922         var cb = this.checkbox;
12923         if(cb){
12924             cb.checked = (value === undefined ? !cb.checked : value);
12925         }
12926     },
12927
12928     blur : function(){
12929         try{
12930             this.anchor.blur();
12931         }catch(e){}
12932     },
12933
12934     animExpand : function(callback){
12935         var ct = Roo.get(this.ctNode);
12936         ct.stopFx();
12937         if(!this.node.hasChildNodes()){
12938             this.updateExpandIcon();
12939             this.ctNode.style.display = "";
12940             Roo.callback(callback);
12941             return;
12942         }
12943         this.animating = true;
12944         this.updateExpandIcon();
12945
12946         ct.slideIn('t', {
12947            callback : function(){
12948                this.animating = false;
12949                Roo.callback(callback);
12950             },
12951             scope: this,
12952             duration: this.node.ownerTree.duration || .25
12953         });
12954     },
12955
12956     highlight : function(){
12957         var tree = this.node.getOwnerTree();
12958         Roo.fly(this.wrap).highlight(
12959             tree.hlColor || "C3DAF9",
12960             {endColor: tree.hlBaseColor}
12961         );
12962     },
12963
12964     collapse : function(){
12965         this.updateExpandIcon();
12966         this.ctNode.style.display = "none";
12967     },
12968
12969     animCollapse : function(callback){
12970         var ct = Roo.get(this.ctNode);
12971         ct.enableDisplayMode('block');
12972         ct.stopFx();
12973
12974         this.animating = true;
12975         this.updateExpandIcon();
12976
12977         ct.slideOut('t', {
12978             callback : function(){
12979                this.animating = false;
12980                Roo.callback(callback);
12981             },
12982             scope: this,
12983             duration: this.node.ownerTree.duration || .25
12984         });
12985     },
12986
12987     getContainer : function(){
12988         return this.ctNode;
12989     },
12990
12991     getEl : function(){
12992         return this.wrap;
12993     },
12994
12995     appendDDGhost : function(ghostNode){
12996         ghostNode.appendChild(this.elNode.cloneNode(true));
12997     },
12998
12999     getDDRepairXY : function(){
13000         return Roo.lib.Dom.getXY(this.iconNode);
13001     },
13002
13003     onRender : function(){
13004         this.render();
13005     },
13006
13007     render : function(bulkRender){
13008         var n = this.node, a = n.attributes;
13009         var targetNode = n.parentNode ?
13010               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
13011
13012         if(!this.rendered){
13013             this.rendered = true;
13014
13015             this.renderElements(n, a, targetNode, bulkRender);
13016
13017             if(a.qtip){
13018                if(this.textNode.setAttributeNS){
13019                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
13020                    if(a.qtipTitle){
13021                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
13022                    }
13023                }else{
13024                    this.textNode.setAttribute("ext:qtip", a.qtip);
13025                    if(a.qtipTitle){
13026                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
13027                    }
13028                }
13029             }else if(a.qtipCfg){
13030                 a.qtipCfg.target = Roo.id(this.textNode);
13031                 Roo.QuickTips.register(a.qtipCfg);
13032             }
13033             this.initEvents();
13034             if(!this.node.expanded){
13035                 this.updateExpandIcon();
13036             }
13037         }else{
13038             if(bulkRender === true) {
13039                 targetNode.appendChild(this.wrap);
13040             }
13041         }
13042     },
13043
13044     renderElements : function(n, a, targetNode, bulkRender)
13045     {
13046         // add some indent caching, this helps performance when rendering a large tree
13047         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
13048         var t = n.getOwnerTree();
13049         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
13050         if (typeof(n.attributes.html) != 'undefined') {
13051             txt = n.attributes.html;
13052         }
13053         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
13054         var cb = typeof a.checked == 'boolean';
13055         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
13056         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
13057             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
13058             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
13059             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
13060             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
13061             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
13062              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
13063                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
13064             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
13065             "</li>"];
13066
13067         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
13068             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
13069                                 n.nextSibling.ui.getEl(), buf.join(""));
13070         }else{
13071             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
13072         }
13073
13074         this.elNode = this.wrap.childNodes[0];
13075         this.ctNode = this.wrap.childNodes[1];
13076         var cs = this.elNode.childNodes;
13077         this.indentNode = cs[0];
13078         this.ecNode = cs[1];
13079         this.iconNode = cs[2];
13080         var index = 3;
13081         if(cb){
13082             this.checkbox = cs[3];
13083             index++;
13084         }
13085         this.anchor = cs[index];
13086         this.textNode = cs[index].firstChild;
13087     },
13088
13089     getAnchor : function(){
13090         return this.anchor;
13091     },
13092
13093     getTextEl : function(){
13094         return this.textNode;
13095     },
13096
13097     getIconEl : function(){
13098         return this.iconNode;
13099     },
13100
13101     isChecked : function(){
13102         return this.checkbox ? this.checkbox.checked : false;
13103     },
13104
13105     updateExpandIcon : function(){
13106         if(this.rendered){
13107             var n = this.node, c1, c2;
13108             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
13109             var hasChild = n.hasChildNodes();
13110             if(hasChild){
13111                 if(n.expanded){
13112                     cls += "-minus";
13113                     c1 = "x-tree-node-collapsed";
13114                     c2 = "x-tree-node-expanded";
13115                 }else{
13116                     cls += "-plus";
13117                     c1 = "x-tree-node-expanded";
13118                     c2 = "x-tree-node-collapsed";
13119                 }
13120                 if(this.wasLeaf){
13121                     this.removeClass("x-tree-node-leaf");
13122                     this.wasLeaf = false;
13123                 }
13124                 if(this.c1 != c1 || this.c2 != c2){
13125                     Roo.fly(this.elNode).replaceClass(c1, c2);
13126                     this.c1 = c1; this.c2 = c2;
13127                 }
13128             }else{
13129                 // this changes non-leafs into leafs if they have no children.
13130                 // it's not very rational behaviour..
13131                 
13132                 if(!this.wasLeaf && this.node.leaf){
13133                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
13134                     delete this.c1;
13135                     delete this.c2;
13136                     this.wasLeaf = true;
13137                 }
13138             }
13139             var ecc = "x-tree-ec-icon "+cls;
13140             if(this.ecc != ecc){
13141                 this.ecNode.className = ecc;
13142                 this.ecc = ecc;
13143             }
13144         }
13145     },
13146
13147     getChildIndent : function(){
13148         if(!this.childIndent){
13149             var buf = [];
13150             var p = this.node;
13151             while(p){
13152                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
13153                     if(!p.isLast()) {
13154                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
13155                     } else {
13156                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
13157                     }
13158                 }
13159                 p = p.parentNode;
13160             }
13161             this.childIndent = buf.join("");
13162         }
13163         return this.childIndent;
13164     },
13165
13166     renderIndent : function(){
13167         if(this.rendered){
13168             var indent = "";
13169             var p = this.node.parentNode;
13170             if(p){
13171                 indent = p.ui.getChildIndent();
13172             }
13173             if(this.indentMarkup != indent){ // don't rerender if not required
13174                 this.indentNode.innerHTML = indent;
13175                 this.indentMarkup = indent;
13176             }
13177             this.updateExpandIcon();
13178         }
13179     }
13180 };
13181
13182 Roo.tree.RootTreeNodeUI = function(){
13183     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
13184 };
13185 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
13186     render : function(){
13187         if(!this.rendered){
13188             var targetNode = this.node.ownerTree.innerCt.dom;
13189             this.node.expanded = true;
13190             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
13191             this.wrap = this.ctNode = targetNode.firstChild;
13192         }
13193     },
13194     collapse : function(){
13195     },
13196     expand : function(){
13197     }
13198 });/*
13199  * Based on:
13200  * Ext JS Library 1.1.1
13201  * Copyright(c) 2006-2007, Ext JS, LLC.
13202  *
13203  * Originally Released Under LGPL - original licence link has changed is not relivant.
13204  *
13205  * Fork - LGPL
13206  * <script type="text/javascript">
13207  */
13208 /**
13209  * @class Roo.tree.TreeLoader
13210  * @extends Roo.util.Observable
13211  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
13212  * nodes from a specified URL. The response must be a javascript Array definition
13213  * who's elements are node definition objects. eg:
13214  * <pre><code>
13215 {  success : true,
13216    data :      [
13217    
13218     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
13219     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
13220     ]
13221 }
13222
13223
13224 </code></pre>
13225  * <br><br>
13226  * The old style respose with just an array is still supported, but not recommended.
13227  * <br><br>
13228  *
13229  * A server request is sent, and child nodes are loaded only when a node is expanded.
13230  * The loading node's id is passed to the server under the parameter name "node" to
13231  * enable the server to produce the correct child nodes.
13232  * <br><br>
13233  * To pass extra parameters, an event handler may be attached to the "beforeload"
13234  * event, and the parameters specified in the TreeLoader's baseParams property:
13235  * <pre><code>
13236     myTreeLoader.on("beforeload", function(treeLoader, node) {
13237         this.baseParams.category = node.attributes.category;
13238     }, this);
13239     
13240 </code></pre>
13241  *
13242  * This would pass an HTTP parameter called "category" to the server containing
13243  * the value of the Node's "category" attribute.
13244  * @constructor
13245  * Creates a new Treeloader.
13246  * @param {Object} config A config object containing config properties.
13247  */
13248 Roo.tree.TreeLoader = function(config){
13249     this.baseParams = {};
13250     this.requestMethod = "POST";
13251     Roo.apply(this, config);
13252
13253     this.addEvents({
13254     
13255         /**
13256          * @event beforeload
13257          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
13258          * @param {Object} This TreeLoader object.
13259          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13260          * @param {Object} callback The callback function specified in the {@link #load} call.
13261          */
13262         beforeload : true,
13263         /**
13264          * @event load
13265          * Fires when the node has been successfuly loaded.
13266          * @param {Object} This TreeLoader object.
13267          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13268          * @param {Object} response The response object containing the data from the server.
13269          */
13270         load : true,
13271         /**
13272          * @event loadexception
13273          * Fires if the network request failed.
13274          * @param {Object} This TreeLoader object.
13275          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
13276          * @param {Object} response The response object containing the data from the server.
13277          */
13278         loadexception : true,
13279         /**
13280          * @event create
13281          * Fires before a node is created, enabling you to return custom Node types 
13282          * @param {Object} This TreeLoader object.
13283          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
13284          */
13285         create : true
13286     });
13287
13288     Roo.tree.TreeLoader.superclass.constructor.call(this);
13289 };
13290
13291 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
13292     /**
13293     * @cfg {String} dataUrl The URL from which to request a Json string which
13294     * specifies an array of node definition object representing the child nodes
13295     * to be loaded.
13296     */
13297     /**
13298     * @cfg {String} requestMethod either GET or POST
13299     * defaults to POST (due to BC)
13300     * to be loaded.
13301     */
13302     /**
13303     * @cfg {Object} baseParams (optional) An object containing properties which
13304     * specify HTTP parameters to be passed to each request for child nodes.
13305     */
13306     /**
13307     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
13308     * created by this loader. If the attributes sent by the server have an attribute in this object,
13309     * they take priority.
13310     */
13311     /**
13312     * @cfg {Object} uiProviders (optional) An object containing properties which
13313     * 
13314     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
13315     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
13316     * <i>uiProvider</i> attribute of a returned child node is a string rather
13317     * than a reference to a TreeNodeUI implementation, this that string value
13318     * is used as a property name in the uiProviders object. You can define the provider named
13319     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
13320     */
13321     uiProviders : {},
13322
13323     /**
13324     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
13325     * child nodes before loading.
13326     */
13327     clearOnLoad : true,
13328
13329     /**
13330     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
13331     * property on loading, rather than expecting an array. (eg. more compatible to a standard
13332     * Grid query { data : [ .....] }
13333     */
13334     
13335     root : false,
13336      /**
13337     * @cfg {String} queryParam (optional) 
13338     * Name of the query as it will be passed on the querystring (defaults to 'node')
13339     * eg. the request will be ?node=[id]
13340     */
13341     
13342     
13343     queryParam: false,
13344     
13345     /**
13346      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
13347      * This is called automatically when a node is expanded, but may be used to reload
13348      * a node (or append new children if the {@link #clearOnLoad} option is false.)
13349      * @param {Roo.tree.TreeNode} node
13350      * @param {Function} callback
13351      */
13352     load : function(node, callback){
13353         if(this.clearOnLoad){
13354             while(node.firstChild){
13355                 node.removeChild(node.firstChild);
13356             }
13357         }
13358         if(node.attributes.children){ // preloaded json children
13359             var cs = node.attributes.children;
13360             for(var i = 0, len = cs.length; i < len; i++){
13361                 node.appendChild(this.createNode(cs[i]));
13362             }
13363             if(typeof callback == "function"){
13364                 callback();
13365             }
13366         }else if(this.dataUrl){
13367             this.requestData(node, callback);
13368         }
13369     },
13370
13371     getParams: function(node){
13372         var buf = [], bp = this.baseParams;
13373         for(var key in bp){
13374             if(typeof bp[key] != "function"){
13375                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
13376             }
13377         }
13378         var n = this.queryParam === false ? 'node' : this.queryParam;
13379         buf.push(n + "=", encodeURIComponent(node.id));
13380         return buf.join("");
13381     },
13382
13383     requestData : function(node, callback){
13384         if(this.fireEvent("beforeload", this, node, callback) !== false){
13385             this.transId = Roo.Ajax.request({
13386                 method:this.requestMethod,
13387                 url: this.dataUrl||this.url,
13388                 success: this.handleResponse,
13389                 failure: this.handleFailure,
13390                 scope: this,
13391                 argument: {callback: callback, node: node},
13392                 params: this.getParams(node)
13393             });
13394         }else{
13395             // if the load is cancelled, make sure we notify
13396             // the node that we are done
13397             if(typeof callback == "function"){
13398                 callback();
13399             }
13400         }
13401     },
13402
13403     isLoading : function(){
13404         return this.transId ? true : false;
13405     },
13406
13407     abort : function(){
13408         if(this.isLoading()){
13409             Roo.Ajax.abort(this.transId);
13410         }
13411     },
13412
13413     // private
13414     createNode : function(attr)
13415     {
13416         // apply baseAttrs, nice idea Corey!
13417         if(this.baseAttrs){
13418             Roo.applyIf(attr, this.baseAttrs);
13419         }
13420         if(this.applyLoader !== false){
13421             attr.loader = this;
13422         }
13423         // uiProvider = depreciated..
13424         
13425         if(typeof(attr.uiProvider) == 'string'){
13426            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
13427                 /**  eval:var:attr */ eval(attr.uiProvider);
13428         }
13429         if(typeof(this.uiProviders['default']) != 'undefined') {
13430             attr.uiProvider = this.uiProviders['default'];
13431         }
13432         
13433         this.fireEvent('create', this, attr);
13434         
13435         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
13436         return(attr.leaf ?
13437                         new Roo.tree.TreeNode(attr) :
13438                         new Roo.tree.AsyncTreeNode(attr));
13439     },
13440
13441     processResponse : function(response, node, callback)
13442     {
13443         var json = response.responseText;
13444         try {
13445             
13446             var o = Roo.decode(json);
13447             
13448             if (this.root === false && typeof(o.success) != undefined) {
13449                 this.root = 'data'; // the default behaviour for list like data..
13450                 }
13451                 
13452             if (this.root !== false &&  !o.success) {
13453                 // it's a failure condition.
13454                 var a = response.argument;
13455                 this.fireEvent("loadexception", this, a.node, response);
13456                 Roo.log("Load failed - should have a handler really");
13457                 return;
13458             }
13459             
13460             
13461             
13462             if (this.root !== false) {
13463                  o = o[this.root];
13464             }
13465             
13466             for(var i = 0, len = o.length; i < len; i++){
13467                 var n = this.createNode(o[i]);
13468                 if(n){
13469                     node.appendChild(n);
13470                 }
13471             }
13472             if(typeof callback == "function"){
13473                 callback(this, node);
13474             }
13475         }catch(e){
13476             this.handleFailure(response);
13477         }
13478     },
13479
13480     handleResponse : function(response){
13481         this.transId = false;
13482         var a = response.argument;
13483         this.processResponse(response, a.node, a.callback);
13484         this.fireEvent("load", this, a.node, response);
13485     },
13486
13487     handleFailure : function(response)
13488     {
13489         // should handle failure better..
13490         this.transId = false;
13491         var a = response.argument;
13492         this.fireEvent("loadexception", this, a.node, response);
13493         if(typeof a.callback == "function"){
13494             a.callback(this, a.node);
13495         }
13496     }
13497 });/*
13498  * Based on:
13499  * Ext JS Library 1.1.1
13500  * Copyright(c) 2006-2007, Ext JS, LLC.
13501  *
13502  * Originally Released Under LGPL - original licence link has changed is not relivant.
13503  *
13504  * Fork - LGPL
13505  * <script type="text/javascript">
13506  */
13507
13508 /**
13509 * @class Roo.tree.TreeFilter
13510 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
13511 * @param {TreePanel} tree
13512 * @param {Object} config (optional)
13513  */
13514 Roo.tree.TreeFilter = function(tree, config){
13515     this.tree = tree;
13516     this.filtered = {};
13517     Roo.apply(this, config);
13518 };
13519
13520 Roo.tree.TreeFilter.prototype = {
13521     clearBlank:false,
13522     reverse:false,
13523     autoClear:false,
13524     remove:false,
13525
13526      /**
13527      * Filter the data by a specific attribute.
13528      * @param {String/RegExp} value Either string that the attribute value
13529      * should start with or a RegExp to test against the attribute
13530      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
13531      * @param {TreeNode} startNode (optional) The node to start the filter at.
13532      */
13533     filter : function(value, attr, startNode){
13534         attr = attr || "text";
13535         var f;
13536         if(typeof value == "string"){
13537             var vlen = value.length;
13538             // auto clear empty filter
13539             if(vlen == 0 && this.clearBlank){
13540                 this.clear();
13541                 return;
13542             }
13543             value = value.toLowerCase();
13544             f = function(n){
13545                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
13546             };
13547         }else if(value.exec){ // regex?
13548             f = function(n){
13549                 return value.test(n.attributes[attr]);
13550             };
13551         }else{
13552             throw 'Illegal filter type, must be string or regex';
13553         }
13554         this.filterBy(f, null, startNode);
13555         },
13556
13557     /**
13558      * Filter by a function. The passed function will be called with each
13559      * node in the tree (or from the startNode). If the function returns true, the node is kept
13560      * otherwise it is filtered. If a node is filtered, its children are also filtered.
13561      * @param {Function} fn The filter function
13562      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
13563      */
13564     filterBy : function(fn, scope, startNode){
13565         startNode = startNode || this.tree.root;
13566         if(this.autoClear){
13567             this.clear();
13568         }
13569         var af = this.filtered, rv = this.reverse;
13570         var f = function(n){
13571             if(n == startNode){
13572                 return true;
13573             }
13574             if(af[n.id]){
13575                 return false;
13576             }
13577             var m = fn.call(scope || n, n);
13578             if(!m || rv){
13579                 af[n.id] = n;
13580                 n.ui.hide();
13581                 return false;
13582             }
13583             return true;
13584         };
13585         startNode.cascade(f);
13586         if(this.remove){
13587            for(var id in af){
13588                if(typeof id != "function"){
13589                    var n = af[id];
13590                    if(n && n.parentNode){
13591                        n.parentNode.removeChild(n);
13592                    }
13593                }
13594            }
13595         }
13596     },
13597
13598     /**
13599      * Clears the current filter. Note: with the "remove" option
13600      * set a filter cannot be cleared.
13601      */
13602     clear : function(){
13603         var t = this.tree;
13604         var af = this.filtered;
13605         for(var id in af){
13606             if(typeof id != "function"){
13607                 var n = af[id];
13608                 if(n){
13609                     n.ui.show();
13610                 }
13611             }
13612         }
13613         this.filtered = {};
13614     }
13615 };
13616 /*
13617  * Based on:
13618  * Ext JS Library 1.1.1
13619  * Copyright(c) 2006-2007, Ext JS, LLC.
13620  *
13621  * Originally Released Under LGPL - original licence link has changed is not relivant.
13622  *
13623  * Fork - LGPL
13624  * <script type="text/javascript">
13625  */
13626  
13627
13628 /**
13629  * @class Roo.tree.TreeSorter
13630  * Provides sorting of nodes in a TreePanel
13631  * 
13632  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
13633  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
13634  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
13635  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
13636  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
13637  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
13638  * @constructor
13639  * @param {TreePanel} tree
13640  * @param {Object} config
13641  */
13642 Roo.tree.TreeSorter = function(tree, config){
13643     Roo.apply(this, config);
13644     tree.on("beforechildrenrendered", this.doSort, this);
13645     tree.on("append", this.updateSort, this);
13646     tree.on("insert", this.updateSort, this);
13647     
13648     var dsc = this.dir && this.dir.toLowerCase() == "desc";
13649     var p = this.property || "text";
13650     var sortType = this.sortType;
13651     var fs = this.folderSort;
13652     var cs = this.caseSensitive === true;
13653     var leafAttr = this.leafAttr || 'leaf';
13654
13655     this.sortFn = function(n1, n2){
13656         if(fs){
13657             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
13658                 return 1;
13659             }
13660             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
13661                 return -1;
13662             }
13663         }
13664         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
13665         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
13666         if(v1 < v2){
13667                         return dsc ? +1 : -1;
13668                 }else if(v1 > v2){
13669                         return dsc ? -1 : +1;
13670         }else{
13671                 return 0;
13672         }
13673     };
13674 };
13675
13676 Roo.tree.TreeSorter.prototype = {
13677     doSort : function(node){
13678         node.sort(this.sortFn);
13679     },
13680     
13681     compareNodes : function(n1, n2){
13682         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
13683     },
13684     
13685     updateSort : function(tree, node){
13686         if(node.childrenRendered){
13687             this.doSort.defer(1, this, [node]);
13688         }
13689     }
13690 };/*
13691  * Based on:
13692  * Ext JS Library 1.1.1
13693  * Copyright(c) 2006-2007, Ext JS, LLC.
13694  *
13695  * Originally Released Under LGPL - original licence link has changed is not relivant.
13696  *
13697  * Fork - LGPL
13698  * <script type="text/javascript">
13699  */
13700
13701 if(Roo.dd.DropZone){
13702     
13703 Roo.tree.TreeDropZone = function(tree, config){
13704     this.allowParentInsert = false;
13705     this.allowContainerDrop = false;
13706     this.appendOnly = false;
13707     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
13708     this.tree = tree;
13709     this.lastInsertClass = "x-tree-no-status";
13710     this.dragOverData = {};
13711 };
13712
13713 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
13714     ddGroup : "TreeDD",
13715     scroll:  true,
13716     
13717     expandDelay : 1000,
13718     
13719     expandNode : function(node){
13720         if(node.hasChildNodes() && !node.isExpanded()){
13721             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
13722         }
13723     },
13724     
13725     queueExpand : function(node){
13726         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
13727     },
13728     
13729     cancelExpand : function(){
13730         if(this.expandProcId){
13731             clearTimeout(this.expandProcId);
13732             this.expandProcId = false;
13733         }
13734     },
13735     
13736     isValidDropPoint : function(n, pt, dd, e, data){
13737         if(!n || !data){ return false; }
13738         var targetNode = n.node;
13739         var dropNode = data.node;
13740         // default drop rules
13741         if(!(targetNode && targetNode.isTarget && pt)){
13742             return false;
13743         }
13744         if(pt == "append" && targetNode.allowChildren === false){
13745             return false;
13746         }
13747         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
13748             return false;
13749         }
13750         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
13751             return false;
13752         }
13753         // reuse the object
13754         var overEvent = this.dragOverData;
13755         overEvent.tree = this.tree;
13756         overEvent.target = targetNode;
13757         overEvent.data = data;
13758         overEvent.point = pt;
13759         overEvent.source = dd;
13760         overEvent.rawEvent = e;
13761         overEvent.dropNode = dropNode;
13762         overEvent.cancel = false;  
13763         var result = this.tree.fireEvent("nodedragover", overEvent);
13764         return overEvent.cancel === false && result !== false;
13765     },
13766     
13767     getDropPoint : function(e, n, dd)
13768     {
13769         var tn = n.node;
13770         if(tn.isRoot){
13771             return tn.allowChildren !== false ? "append" : false; // always append for root
13772         }
13773         var dragEl = n.ddel;
13774         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
13775         var y = Roo.lib.Event.getPageY(e);
13776         //var noAppend = tn.allowChildren === false || tn.isLeaf();
13777         
13778         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
13779         var noAppend = tn.allowChildren === false;
13780         if(this.appendOnly || tn.parentNode.allowChildren === false){
13781             return noAppend ? false : "append";
13782         }
13783         var noBelow = false;
13784         if(!this.allowParentInsert){
13785             noBelow = tn.hasChildNodes() && tn.isExpanded();
13786         }
13787         var q = (b - t) / (noAppend ? 2 : 3);
13788         if(y >= t && y < (t + q)){
13789             return "above";
13790         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
13791             return "below";
13792         }else{
13793             return "append";
13794         }
13795     },
13796     
13797     onNodeEnter : function(n, dd, e, data)
13798     {
13799         this.cancelExpand();
13800     },
13801     
13802     onNodeOver : function(n, dd, e, data)
13803     {
13804        
13805         var pt = this.getDropPoint(e, n, dd);
13806         var node = n.node;
13807         
13808         // auto node expand check
13809         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
13810             this.queueExpand(node);
13811         }else if(pt != "append"){
13812             this.cancelExpand();
13813         }
13814         
13815         // set the insert point style on the target node
13816         var returnCls = this.dropNotAllowed;
13817         if(this.isValidDropPoint(n, pt, dd, e, data)){
13818            if(pt){
13819                var el = n.ddel;
13820                var cls;
13821                if(pt == "above"){
13822                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
13823                    cls = "x-tree-drag-insert-above";
13824                }else if(pt == "below"){
13825                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
13826                    cls = "x-tree-drag-insert-below";
13827                }else{
13828                    returnCls = "x-tree-drop-ok-append";
13829                    cls = "x-tree-drag-append";
13830                }
13831                if(this.lastInsertClass != cls){
13832                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
13833                    this.lastInsertClass = cls;
13834                }
13835            }
13836        }
13837        return returnCls;
13838     },
13839     
13840     onNodeOut : function(n, dd, e, data){
13841         
13842         this.cancelExpand();
13843         this.removeDropIndicators(n);
13844     },
13845     
13846     onNodeDrop : function(n, dd, e, data){
13847         var point = this.getDropPoint(e, n, dd);
13848         var targetNode = n.node;
13849         targetNode.ui.startDrop();
13850         if(!this.isValidDropPoint(n, point, dd, e, data)){
13851             targetNode.ui.endDrop();
13852             return false;
13853         }
13854         // first try to find the drop node
13855         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
13856         var dropEvent = {
13857             tree : this.tree,
13858             target: targetNode,
13859             data: data,
13860             point: point,
13861             source: dd,
13862             rawEvent: e,
13863             dropNode: dropNode,
13864             cancel: !dropNode   
13865         };
13866         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
13867         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
13868             targetNode.ui.endDrop();
13869             return false;
13870         }
13871         // allow target changing
13872         targetNode = dropEvent.target;
13873         if(point == "append" && !targetNode.isExpanded()){
13874             targetNode.expand(false, null, function(){
13875                 this.completeDrop(dropEvent);
13876             }.createDelegate(this));
13877         }else{
13878             this.completeDrop(dropEvent);
13879         }
13880         return true;
13881     },
13882     
13883     completeDrop : function(de){
13884         var ns = de.dropNode, p = de.point, t = de.target;
13885         if(!(ns instanceof Array)){
13886             ns = [ns];
13887         }
13888         var n;
13889         for(var i = 0, len = ns.length; i < len; i++){
13890             n = ns[i];
13891             if(p == "above"){
13892                 t.parentNode.insertBefore(n, t);
13893             }else if(p == "below"){
13894                 t.parentNode.insertBefore(n, t.nextSibling);
13895             }else{
13896                 t.appendChild(n);
13897             }
13898         }
13899         n.ui.focus();
13900         if(this.tree.hlDrop){
13901             n.ui.highlight();
13902         }
13903         t.ui.endDrop();
13904         this.tree.fireEvent("nodedrop", de);
13905     },
13906     
13907     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
13908         if(this.tree.hlDrop){
13909             dropNode.ui.focus();
13910             dropNode.ui.highlight();
13911         }
13912         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
13913     },
13914     
13915     getTree : function(){
13916         return this.tree;
13917     },
13918     
13919     removeDropIndicators : function(n){
13920         if(n && n.ddel){
13921             var el = n.ddel;
13922             Roo.fly(el).removeClass([
13923                     "x-tree-drag-insert-above",
13924                     "x-tree-drag-insert-below",
13925                     "x-tree-drag-append"]);
13926             this.lastInsertClass = "_noclass";
13927         }
13928     },
13929     
13930     beforeDragDrop : function(target, e, id){
13931         this.cancelExpand();
13932         return true;
13933     },
13934     
13935     afterRepair : function(data){
13936         if(data && Roo.enableFx){
13937             data.node.ui.highlight();
13938         }
13939         this.hideProxy();
13940     } 
13941     
13942 });
13943
13944 }
13945 /*
13946  * Based on:
13947  * Ext JS Library 1.1.1
13948  * Copyright(c) 2006-2007, Ext JS, LLC.
13949  *
13950  * Originally Released Under LGPL - original licence link has changed is not relivant.
13951  *
13952  * Fork - LGPL
13953  * <script type="text/javascript">
13954  */
13955  
13956
13957 if(Roo.dd.DragZone){
13958 Roo.tree.TreeDragZone = function(tree, config){
13959     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
13960     this.tree = tree;
13961 };
13962
13963 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
13964     ddGroup : "TreeDD",
13965    
13966     onBeforeDrag : function(data, e){
13967         var n = data.node;
13968         return n && n.draggable && !n.disabled;
13969     },
13970      
13971     
13972     onInitDrag : function(e){
13973         var data = this.dragData;
13974         this.tree.getSelectionModel().select(data.node);
13975         this.proxy.update("");
13976         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
13977         this.tree.fireEvent("startdrag", this.tree, data.node, e);
13978     },
13979     
13980     getRepairXY : function(e, data){
13981         return data.node.ui.getDDRepairXY();
13982     },
13983     
13984     onEndDrag : function(data, e){
13985         this.tree.fireEvent("enddrag", this.tree, data.node, e);
13986         
13987         
13988     },
13989     
13990     onValidDrop : function(dd, e, id){
13991         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
13992         this.hideProxy();
13993     },
13994     
13995     beforeInvalidDrop : function(e, id){
13996         // this scrolls the original position back into view
13997         var sm = this.tree.getSelectionModel();
13998         sm.clearSelections();
13999         sm.select(this.dragData.node);
14000     }
14001 });
14002 }/*
14003  * Based on:
14004  * Ext JS Library 1.1.1
14005  * Copyright(c) 2006-2007, Ext JS, LLC.
14006  *
14007  * Originally Released Under LGPL - original licence link has changed is not relivant.
14008  *
14009  * Fork - LGPL
14010  * <script type="text/javascript">
14011  */
14012 /**
14013  * @class Roo.tree.TreeEditor
14014  * @extends Roo.Editor
14015  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
14016  * as the editor field.
14017  * @constructor
14018  * @param {Object} config (used to be the tree panel.)
14019  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
14020  * 
14021  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
14022  * @cfg {Roo.form.TextField} field [required] The field configuration
14023  *
14024  * 
14025  */
14026 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
14027     var tree = config;
14028     var field;
14029     if (oldconfig) { // old style..
14030         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
14031     } else {
14032         // new style..
14033         tree = config.tree;
14034         config.field = config.field  || {};
14035         config.field.xtype = 'TextField';
14036         field = Roo.factory(config.field, Roo.form);
14037     }
14038     config = config || {};
14039     
14040     
14041     this.addEvents({
14042         /**
14043          * @event beforenodeedit
14044          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
14045          * false from the handler of this event.
14046          * @param {Editor} this
14047          * @param {Roo.tree.Node} node 
14048          */
14049         "beforenodeedit" : true
14050     });
14051     
14052     //Roo.log(config);
14053     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
14054
14055     this.tree = tree;
14056
14057     tree.on('beforeclick', this.beforeNodeClick, this);
14058     tree.getTreeEl().on('mousedown', this.hide, this);
14059     this.on('complete', this.updateNode, this);
14060     this.on('beforestartedit', this.fitToTree, this);
14061     this.on('startedit', this.bindScroll, this, {delay:10});
14062     this.on('specialkey', this.onSpecialKey, this);
14063 };
14064
14065 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
14066     /**
14067      * @cfg {String} alignment
14068      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
14069      */
14070     alignment: "l-l",
14071     // inherit
14072     autoSize: false,
14073     /**
14074      * @cfg {Boolean} hideEl
14075      * True to hide the bound element while the editor is displayed (defaults to false)
14076      */
14077     hideEl : false,
14078     /**
14079      * @cfg {String} cls
14080      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
14081      */
14082     cls: "x-small-editor x-tree-editor",
14083     /**
14084      * @cfg {Boolean} shim
14085      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
14086      */
14087     shim:false,
14088     // inherit
14089     shadow:"frame",
14090     /**
14091      * @cfg {Number} maxWidth
14092      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
14093      * the containing tree element's size, it will be automatically limited for you to the container width, taking
14094      * scroll and client offsets into account prior to each edit.
14095      */
14096     maxWidth: 250,
14097
14098     editDelay : 350,
14099
14100     // private
14101     fitToTree : function(ed, el){
14102         var td = this.tree.getTreeEl().dom, nd = el.dom;
14103         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
14104             td.scrollLeft = nd.offsetLeft;
14105         }
14106         var w = Math.min(
14107                 this.maxWidth,
14108                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
14109         this.setSize(w, '');
14110         
14111         return this.fireEvent('beforenodeedit', this, this.editNode);
14112         
14113     },
14114
14115     // private
14116     triggerEdit : function(node){
14117         this.completeEdit();
14118         this.editNode = node;
14119         this.startEdit(node.ui.textNode, node.text);
14120     },
14121
14122     // private
14123     bindScroll : function(){
14124         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
14125     },
14126
14127     // private
14128     beforeNodeClick : function(node, e){
14129         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
14130         this.lastClick = new Date();
14131         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
14132             e.stopEvent();
14133             this.triggerEdit(node);
14134             return false;
14135         }
14136         return true;
14137     },
14138
14139     // private
14140     updateNode : function(ed, value){
14141         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
14142         this.editNode.setText(value);
14143     },
14144
14145     // private
14146     onHide : function(){
14147         Roo.tree.TreeEditor.superclass.onHide.call(this);
14148         if(this.editNode){
14149             this.editNode.ui.focus();
14150         }
14151     },
14152
14153     // private
14154     onSpecialKey : function(field, e){
14155         var k = e.getKey();
14156         if(k == e.ESC){
14157             e.stopEvent();
14158             this.cancelEdit();
14159         }else if(k == e.ENTER && !e.hasModifier()){
14160             e.stopEvent();
14161             this.completeEdit();
14162         }
14163     }
14164 });//<Script type="text/javascript">
14165 /*
14166  * Based on:
14167  * Ext JS Library 1.1.1
14168  * Copyright(c) 2006-2007, Ext JS, LLC.
14169  *
14170  * Originally Released Under LGPL - original licence link has changed is not relivant.
14171  *
14172  * Fork - LGPL
14173  * <script type="text/javascript">
14174  */
14175  
14176 /**
14177  * Not documented??? - probably should be...
14178  */
14179
14180 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
14181     //focus: Roo.emptyFn, // prevent odd scrolling behavior
14182     
14183     renderElements : function(n, a, targetNode, bulkRender){
14184         //consel.log("renderElements?");
14185         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
14186
14187         var t = n.getOwnerTree();
14188         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
14189         
14190         var cols = t.columns;
14191         var bw = t.borderWidth;
14192         var c = cols[0];
14193         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
14194          var cb = typeof a.checked == "boolean";
14195         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14196         var colcls = 'x-t-' + tid + '-c0';
14197         var buf = [
14198             '<li class="x-tree-node">',
14199             
14200                 
14201                 '<div class="x-tree-node-el ', a.cls,'">',
14202                     // extran...
14203                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
14204                 
14205                 
14206                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
14207                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
14208                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
14209                            (a.icon ? ' x-tree-node-inline-icon' : ''),
14210                            (a.iconCls ? ' '+a.iconCls : ''),
14211                            '" unselectable="on" />',
14212                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
14213                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
14214                              
14215                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14216                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
14217                             '<span unselectable="on" qtip="' + tx + '">',
14218                              tx,
14219                              '</span></a>' ,
14220                     '</div>',
14221                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
14222                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
14223                  ];
14224         for(var i = 1, len = cols.length; i < len; i++){
14225             c = cols[i];
14226             colcls = 'x-t-' + tid + '-c' +i;
14227             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
14228             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
14229                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
14230                       "</div>");
14231          }
14232          
14233          buf.push(
14234             '</a>',
14235             '<div class="x-clear"></div></div>',
14236             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
14237             "</li>");
14238         
14239         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
14240             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
14241                                 n.nextSibling.ui.getEl(), buf.join(""));
14242         }else{
14243             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
14244         }
14245         var el = this.wrap.firstChild;
14246         this.elRow = el;
14247         this.elNode = el.firstChild;
14248         this.ranchor = el.childNodes[1];
14249         this.ctNode = this.wrap.childNodes[1];
14250         var cs = el.firstChild.childNodes;
14251         this.indentNode = cs[0];
14252         this.ecNode = cs[1];
14253         this.iconNode = cs[2];
14254         var index = 3;
14255         if(cb){
14256             this.checkbox = cs[3];
14257             index++;
14258         }
14259         this.anchor = cs[index];
14260         
14261         this.textNode = cs[index].firstChild;
14262         
14263         //el.on("click", this.onClick, this);
14264         //el.on("dblclick", this.onDblClick, this);
14265         
14266         
14267        // console.log(this);
14268     },
14269     initEvents : function(){
14270         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
14271         
14272             
14273         var a = this.ranchor;
14274
14275         var el = Roo.get(a);
14276
14277         if(Roo.isOpera){ // opera render bug ignores the CSS
14278             el.setStyle("text-decoration", "none");
14279         }
14280
14281         el.on("click", this.onClick, this);
14282         el.on("dblclick", this.onDblClick, this);
14283         el.on("contextmenu", this.onContextMenu, this);
14284         
14285     },
14286     
14287     /*onSelectedChange : function(state){
14288         if(state){
14289             this.focus();
14290             this.addClass("x-tree-selected");
14291         }else{
14292             //this.blur();
14293             this.removeClass("x-tree-selected");
14294         }
14295     },*/
14296     addClass : function(cls){
14297         if(this.elRow){
14298             Roo.fly(this.elRow).addClass(cls);
14299         }
14300         
14301     },
14302     
14303     
14304     removeClass : function(cls){
14305         if(this.elRow){
14306             Roo.fly(this.elRow).removeClass(cls);
14307         }
14308     }
14309
14310     
14311     
14312 });//<Script type="text/javascript">
14313
14314 /*
14315  * Based on:
14316  * Ext JS Library 1.1.1
14317  * Copyright(c) 2006-2007, Ext JS, LLC.
14318  *
14319  * Originally Released Under LGPL - original licence link has changed is not relivant.
14320  *
14321  * Fork - LGPL
14322  * <script type="text/javascript">
14323  */
14324  
14325
14326 /**
14327  * @class Roo.tree.ColumnTree
14328  * @extends Roo.tree.TreePanel
14329  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
14330  * @cfg {int} borderWidth  compined right/left border allowance
14331  * @constructor
14332  * @param {String/HTMLElement/Element} el The container element
14333  * @param {Object} config
14334  */
14335 Roo.tree.ColumnTree =  function(el, config)
14336 {
14337    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
14338    this.addEvents({
14339         /**
14340         * @event resize
14341         * Fire this event on a container when it resizes
14342         * @param {int} w Width
14343         * @param {int} h Height
14344         */
14345        "resize" : true
14346     });
14347     this.on('resize', this.onResize, this);
14348 };
14349
14350 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
14351     //lines:false,
14352     
14353     
14354     borderWidth: Roo.isBorderBox ? 0 : 2, 
14355     headEls : false,
14356     
14357     render : function(){
14358         // add the header.....
14359        
14360         Roo.tree.ColumnTree.superclass.render.apply(this);
14361         
14362         this.el.addClass('x-column-tree');
14363         
14364         this.headers = this.el.createChild(
14365             {cls:'x-tree-headers'},this.innerCt.dom);
14366    
14367         var cols = this.columns, c;
14368         var totalWidth = 0;
14369         this.headEls = [];
14370         var  len = cols.length;
14371         for(var i = 0; i < len; i++){
14372              c = cols[i];
14373              totalWidth += c.width;
14374             this.headEls.push(this.headers.createChild({
14375                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
14376                  cn: {
14377                      cls:'x-tree-hd-text',
14378                      html: c.header
14379                  },
14380                  style:'width:'+(c.width-this.borderWidth)+'px;'
14381              }));
14382         }
14383         this.headers.createChild({cls:'x-clear'});
14384         // prevent floats from wrapping when clipped
14385         this.headers.setWidth(totalWidth);
14386         //this.innerCt.setWidth(totalWidth);
14387         this.innerCt.setStyle({ overflow: 'auto' });
14388         this.onResize(this.width, this.height);
14389              
14390         
14391     },
14392     onResize : function(w,h)
14393     {
14394         this.height = h;
14395         this.width = w;
14396         // resize cols..
14397         this.innerCt.setWidth(this.width);
14398         this.innerCt.setHeight(this.height-20);
14399         
14400         // headers...
14401         var cols = this.columns, c;
14402         var totalWidth = 0;
14403         var expEl = false;
14404         var len = cols.length;
14405         for(var i = 0; i < len; i++){
14406             c = cols[i];
14407             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
14408                 // it's the expander..
14409                 expEl  = this.headEls[i];
14410                 continue;
14411             }
14412             totalWidth += c.width;
14413             
14414         }
14415         if (expEl) {
14416             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
14417         }
14418         this.headers.setWidth(w-20);
14419
14420         
14421         
14422         
14423     }
14424 });
14425 /*
14426  * Based on:
14427  * Ext JS Library 1.1.1
14428  * Copyright(c) 2006-2007, Ext JS, LLC.
14429  *
14430  * Originally Released Under LGPL - original licence link has changed is not relivant.
14431  *
14432  * Fork - LGPL
14433  * <script type="text/javascript">
14434  */
14435  
14436 /**
14437  * @class Roo.menu.Menu
14438  * @extends Roo.util.Observable
14439  * @children Roo.menu.Item Roo.menu.Separator Roo.menu.TextItem
14440  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
14441  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
14442  * @constructor
14443  * Creates a new Menu
14444  * @param {Object} config Configuration options
14445  */
14446 Roo.menu.Menu = function(config){
14447     
14448     Roo.menu.Menu.superclass.constructor.call(this, config);
14449     
14450     this.id = this.id || Roo.id();
14451     this.addEvents({
14452         /**
14453          * @event beforeshow
14454          * Fires before this menu is displayed
14455          * @param {Roo.menu.Menu} this
14456          */
14457         beforeshow : true,
14458         /**
14459          * @event beforehide
14460          * Fires before this menu is hidden
14461          * @param {Roo.menu.Menu} this
14462          */
14463         beforehide : true,
14464         /**
14465          * @event show
14466          * Fires after this menu is displayed
14467          * @param {Roo.menu.Menu} this
14468          */
14469         show : true,
14470         /**
14471          * @event hide
14472          * Fires after this menu is hidden
14473          * @param {Roo.menu.Menu} this
14474          */
14475         hide : true,
14476         /**
14477          * @event click
14478          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
14479          * @param {Roo.menu.Menu} this
14480          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14481          * @param {Roo.EventObject} e
14482          */
14483         click : true,
14484         /**
14485          * @event mouseover
14486          * Fires when the mouse is hovering over this menu
14487          * @param {Roo.menu.Menu} this
14488          * @param {Roo.EventObject} e
14489          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14490          */
14491         mouseover : true,
14492         /**
14493          * @event mouseout
14494          * Fires when the mouse exits this menu
14495          * @param {Roo.menu.Menu} this
14496          * @param {Roo.EventObject} e
14497          * @param {Roo.menu.Item} menuItem The menu item that was clicked
14498          */
14499         mouseout : true,
14500         /**
14501          * @event itemclick
14502          * Fires when a menu item contained in this menu is clicked
14503          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
14504          * @param {Roo.EventObject} e
14505          */
14506         itemclick: true
14507     });
14508     if (this.registerMenu) {
14509         Roo.menu.MenuMgr.register(this);
14510     }
14511     
14512     var mis = this.items;
14513     this.items = new Roo.util.MixedCollection();
14514     if(mis){
14515         this.add.apply(this, mis);
14516     }
14517 };
14518
14519 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
14520     /**
14521      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
14522      */
14523     minWidth : 120,
14524     /**
14525      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
14526      * for bottom-right shadow (defaults to "sides")
14527      */
14528     shadow : "sides",
14529     /**
14530      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
14531      * this menu (defaults to "tl-tr?")
14532      */
14533     subMenuAlign : "tl-tr?",
14534     /**
14535      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
14536      * relative to its element of origin (defaults to "tl-bl?")
14537      */
14538     defaultAlign : "tl-bl?",
14539     /**
14540      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
14541      */
14542     allowOtherMenus : false,
14543     /**
14544      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
14545      */
14546     registerMenu : true,
14547
14548     hidden:true,
14549
14550     // private
14551     render : function(){
14552         if(this.el){
14553             return;
14554         }
14555         var el = this.el = new Roo.Layer({
14556             cls: "x-menu",
14557             shadow:this.shadow,
14558             constrain: false,
14559             parentEl: this.parentEl || document.body,
14560             zindex:15000
14561         });
14562
14563         this.keyNav = new Roo.menu.MenuNav(this);
14564
14565         if(this.plain){
14566             el.addClass("x-menu-plain");
14567         }
14568         if(this.cls){
14569             el.addClass(this.cls);
14570         }
14571         // generic focus element
14572         this.focusEl = el.createChild({
14573             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
14574         });
14575         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
14576         //disabling touch- as it's causing issues ..
14577         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
14578         ul.on('click'   , this.onClick, this);
14579         
14580         
14581         ul.on("mouseover", this.onMouseOver, this);
14582         ul.on("mouseout", this.onMouseOut, this);
14583         this.items.each(function(item){
14584             if (item.hidden) {
14585                 return;
14586             }
14587             
14588             var li = document.createElement("li");
14589             li.className = "x-menu-list-item";
14590             ul.dom.appendChild(li);
14591             item.render(li, this);
14592         }, this);
14593         this.ul = ul;
14594         this.autoWidth();
14595     },
14596
14597     // private
14598     autoWidth : function(){
14599         var el = this.el, ul = this.ul;
14600         if(!el){
14601             return;
14602         }
14603         var w = this.width;
14604         if(w){
14605             el.setWidth(w);
14606         }else if(Roo.isIE){
14607             el.setWidth(this.minWidth);
14608             var t = el.dom.offsetWidth; // force recalc
14609             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
14610         }
14611     },
14612
14613     // private
14614     delayAutoWidth : function(){
14615         if(this.rendered){
14616             if(!this.awTask){
14617                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
14618             }
14619             this.awTask.delay(20);
14620         }
14621     },
14622
14623     // private
14624     findTargetItem : function(e){
14625         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
14626         if(t && t.menuItemId){
14627             return this.items.get(t.menuItemId);
14628         }
14629     },
14630
14631     // private
14632     onClick : function(e){
14633         Roo.log("menu.onClick");
14634         var t = this.findTargetItem(e);
14635         if(!t){
14636             return;
14637         }
14638         Roo.log(e);
14639         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
14640             if(t == this.activeItem && t.shouldDeactivate(e)){
14641                 this.activeItem.deactivate();
14642                 delete this.activeItem;
14643                 return;
14644             }
14645             if(t.canActivate){
14646                 this.setActiveItem(t, true);
14647             }
14648             return;
14649             
14650             
14651         }
14652         
14653         t.onClick(e);
14654         this.fireEvent("click", this, t, e);
14655     },
14656
14657     // private
14658     setActiveItem : function(item, autoExpand){
14659         if(item != this.activeItem){
14660             if(this.activeItem){
14661                 this.activeItem.deactivate();
14662             }
14663             this.activeItem = item;
14664             item.activate(autoExpand);
14665         }else if(autoExpand){
14666             item.expandMenu();
14667         }
14668     },
14669
14670     // private
14671     tryActivate : function(start, step){
14672         var items = this.items;
14673         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
14674             var item = items.get(i);
14675             if(!item.disabled && item.canActivate){
14676                 this.setActiveItem(item, false);
14677                 return item;
14678             }
14679         }
14680         return false;
14681     },
14682
14683     // private
14684     onMouseOver : function(e){
14685         var t;
14686         if(t = this.findTargetItem(e)){
14687             if(t.canActivate && !t.disabled){
14688                 this.setActiveItem(t, true);
14689             }
14690         }
14691         this.fireEvent("mouseover", this, e, t);
14692     },
14693
14694     // private
14695     onMouseOut : function(e){
14696         var t;
14697         if(t = this.findTargetItem(e)){
14698             if(t == this.activeItem && t.shouldDeactivate(e)){
14699                 this.activeItem.deactivate();
14700                 delete this.activeItem;
14701             }
14702         }
14703         this.fireEvent("mouseout", this, e, t);
14704     },
14705
14706     /**
14707      * Read-only.  Returns true if the menu is currently displayed, else false.
14708      * @type Boolean
14709      */
14710     isVisible : function(){
14711         return this.el && !this.hidden;
14712     },
14713
14714     /**
14715      * Displays this menu relative to another element
14716      * @param {String/HTMLElement/Roo.Element} element The element to align to
14717      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
14718      * the element (defaults to this.defaultAlign)
14719      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
14720      */
14721     show : function(el, pos, parentMenu){
14722         this.parentMenu = parentMenu;
14723         if(!this.el){
14724             this.render();
14725         }
14726         this.fireEvent("beforeshow", this);
14727         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
14728     },
14729
14730     /**
14731      * Displays this menu at a specific xy position
14732      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
14733      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
14734      */
14735     showAt : function(xy, parentMenu, /* private: */_e){
14736         this.parentMenu = parentMenu;
14737         if(!this.el){
14738             this.render();
14739         }
14740         if(_e !== false){
14741             this.fireEvent("beforeshow", this);
14742             xy = this.el.adjustForConstraints(xy);
14743         }
14744         this.el.setXY(xy);
14745         this.el.show();
14746         this.hidden = false;
14747         this.focus();
14748         this.fireEvent("show", this);
14749     },
14750
14751     focus : function(){
14752         if(!this.hidden){
14753             this.doFocus.defer(50, this);
14754         }
14755     },
14756
14757     doFocus : function(){
14758         if(!this.hidden){
14759             this.focusEl.focus();
14760         }
14761     },
14762
14763     /**
14764      * Hides this menu and optionally all parent menus
14765      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
14766      */
14767     hide : function(deep){
14768         if(this.el && this.isVisible()){
14769             this.fireEvent("beforehide", this);
14770             if(this.activeItem){
14771                 this.activeItem.deactivate();
14772                 this.activeItem = null;
14773             }
14774             this.el.hide();
14775             this.hidden = true;
14776             this.fireEvent("hide", this);
14777         }
14778         if(deep === true && this.parentMenu){
14779             this.parentMenu.hide(true);
14780         }
14781     },
14782
14783     /**
14784      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
14785      * Any of the following are valid:
14786      * <ul>
14787      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
14788      * <li>An HTMLElement object which will be converted to a menu item</li>
14789      * <li>A menu item config object that will be created as a new menu item</li>
14790      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
14791      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
14792      * </ul>
14793      * Usage:
14794      * <pre><code>
14795 // Create the menu
14796 var menu = new Roo.menu.Menu();
14797
14798 // Create a menu item to add by reference
14799 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
14800
14801 // Add a bunch of items at once using different methods.
14802 // Only the last item added will be returned.
14803 var item = menu.add(
14804     menuItem,                // add existing item by ref
14805     'Dynamic Item',          // new TextItem
14806     '-',                     // new separator
14807     { text: 'Config Item' }  // new item by config
14808 );
14809 </code></pre>
14810      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
14811      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
14812      */
14813     add : function(){
14814         var a = arguments, l = a.length, item;
14815         for(var i = 0; i < l; i++){
14816             var el = a[i];
14817             if ((typeof(el) == "object") && el.xtype && el.xns) {
14818                 el = Roo.factory(el, Roo.menu);
14819             }
14820             
14821             if(el.render){ // some kind of Item
14822                 item = this.addItem(el);
14823             }else if(typeof el == "string"){ // string
14824                 if(el == "separator" || el == "-"){
14825                     item = this.addSeparator();
14826                 }else{
14827                     item = this.addText(el);
14828                 }
14829             }else if(el.tagName || el.el){ // element
14830                 item = this.addElement(el);
14831             }else if(typeof el == "object"){ // must be menu item config?
14832                 item = this.addMenuItem(el);
14833             }
14834         }
14835         return item;
14836     },
14837
14838     /**
14839      * Returns this menu's underlying {@link Roo.Element} object
14840      * @return {Roo.Element} The element
14841      */
14842     getEl : function(){
14843         if(!this.el){
14844             this.render();
14845         }
14846         return this.el;
14847     },
14848
14849     /**
14850      * Adds a separator bar to the menu
14851      * @return {Roo.menu.Item} The menu item that was added
14852      */
14853     addSeparator : function(){
14854         return this.addItem(new Roo.menu.Separator());
14855     },
14856
14857     /**
14858      * Adds an {@link Roo.Element} object to the menu
14859      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
14860      * @return {Roo.menu.Item} The menu item that was added
14861      */
14862     addElement : function(el){
14863         return this.addItem(new Roo.menu.BaseItem(el));
14864     },
14865
14866     /**
14867      * Adds an existing object based on {@link Roo.menu.Item} to the menu
14868      * @param {Roo.menu.Item} item The menu item to add
14869      * @return {Roo.menu.Item} The menu item that was added
14870      */
14871     addItem : function(item){
14872         this.items.add(item);
14873         if(this.ul){
14874             var li = document.createElement("li");
14875             li.className = "x-menu-list-item";
14876             this.ul.dom.appendChild(li);
14877             item.render(li, this);
14878             this.delayAutoWidth();
14879         }
14880         return item;
14881     },
14882
14883     /**
14884      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
14885      * @param {Object} config A MenuItem config object
14886      * @return {Roo.menu.Item} The menu item that was added
14887      */
14888     addMenuItem : function(config){
14889         if(!(config instanceof Roo.menu.Item)){
14890             if(typeof config.checked == "boolean"){ // must be check menu item config?
14891                 config = new Roo.menu.CheckItem(config);
14892             }else{
14893                 config = new Roo.menu.Item(config);
14894             }
14895         }
14896         return this.addItem(config);
14897     },
14898
14899     /**
14900      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
14901      * @param {String} text The text to display in the menu item
14902      * @return {Roo.menu.Item} The menu item that was added
14903      */
14904     addText : function(text){
14905         return this.addItem(new Roo.menu.TextItem({ text : text }));
14906     },
14907
14908     /**
14909      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
14910      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
14911      * @param {Roo.menu.Item} item The menu item to add
14912      * @return {Roo.menu.Item} The menu item that was added
14913      */
14914     insert : function(index, item){
14915         this.items.insert(index, item);
14916         if(this.ul){
14917             var li = document.createElement("li");
14918             li.className = "x-menu-list-item";
14919             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
14920             item.render(li, this);
14921             this.delayAutoWidth();
14922         }
14923         return item;
14924     },
14925
14926     /**
14927      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
14928      * @param {Roo.menu.Item} item The menu item to remove
14929      */
14930     remove : function(item){
14931         this.items.removeKey(item.id);
14932         item.destroy();
14933     },
14934
14935     /**
14936      * Removes and destroys all items in the menu
14937      */
14938     removeAll : function(){
14939         var f;
14940         while(f = this.items.first()){
14941             this.remove(f);
14942         }
14943     }
14944 });
14945
14946 // MenuNav is a private utility class used internally by the Menu
14947 Roo.menu.MenuNav = function(menu){
14948     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
14949     this.scope = this.menu = menu;
14950 };
14951
14952 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
14953     doRelay : function(e, h){
14954         var k = e.getKey();
14955         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
14956             this.menu.tryActivate(0, 1);
14957             return false;
14958         }
14959         return h.call(this.scope || this, e, this.menu);
14960     },
14961
14962     up : function(e, m){
14963         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
14964             m.tryActivate(m.items.length-1, -1);
14965         }
14966     },
14967
14968     down : function(e, m){
14969         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
14970             m.tryActivate(0, 1);
14971         }
14972     },
14973
14974     right : function(e, m){
14975         if(m.activeItem){
14976             m.activeItem.expandMenu(true);
14977         }
14978     },
14979
14980     left : function(e, m){
14981         m.hide();
14982         if(m.parentMenu && m.parentMenu.activeItem){
14983             m.parentMenu.activeItem.activate();
14984         }
14985     },
14986
14987     enter : function(e, m){
14988         if(m.activeItem){
14989             e.stopPropagation();
14990             m.activeItem.onClick(e);
14991             m.fireEvent("click", this, m.activeItem);
14992             return true;
14993         }
14994     }
14995 });/*
14996  * Based on:
14997  * Ext JS Library 1.1.1
14998  * Copyright(c) 2006-2007, Ext JS, LLC.
14999  *
15000  * Originally Released Under LGPL - original licence link has changed is not relivant.
15001  *
15002  * Fork - LGPL
15003  * <script type="text/javascript">
15004  */
15005  
15006 /**
15007  * @class Roo.menu.MenuMgr
15008  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
15009  * @static
15010  */
15011 Roo.menu.MenuMgr = function(){
15012    var menus, active, groups = {}, attached = false, lastShow = new Date();
15013
15014    // private - called when first menu is created
15015    function init(){
15016        menus = {};
15017        active = new Roo.util.MixedCollection();
15018        Roo.get(document).addKeyListener(27, function(){
15019            if(active.length > 0){
15020                hideAll();
15021            }
15022        });
15023    }
15024
15025    // private
15026    function hideAll(){
15027        if(active && active.length > 0){
15028            var c = active.clone();
15029            c.each(function(m){
15030                m.hide();
15031            });
15032        }
15033    }
15034
15035    // private
15036    function onHide(m){
15037        active.remove(m);
15038        if(active.length < 1){
15039            Roo.get(document).un("mousedown", onMouseDown);
15040            attached = false;
15041        }
15042    }
15043
15044    // private
15045    function onShow(m){
15046        var last = active.last();
15047        lastShow = new Date();
15048        active.add(m);
15049        if(!attached){
15050            Roo.get(document).on("mousedown", onMouseDown);
15051            attached = true;
15052        }
15053        if(m.parentMenu){
15054           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
15055           m.parentMenu.activeChild = m;
15056        }else if(last && last.isVisible()){
15057           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
15058        }
15059    }
15060
15061    // private
15062    function onBeforeHide(m){
15063        if(m.activeChild){
15064            m.activeChild.hide();
15065        }
15066        if(m.autoHideTimer){
15067            clearTimeout(m.autoHideTimer);
15068            delete m.autoHideTimer;
15069        }
15070    }
15071
15072    // private
15073    function onBeforeShow(m){
15074        var pm = m.parentMenu;
15075        if(!pm && !m.allowOtherMenus){
15076            hideAll();
15077        }else if(pm && pm.activeChild && active != m){
15078            pm.activeChild.hide();
15079        }
15080    }
15081
15082    // private
15083    function onMouseDown(e){
15084        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
15085            hideAll();
15086        }
15087    }
15088
15089    // private
15090    function onBeforeCheck(mi, state){
15091        if(state){
15092            var g = groups[mi.group];
15093            for(var i = 0, l = g.length; i < l; i++){
15094                if(g[i] != mi){
15095                    g[i].setChecked(false);
15096                }
15097            }
15098        }
15099    }
15100
15101    return {
15102
15103        /**
15104         * Hides all menus that are currently visible
15105         */
15106        hideAll : function(){
15107             hideAll();  
15108        },
15109
15110        // private
15111        register : function(menu){
15112            if(!menus){
15113                init();
15114            }
15115            menus[menu.id] = menu;
15116            menu.on("beforehide", onBeforeHide);
15117            menu.on("hide", onHide);
15118            menu.on("beforeshow", onBeforeShow);
15119            menu.on("show", onShow);
15120            var g = menu.group;
15121            if(g && menu.events["checkchange"]){
15122                if(!groups[g]){
15123                    groups[g] = [];
15124                }
15125                groups[g].push(menu);
15126                menu.on("checkchange", onCheck);
15127            }
15128        },
15129
15130         /**
15131          * Returns a {@link Roo.menu.Menu} object
15132          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
15133          * be used to generate and return a new Menu instance.
15134          */
15135        get : function(menu){
15136            if(typeof menu == "string"){ // menu id
15137                return menus[menu];
15138            }else if(menu.events){  // menu instance
15139                return menu;
15140            }else if(typeof menu.length == 'number'){ // array of menu items?
15141                return new Roo.menu.Menu({items:menu});
15142            }else{ // otherwise, must be a config
15143                return new Roo.menu.Menu(menu);
15144            }
15145        },
15146
15147        // private
15148        unregister : function(menu){
15149            delete menus[menu.id];
15150            menu.un("beforehide", onBeforeHide);
15151            menu.un("hide", onHide);
15152            menu.un("beforeshow", onBeforeShow);
15153            menu.un("show", onShow);
15154            var g = menu.group;
15155            if(g && menu.events["checkchange"]){
15156                groups[g].remove(menu);
15157                menu.un("checkchange", onCheck);
15158            }
15159        },
15160
15161        // private
15162        registerCheckable : function(menuItem){
15163            var g = menuItem.group;
15164            if(g){
15165                if(!groups[g]){
15166                    groups[g] = [];
15167                }
15168                groups[g].push(menuItem);
15169                menuItem.on("beforecheckchange", onBeforeCheck);
15170            }
15171        },
15172
15173        // private
15174        unregisterCheckable : function(menuItem){
15175            var g = menuItem.group;
15176            if(g){
15177                groups[g].remove(menuItem);
15178                menuItem.un("beforecheckchange", onBeforeCheck);
15179            }
15180        }
15181    };
15182 }();/*
15183  * Based on:
15184  * Ext JS Library 1.1.1
15185  * Copyright(c) 2006-2007, Ext JS, LLC.
15186  *
15187  * Originally Released Under LGPL - original licence link has changed is not relivant.
15188  *
15189  * Fork - LGPL
15190  * <script type="text/javascript">
15191  */
15192  
15193
15194 /**
15195  * @class Roo.menu.BaseItem
15196  * @extends Roo.Component
15197  * @abstract
15198  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
15199  * management and base configuration options shared by all menu components.
15200  * @constructor
15201  * Creates a new BaseItem
15202  * @param {Object} config Configuration options
15203  */
15204 Roo.menu.BaseItem = function(config){
15205     Roo.menu.BaseItem.superclass.constructor.call(this, config);
15206
15207     this.addEvents({
15208         /**
15209          * @event click
15210          * Fires when this item is clicked
15211          * @param {Roo.menu.BaseItem} this
15212          * @param {Roo.EventObject} e
15213          */
15214         click: true,
15215         /**
15216          * @event activate
15217          * Fires when this item is activated
15218          * @param {Roo.menu.BaseItem} this
15219          */
15220         activate : true,
15221         /**
15222          * @event deactivate
15223          * Fires when this item is deactivated
15224          * @param {Roo.menu.BaseItem} this
15225          */
15226         deactivate : true
15227     });
15228
15229     if(this.handler){
15230         this.on("click", this.handler, this.scope, true);
15231     }
15232 };
15233
15234 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
15235     /**
15236      * @cfg {Function} handler
15237      * A function that will handle the click event of this menu item (defaults to undefined)
15238      */
15239     /**
15240      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
15241      */
15242     canActivate : false,
15243     
15244      /**
15245      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
15246      */
15247     hidden: false,
15248     
15249     /**
15250      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
15251      */
15252     activeClass : "x-menu-item-active",
15253     /**
15254      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
15255      */
15256     hideOnClick : true,
15257     /**
15258      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
15259      */
15260     hideDelay : 100,
15261
15262     // private
15263     ctype: "Roo.menu.BaseItem",
15264
15265     // private
15266     actionMode : "container",
15267
15268     // private
15269     render : function(container, parentMenu){
15270         this.parentMenu = parentMenu;
15271         Roo.menu.BaseItem.superclass.render.call(this, container);
15272         this.container.menuItemId = this.id;
15273     },
15274
15275     // private
15276     onRender : function(container, position){
15277         this.el = Roo.get(this.el);
15278         container.dom.appendChild(this.el.dom);
15279     },
15280
15281     // private
15282     onClick : function(e){
15283         if(!this.disabled && this.fireEvent("click", this, e) !== false
15284                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
15285             this.handleClick(e);
15286         }else{
15287             e.stopEvent();
15288         }
15289     },
15290
15291     // private
15292     activate : function(){
15293         if(this.disabled){
15294             return false;
15295         }
15296         var li = this.container;
15297         li.addClass(this.activeClass);
15298         this.region = li.getRegion().adjust(2, 2, -2, -2);
15299         this.fireEvent("activate", this);
15300         return true;
15301     },
15302
15303     // private
15304     deactivate : function(){
15305         this.container.removeClass(this.activeClass);
15306         this.fireEvent("deactivate", this);
15307     },
15308
15309     // private
15310     shouldDeactivate : function(e){
15311         return !this.region || !this.region.contains(e.getPoint());
15312     },
15313
15314     // private
15315     handleClick : function(e){
15316         if(this.hideOnClick){
15317             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
15318         }
15319     },
15320
15321     // private
15322     expandMenu : function(autoActivate){
15323         // do nothing
15324     },
15325
15326     // private
15327     hideMenu : function(){
15328         // do nothing
15329     }
15330 });/*
15331  * Based on:
15332  * Ext JS Library 1.1.1
15333  * Copyright(c) 2006-2007, Ext JS, LLC.
15334  *
15335  * Originally Released Under LGPL - original licence link has changed is not relivant.
15336  *
15337  * Fork - LGPL
15338  * <script type="text/javascript">
15339  */
15340  
15341 /**
15342  * @class Roo.menu.Adapter
15343  * @extends Roo.menu.BaseItem
15344  * @abstract
15345  * 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.
15346  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
15347  * @constructor
15348  * Creates a new Adapter
15349  * @param {Object} config Configuration options
15350  */
15351 Roo.menu.Adapter = function(component, config){
15352     Roo.menu.Adapter.superclass.constructor.call(this, config);
15353     this.component = component;
15354 };
15355 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
15356     // private
15357     canActivate : true,
15358
15359     // private
15360     onRender : function(container, position){
15361         this.component.render(container);
15362         this.el = this.component.getEl();
15363     },
15364
15365     // private
15366     activate : function(){
15367         if(this.disabled){
15368             return false;
15369         }
15370         this.component.focus();
15371         this.fireEvent("activate", this);
15372         return true;
15373     },
15374
15375     // private
15376     deactivate : function(){
15377         this.fireEvent("deactivate", this);
15378     },
15379
15380     // private
15381     disable : function(){
15382         this.component.disable();
15383         Roo.menu.Adapter.superclass.disable.call(this);
15384     },
15385
15386     // private
15387     enable : function(){
15388         this.component.enable();
15389         Roo.menu.Adapter.superclass.enable.call(this);
15390     }
15391 });/*
15392  * Based on:
15393  * Ext JS Library 1.1.1
15394  * Copyright(c) 2006-2007, Ext JS, LLC.
15395  *
15396  * Originally Released Under LGPL - original licence link has changed is not relivant.
15397  *
15398  * Fork - LGPL
15399  * <script type="text/javascript">
15400  */
15401
15402 /**
15403  * @class Roo.menu.TextItem
15404  * @extends Roo.menu.BaseItem
15405  * Adds a static text string to a menu, usually used as either a heading or group separator.
15406  * Note: old style constructor with text is still supported.
15407  * 
15408  * @constructor
15409  * Creates a new TextItem
15410  * @param {Object} cfg Configuration
15411  */
15412 Roo.menu.TextItem = function(cfg){
15413     if (typeof(cfg) == 'string') {
15414         this.text = cfg;
15415     } else {
15416         Roo.apply(this,cfg);
15417     }
15418     
15419     Roo.menu.TextItem.superclass.constructor.call(this);
15420 };
15421
15422 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
15423     /**
15424      * @cfg {String} text Text to show on item.
15425      */
15426     text : '',
15427     
15428     /**
15429      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15430      */
15431     hideOnClick : false,
15432     /**
15433      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
15434      */
15435     itemCls : "x-menu-text",
15436
15437     // private
15438     onRender : function(){
15439         var s = document.createElement("span");
15440         s.className = this.itemCls;
15441         s.innerHTML = this.text;
15442         this.el = s;
15443         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
15444     }
15445 });/*
15446  * Based on:
15447  * Ext JS Library 1.1.1
15448  * Copyright(c) 2006-2007, Ext JS, LLC.
15449  *
15450  * Originally Released Under LGPL - original licence link has changed is not relivant.
15451  *
15452  * Fork - LGPL
15453  * <script type="text/javascript">
15454  */
15455
15456 /**
15457  * @class Roo.menu.Separator
15458  * @extends Roo.menu.BaseItem
15459  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
15460  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
15461  * @constructor
15462  * @param {Object} config Configuration options
15463  */
15464 Roo.menu.Separator = function(config){
15465     Roo.menu.Separator.superclass.constructor.call(this, config);
15466 };
15467
15468 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
15469     /**
15470      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
15471      */
15472     itemCls : "x-menu-sep",
15473     /**
15474      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
15475      */
15476     hideOnClick : false,
15477
15478     // private
15479     onRender : function(li){
15480         var s = document.createElement("span");
15481         s.className = this.itemCls;
15482         s.innerHTML = "&#160;";
15483         this.el = s;
15484         li.addClass("x-menu-sep-li");
15485         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
15486     }
15487 });/*
15488  * Based on:
15489  * Ext JS Library 1.1.1
15490  * Copyright(c) 2006-2007, Ext JS, LLC.
15491  *
15492  * Originally Released Under LGPL - original licence link has changed is not relivant.
15493  *
15494  * Fork - LGPL
15495  * <script type="text/javascript">
15496  */
15497 /**
15498  * @class Roo.menu.Item
15499  * @extends Roo.menu.BaseItem
15500  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
15501  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
15502  * activation and click handling.
15503  * @constructor
15504  * Creates a new Item
15505  * @param {Object} config Configuration options
15506  */
15507 Roo.menu.Item = function(config){
15508     Roo.menu.Item.superclass.constructor.call(this, config);
15509     if(this.menu){
15510         this.menu = Roo.menu.MenuMgr.get(this.menu);
15511     }
15512 };
15513 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
15514     /**
15515      * @cfg {Roo.menu.Menu} menu
15516      * A Sub menu
15517      */
15518     /**
15519      * @cfg {String} text
15520      * The text to show on the menu item.
15521      */
15522     text: '',
15523      /**
15524      * @cfg {String} html to render in menu
15525      * The text to show on the menu item (HTML version).
15526      */
15527     html: '',
15528     /**
15529      * @cfg {String} icon
15530      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
15531      */
15532     icon: undefined,
15533     /**
15534      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
15535      */
15536     itemCls : "x-menu-item",
15537     /**
15538      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
15539      */
15540     canActivate : true,
15541     /**
15542      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
15543      */
15544     showDelay: 200,
15545     // doc'd in BaseItem
15546     hideDelay: 200,
15547
15548     // private
15549     ctype: "Roo.menu.Item",
15550     
15551     // private
15552     onRender : function(container, position){
15553         var el = document.createElement("a");
15554         el.hideFocus = true;
15555         el.unselectable = "on";
15556         el.href = this.href || "#";
15557         if(this.hrefTarget){
15558             el.target = this.hrefTarget;
15559         }
15560         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
15561         
15562         var html = this.html.length ? this.html  : String.format('{0}',this.text);
15563         
15564         el.innerHTML = String.format(
15565                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
15566                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
15567         this.el = el;
15568         Roo.menu.Item.superclass.onRender.call(this, container, position);
15569     },
15570
15571     /**
15572      * Sets the text to display in this menu item
15573      * @param {String} text The text to display
15574      * @param {Boolean} isHTML true to indicate text is pure html.
15575      */
15576     setText : function(text, isHTML){
15577         if (isHTML) {
15578             this.html = text;
15579         } else {
15580             this.text = text;
15581             this.html = '';
15582         }
15583         if(this.rendered){
15584             var html = this.html.length ? this.html  : String.format('{0}',this.text);
15585      
15586             this.el.update(String.format(
15587                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
15588                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
15589             this.parentMenu.autoWidth();
15590         }
15591     },
15592
15593     // private
15594     handleClick : function(e){
15595         if(!this.href){ // if no link defined, stop the event automatically
15596             e.stopEvent();
15597         }
15598         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
15599     },
15600
15601     // private
15602     activate : function(autoExpand){
15603         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
15604             this.focus();
15605             if(autoExpand){
15606                 this.expandMenu();
15607             }
15608         }
15609         return true;
15610     },
15611
15612     // private
15613     shouldDeactivate : function(e){
15614         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
15615             if(this.menu && this.menu.isVisible()){
15616                 return !this.menu.getEl().getRegion().contains(e.getPoint());
15617             }
15618             return true;
15619         }
15620         return false;
15621     },
15622
15623     // private
15624     deactivate : function(){
15625         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
15626         this.hideMenu();
15627     },
15628
15629     // private
15630     expandMenu : function(autoActivate){
15631         if(!this.disabled && this.menu){
15632             clearTimeout(this.hideTimer);
15633             delete this.hideTimer;
15634             if(!this.menu.isVisible() && !this.showTimer){
15635                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
15636             }else if (this.menu.isVisible() && autoActivate){
15637                 this.menu.tryActivate(0, 1);
15638             }
15639         }
15640     },
15641
15642     // private
15643     deferExpand : function(autoActivate){
15644         delete this.showTimer;
15645         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
15646         if(autoActivate){
15647             this.menu.tryActivate(0, 1);
15648         }
15649     },
15650
15651     // private
15652     hideMenu : function(){
15653         clearTimeout(this.showTimer);
15654         delete this.showTimer;
15655         if(!this.hideTimer && this.menu && this.menu.isVisible()){
15656             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
15657         }
15658     },
15659
15660     // private
15661     deferHide : function(){
15662         delete this.hideTimer;
15663         this.menu.hide();
15664     }
15665 });/*
15666  * Based on:
15667  * Ext JS Library 1.1.1
15668  * Copyright(c) 2006-2007, Ext JS, LLC.
15669  *
15670  * Originally Released Under LGPL - original licence link has changed is not relivant.
15671  *
15672  * Fork - LGPL
15673  * <script type="text/javascript">
15674  */
15675  
15676 /**
15677  * @class Roo.menu.CheckItem
15678  * @extends Roo.menu.Item
15679  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
15680  * @constructor
15681  * Creates a new CheckItem
15682  * @param {Object} config Configuration options
15683  */
15684 Roo.menu.CheckItem = function(config){
15685     Roo.menu.CheckItem.superclass.constructor.call(this, config);
15686     this.addEvents({
15687         /**
15688          * @event beforecheckchange
15689          * Fires before the checked value is set, providing an opportunity to cancel if needed
15690          * @param {Roo.menu.CheckItem} this
15691          * @param {Boolean} checked The new checked value that will be set
15692          */
15693         "beforecheckchange" : true,
15694         /**
15695          * @event checkchange
15696          * Fires after the checked value has been set
15697          * @param {Roo.menu.CheckItem} this
15698          * @param {Boolean} checked The checked value that was set
15699          */
15700         "checkchange" : true
15701     });
15702     if(this.checkHandler){
15703         this.on('checkchange', this.checkHandler, this.scope);
15704     }
15705 };
15706 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
15707     /**
15708      * @cfg {String} group
15709      * All check items with the same group name will automatically be grouped into a single-select
15710      * radio button group (defaults to '')
15711      */
15712     /**
15713      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
15714      */
15715     itemCls : "x-menu-item x-menu-check-item",
15716     /**
15717      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
15718      */
15719     groupClass : "x-menu-group-item",
15720
15721     /**
15722      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
15723      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
15724      * initialized with checked = true will be rendered as checked.
15725      */
15726     checked: false,
15727
15728     // private
15729     ctype: "Roo.menu.CheckItem",
15730
15731     // private
15732     onRender : function(c){
15733         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
15734         if(this.group){
15735             this.el.addClass(this.groupClass);
15736         }
15737         Roo.menu.MenuMgr.registerCheckable(this);
15738         if(this.checked){
15739             this.checked = false;
15740             this.setChecked(true, true);
15741         }
15742     },
15743
15744     // private
15745     destroy : function(){
15746         if(this.rendered){
15747             Roo.menu.MenuMgr.unregisterCheckable(this);
15748         }
15749         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
15750     },
15751
15752     /**
15753      * Set the checked state of this item
15754      * @param {Boolean} checked The new checked value
15755      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
15756      */
15757     setChecked : function(state, suppressEvent){
15758         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
15759             if(this.container){
15760                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
15761             }
15762             this.checked = state;
15763             if(suppressEvent !== true){
15764                 this.fireEvent("checkchange", this, state);
15765             }
15766         }
15767     },
15768
15769     // private
15770     handleClick : function(e){
15771        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
15772            this.setChecked(!this.checked);
15773        }
15774        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
15775     }
15776 });/*
15777  * Based on:
15778  * Ext JS Library 1.1.1
15779  * Copyright(c) 2006-2007, Ext JS, LLC.
15780  *
15781  * Originally Released Under LGPL - original licence link has changed is not relivant.
15782  *
15783  * Fork - LGPL
15784  * <script type="text/javascript">
15785  */
15786  
15787 /**
15788  * @class Roo.menu.DateItem
15789  * @extends Roo.menu.Adapter
15790  * A menu item that wraps the {@link Roo.DatPicker} component.
15791  * @constructor
15792  * Creates a new DateItem
15793  * @param {Object} config Configuration options
15794  */
15795 Roo.menu.DateItem = function(config){
15796     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
15797     /** The Roo.DatePicker object @type Roo.DatePicker */
15798     this.picker = this.component;
15799     this.addEvents({select: true});
15800     
15801     this.picker.on("render", function(picker){
15802         picker.getEl().swallowEvent("click");
15803         picker.container.addClass("x-menu-date-item");
15804     });
15805
15806     this.picker.on("select", this.onSelect, this);
15807 };
15808
15809 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
15810     // private
15811     onSelect : function(picker, date){
15812         this.fireEvent("select", this, date, picker);
15813         Roo.menu.DateItem.superclass.handleClick.call(this);
15814     }
15815 });/*
15816  * Based on:
15817  * Ext JS Library 1.1.1
15818  * Copyright(c) 2006-2007, Ext JS, LLC.
15819  *
15820  * Originally Released Under LGPL - original licence link has changed is not relivant.
15821  *
15822  * Fork - LGPL
15823  * <script type="text/javascript">
15824  */
15825  
15826 /**
15827  * @class Roo.menu.ColorItem
15828  * @extends Roo.menu.Adapter
15829  * A menu item that wraps the {@link Roo.ColorPalette} component.
15830  * @constructor
15831  * Creates a new ColorItem
15832  * @param {Object} config Configuration options
15833  */
15834 Roo.menu.ColorItem = function(config){
15835     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
15836     /** The Roo.ColorPalette object @type Roo.ColorPalette */
15837     this.palette = this.component;
15838     this.relayEvents(this.palette, ["select"]);
15839     if(this.selectHandler){
15840         this.on('select', this.selectHandler, this.scope);
15841     }
15842 };
15843 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
15844  * Based on:
15845  * Ext JS Library 1.1.1
15846  * Copyright(c) 2006-2007, Ext JS, LLC.
15847  *
15848  * Originally Released Under LGPL - original licence link has changed is not relivant.
15849  *
15850  * Fork - LGPL
15851  * <script type="text/javascript">
15852  */
15853  
15854
15855 /**
15856  * @class Roo.menu.DateMenu
15857  * @extends Roo.menu.Menu
15858  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
15859  * @constructor
15860  * Creates a new DateMenu
15861  * @param {Object} config Configuration options
15862  */
15863 Roo.menu.DateMenu = function(config){
15864     Roo.menu.DateMenu.superclass.constructor.call(this, config);
15865     this.plain = true;
15866     var di = new Roo.menu.DateItem(config);
15867     this.add(di);
15868     /**
15869      * The {@link Roo.DatePicker} instance for this DateMenu
15870      * @type DatePicker
15871      */
15872     this.picker = di.picker;
15873     /**
15874      * @event select
15875      * @param {DatePicker} picker
15876      * @param {Date} date
15877      */
15878     this.relayEvents(di, ["select"]);
15879     this.on('beforeshow', function(){
15880         if(this.picker){
15881             this.picker.hideMonthPicker(false);
15882         }
15883     }, this);
15884 };
15885 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
15886     cls:'x-date-menu'
15887 });/*
15888  * Based on:
15889  * Ext JS Library 1.1.1
15890  * Copyright(c) 2006-2007, Ext JS, LLC.
15891  *
15892  * Originally Released Under LGPL - original licence link has changed is not relivant.
15893  *
15894  * Fork - LGPL
15895  * <script type="text/javascript">
15896  */
15897  
15898
15899 /**
15900  * @class Roo.menu.ColorMenu
15901  * @extends Roo.menu.Menu
15902  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
15903  * @constructor
15904  * Creates a new ColorMenu
15905  * @param {Object} config Configuration options
15906  */
15907 Roo.menu.ColorMenu = function(config){
15908     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
15909     this.plain = true;
15910     var ci = new Roo.menu.ColorItem(config);
15911     this.add(ci);
15912     /**
15913      * The {@link Roo.ColorPalette} instance for this ColorMenu
15914      * @type ColorPalette
15915      */
15916     this.palette = ci.palette;
15917     /**
15918      * @event select
15919      * @param {ColorPalette} palette
15920      * @param {String} color
15921      */
15922     this.relayEvents(ci, ["select"]);
15923 };
15924 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
15925  * Based on:
15926  * Ext JS Library 1.1.1
15927  * Copyright(c) 2006-2007, Ext JS, LLC.
15928  *
15929  * Originally Released Under LGPL - original licence link has changed is not relivant.
15930  *
15931  * Fork - LGPL
15932  * <script type="text/javascript">
15933  */
15934  
15935 /**
15936  * @class Roo.form.TextItem
15937  * @extends Roo.BoxComponent
15938  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
15939  * @constructor
15940  * Creates a new TextItem
15941  * @param {Object} config Configuration options
15942  */
15943 Roo.form.TextItem = function(config){
15944     Roo.form.TextItem.superclass.constructor.call(this, config);
15945 };
15946
15947 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
15948     
15949     /**
15950      * @cfg {String} tag the tag for this item (default div)
15951      */
15952     tag : 'div',
15953     /**
15954      * @cfg {String} html the content for this item
15955      */
15956     html : '',
15957     
15958     getAutoCreate : function()
15959     {
15960         var cfg = {
15961             id: this.id,
15962             tag: this.tag,
15963             html: this.html,
15964             cls: 'x-form-item'
15965         };
15966         
15967         return cfg;
15968         
15969     },
15970     
15971     onRender : function(ct, position)
15972     {
15973         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
15974         
15975         if(!this.el){
15976             var cfg = this.getAutoCreate();
15977             if(!cfg.name){
15978                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
15979             }
15980             if (!cfg.name.length) {
15981                 delete cfg.name;
15982             }
15983             this.el = ct.createChild(cfg, position);
15984         }
15985     },
15986     /*
15987      * setHTML
15988      * @param {String} html update the Contents of the element.
15989      */
15990     setHTML : function(html)
15991     {
15992         this.fieldEl.dom.innerHTML = html;
15993     }
15994     
15995 });/*
15996  * Based on:
15997  * Ext JS Library 1.1.1
15998  * Copyright(c) 2006-2007, Ext JS, LLC.
15999  *
16000  * Originally Released Under LGPL - original licence link has changed is not relivant.
16001  *
16002  * Fork - LGPL
16003  * <script type="text/javascript">
16004  */
16005  
16006 /**
16007  * @class Roo.form.Field
16008  * @extends Roo.BoxComponent
16009  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16010  * @constructor
16011  * Creates a new Field
16012  * @param {Object} config Configuration options
16013  */
16014 Roo.form.Field = function(config){
16015     Roo.form.Field.superclass.constructor.call(this, config);
16016 };
16017
16018 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
16019     /**
16020      * @cfg {String} fieldLabel Label to use when rendering a form.
16021      */
16022        /**
16023      * @cfg {String} qtip Mouse over tip
16024      */
16025      
16026     /**
16027      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
16028      */
16029     invalidClass : "x-form-invalid",
16030     /**
16031      * @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")
16032      */
16033     invalidText : "The value in this field is invalid",
16034     /**
16035      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
16036      */
16037     focusClass : "x-form-focus",
16038     /**
16039      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
16040       automatic validation (defaults to "keyup").
16041      */
16042     validationEvent : "keyup",
16043     /**
16044      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
16045      */
16046     validateOnBlur : true,
16047     /**
16048      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
16049      */
16050     validationDelay : 250,
16051     /**
16052      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
16053      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
16054      */
16055     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
16056     /**
16057      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
16058      */
16059     fieldClass : "x-form-field",
16060     /**
16061      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
16062      *<pre>
16063 Value         Description
16064 -----------   ----------------------------------------------------------------------
16065 qtip          Display a quick tip when the user hovers over the field
16066 title         Display a default browser title attribute popup
16067 under         Add a block div beneath the field containing the error text
16068 side          Add an error icon to the right of the field with a popup on hover
16069 [element id]  Add the error text directly to the innerHTML of the specified element
16070 </pre>
16071      */
16072     msgTarget : 'qtip',
16073     /**
16074      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
16075      */
16076     msgFx : 'normal',
16077
16078     /**
16079      * @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.
16080      */
16081     readOnly : false,
16082
16083     /**
16084      * @cfg {Boolean} disabled True to disable the field (defaults to false).
16085      */
16086     disabled : false,
16087
16088     /**
16089      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
16090      */
16091     inputType : undefined,
16092     
16093     /**
16094      * @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).
16095          */
16096         tabIndex : undefined,
16097         
16098     // private
16099     isFormField : true,
16100
16101     // private
16102     hasFocus : false,
16103     /**
16104      * @property {Roo.Element} fieldEl
16105      * Element Containing the rendered Field (with label etc.)
16106      */
16107     /**
16108      * @cfg {Mixed} value A value to initialize this field with.
16109      */
16110     value : undefined,
16111
16112     /**
16113      * @cfg {String} name The field's HTML name attribute.
16114      */
16115     /**
16116      * @cfg {String} cls A CSS class to apply to the field's underlying element.
16117      */
16118     // private
16119     loadedValue : false,
16120      
16121      
16122         // private ??
16123         initComponent : function(){
16124         Roo.form.Field.superclass.initComponent.call(this);
16125         this.addEvents({
16126             /**
16127              * @event focus
16128              * Fires when this field receives input focus.
16129              * @param {Roo.form.Field} this
16130              */
16131             focus : true,
16132             /**
16133              * @event blur
16134              * Fires when this field loses input focus.
16135              * @param {Roo.form.Field} this
16136              */
16137             blur : true,
16138             /**
16139              * @event specialkey
16140              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
16141              * {@link Roo.EventObject#getKey} to determine which key was pressed.
16142              * @param {Roo.form.Field} this
16143              * @param {Roo.EventObject} e The event object
16144              */
16145             specialkey : true,
16146             /**
16147              * @event change
16148              * Fires just before the field blurs if the field value has changed.
16149              * @param {Roo.form.Field} this
16150              * @param {Mixed} newValue The new value
16151              * @param {Mixed} oldValue The original value
16152              */
16153             change : true,
16154             /**
16155              * @event invalid
16156              * Fires after the field has been marked as invalid.
16157              * @param {Roo.form.Field} this
16158              * @param {String} msg The validation message
16159              */
16160             invalid : true,
16161             /**
16162              * @event valid
16163              * Fires after the field has been validated with no errors.
16164              * @param {Roo.form.Field} this
16165              */
16166             valid : true,
16167              /**
16168              * @event keyup
16169              * Fires after the key up
16170              * @param {Roo.form.Field} this
16171              * @param {Roo.EventObject}  e The event Object
16172              */
16173             keyup : true
16174         });
16175     },
16176
16177     /**
16178      * Returns the name attribute of the field if available
16179      * @return {String} name The field name
16180      */
16181     getName: function(){
16182          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
16183     },
16184
16185     // private
16186     onRender : function(ct, position){
16187         Roo.form.Field.superclass.onRender.call(this, ct, position);
16188         if(!this.el){
16189             var cfg = this.getAutoCreate();
16190             if(!cfg.name){
16191                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
16192             }
16193             if (!cfg.name.length) {
16194                 delete cfg.name;
16195             }
16196             if(this.inputType){
16197                 cfg.type = this.inputType;
16198             }
16199             this.el = ct.createChild(cfg, position);
16200         }
16201         var type = this.el.dom.type;
16202         if(type){
16203             if(type == 'password'){
16204                 type = 'text';
16205             }
16206             this.el.addClass('x-form-'+type);
16207         }
16208         if(this.readOnly){
16209             this.el.dom.readOnly = true;
16210         }
16211         if(this.tabIndex !== undefined){
16212             this.el.dom.setAttribute('tabIndex', this.tabIndex);
16213         }
16214
16215         this.el.addClass([this.fieldClass, this.cls]);
16216         this.initValue();
16217     },
16218
16219     /**
16220      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
16221      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
16222      * @return {Roo.form.Field} this
16223      */
16224     applyTo : function(target){
16225         this.allowDomMove = false;
16226         this.el = Roo.get(target);
16227         this.render(this.el.dom.parentNode);
16228         return this;
16229     },
16230
16231     // private
16232     initValue : function(){
16233         if(this.value !== undefined){
16234             this.setValue(this.value);
16235         }else if(this.el.dom.value.length > 0){
16236             this.setValue(this.el.dom.value);
16237         }
16238     },
16239
16240     /**
16241      * Returns true if this field has been changed since it was originally loaded and is not disabled.
16242      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
16243      */
16244     isDirty : function() {
16245         if(this.disabled) {
16246             return false;
16247         }
16248         return String(this.getValue()) !== String(this.originalValue);
16249     },
16250
16251     /**
16252      * stores the current value in loadedValue
16253      */
16254     resetHasChanged : function()
16255     {
16256         this.loadedValue = String(this.getValue());
16257     },
16258     /**
16259      * checks the current value against the 'loaded' value.
16260      * Note - will return false if 'resetHasChanged' has not been called first.
16261      */
16262     hasChanged : function()
16263     {
16264         if(this.disabled || this.readOnly) {
16265             return false;
16266         }
16267         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
16268     },
16269     
16270     
16271     
16272     // private
16273     afterRender : function(){
16274         Roo.form.Field.superclass.afterRender.call(this);
16275         this.initEvents();
16276     },
16277
16278     // private
16279     fireKey : function(e){
16280         //Roo.log('field ' + e.getKey());
16281         if(e.isNavKeyPress()){
16282             this.fireEvent("specialkey", this, e);
16283         }
16284     },
16285
16286     /**
16287      * Resets the current field value to the originally loaded value and clears any validation messages
16288      */
16289     reset : function(){
16290         this.setValue(this.resetValue);
16291         this.originalValue = this.getValue();
16292         this.clearInvalid();
16293     },
16294
16295     // private
16296     initEvents : function(){
16297         // safari killled keypress - so keydown is now used..
16298         this.el.on("keydown" , this.fireKey,  this);
16299         this.el.on("focus", this.onFocus,  this);
16300         this.el.on("blur", this.onBlur,  this);
16301         this.el.relayEvent('keyup', this);
16302
16303         // reference to original value for reset
16304         this.originalValue = this.getValue();
16305         this.resetValue =  this.getValue();
16306     },
16307
16308     // private
16309     onFocus : function(){
16310         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16311             this.el.addClass(this.focusClass);
16312         }
16313         if(!this.hasFocus){
16314             this.hasFocus = true;
16315             this.startValue = this.getValue();
16316             this.fireEvent("focus", this);
16317         }
16318     },
16319
16320     beforeBlur : Roo.emptyFn,
16321
16322     // private
16323     onBlur : function(){
16324         this.beforeBlur();
16325         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
16326             this.el.removeClass(this.focusClass);
16327         }
16328         this.hasFocus = false;
16329         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
16330             this.validate();
16331         }
16332         var v = this.getValue();
16333         if(String(v) !== String(this.startValue)){
16334             this.fireEvent('change', this, v, this.startValue);
16335         }
16336         this.fireEvent("blur", this);
16337     },
16338
16339     /**
16340      * Returns whether or not the field value is currently valid
16341      * @param {Boolean} preventMark True to disable marking the field invalid
16342      * @return {Boolean} True if the value is valid, else false
16343      */
16344     isValid : function(preventMark){
16345         if(this.disabled){
16346             return true;
16347         }
16348         var restore = this.preventMark;
16349         this.preventMark = preventMark === true;
16350         var v = this.validateValue(this.processValue(this.getRawValue()));
16351         this.preventMark = restore;
16352         return v;
16353     },
16354
16355     /**
16356      * Validates the field value
16357      * @return {Boolean} True if the value is valid, else false
16358      */
16359     validate : function(){
16360         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
16361             this.clearInvalid();
16362             return true;
16363         }
16364         return false;
16365     },
16366
16367     processValue : function(value){
16368         return value;
16369     },
16370
16371     // private
16372     // Subclasses should provide the validation implementation by overriding this
16373     validateValue : function(value){
16374         return true;
16375     },
16376
16377     /**
16378      * Mark this field as invalid
16379      * @param {String} msg The validation message
16380      */
16381     markInvalid : function(msg){
16382         if(!this.rendered || this.preventMark){ // not rendered
16383             return;
16384         }
16385         
16386         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16387         
16388         obj.el.addClass(this.invalidClass);
16389         msg = msg || this.invalidText;
16390         switch(this.msgTarget){
16391             case 'qtip':
16392                 obj.el.dom.qtip = msg;
16393                 obj.el.dom.qclass = 'x-form-invalid-tip';
16394                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
16395                     Roo.QuickTips.enable();
16396                 }
16397                 break;
16398             case 'title':
16399                 this.el.dom.title = msg;
16400                 break;
16401             case 'under':
16402                 if(!this.errorEl){
16403                     var elp = this.el.findParent('.x-form-element', 5, true);
16404                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
16405                     this.errorEl.setWidth(elp.getWidth(true)-20);
16406                 }
16407                 this.errorEl.update(msg);
16408                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
16409                 break;
16410             case 'side':
16411                 if(!this.errorIcon){
16412                     var elp = this.el.findParent('.x-form-element', 5, true);
16413                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
16414                 }
16415                 this.alignErrorIcon();
16416                 this.errorIcon.dom.qtip = msg;
16417                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
16418                 this.errorIcon.show();
16419                 this.on('resize', this.alignErrorIcon, this);
16420                 break;
16421             default:
16422                 var t = Roo.getDom(this.msgTarget);
16423                 t.innerHTML = msg;
16424                 t.style.display = this.msgDisplay;
16425                 break;
16426         }
16427         this.fireEvent('invalid', this, msg);
16428     },
16429
16430     // private
16431     alignErrorIcon : function(){
16432         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
16433     },
16434
16435     /**
16436      * Clear any invalid styles/messages for this field
16437      */
16438     clearInvalid : function(){
16439         if(!this.rendered || this.preventMark){ // not rendered
16440             return;
16441         }
16442         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
16443         
16444         obj.el.removeClass(this.invalidClass);
16445         switch(this.msgTarget){
16446             case 'qtip':
16447                 obj.el.dom.qtip = '';
16448                 break;
16449             case 'title':
16450                 this.el.dom.title = '';
16451                 break;
16452             case 'under':
16453                 if(this.errorEl){
16454                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
16455                 }
16456                 break;
16457             case 'side':
16458                 if(this.errorIcon){
16459                     this.errorIcon.dom.qtip = '';
16460                     this.errorIcon.hide();
16461                     this.un('resize', this.alignErrorIcon, this);
16462                 }
16463                 break;
16464             default:
16465                 var t = Roo.getDom(this.msgTarget);
16466                 t.innerHTML = '';
16467                 t.style.display = 'none';
16468                 break;
16469         }
16470         this.fireEvent('valid', this);
16471     },
16472
16473     /**
16474      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
16475      * @return {Mixed} value The field value
16476      */
16477     getRawValue : function(){
16478         var v = this.el.getValue();
16479         
16480         return v;
16481     },
16482
16483     /**
16484      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16485      * @return {Mixed} value The field value
16486      */
16487     getValue : function(){
16488         var v = this.el.getValue();
16489          
16490         return v;
16491     },
16492
16493     /**
16494      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
16495      * @param {Mixed} value The value to set
16496      */
16497     setRawValue : function(v){
16498         return this.el.dom.value = (v === null || v === undefined ? '' : v);
16499     },
16500
16501     /**
16502      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
16503      * @param {Mixed} value The value to set
16504      */
16505     setValue : function(v){
16506         this.value = v;
16507         if(this.rendered){
16508             this.el.dom.value = (v === null || v === undefined ? '' : v);
16509              this.validate();
16510         }
16511     },
16512
16513     adjustSize : function(w, h){
16514         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
16515         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
16516         return s;
16517     },
16518
16519     adjustWidth : function(tag, w){
16520         tag = tag.toLowerCase();
16521         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
16522             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
16523                 if(tag == 'input'){
16524                     return w + 2;
16525                 }
16526                 if(tag == 'textarea'){
16527                     return w-2;
16528                 }
16529             }else if(Roo.isOpera){
16530                 if(tag == 'input'){
16531                     return w + 2;
16532                 }
16533                 if(tag == 'textarea'){
16534                     return w-2;
16535                 }
16536             }
16537         }
16538         return w;
16539     }
16540 });
16541
16542
16543 // anything other than normal should be considered experimental
16544 Roo.form.Field.msgFx = {
16545     normal : {
16546         show: function(msgEl, f){
16547             msgEl.setDisplayed('block');
16548         },
16549
16550         hide : function(msgEl, f){
16551             msgEl.setDisplayed(false).update('');
16552         }
16553     },
16554
16555     slide : {
16556         show: function(msgEl, f){
16557             msgEl.slideIn('t', {stopFx:true});
16558         },
16559
16560         hide : function(msgEl, f){
16561             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
16562         }
16563     },
16564
16565     slideRight : {
16566         show: function(msgEl, f){
16567             msgEl.fixDisplay();
16568             msgEl.alignTo(f.el, 'tl-tr');
16569             msgEl.slideIn('l', {stopFx:true});
16570         },
16571
16572         hide : function(msgEl, f){
16573             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
16574         }
16575     }
16576 };/*
16577  * Based on:
16578  * Ext JS Library 1.1.1
16579  * Copyright(c) 2006-2007, Ext JS, LLC.
16580  *
16581  * Originally Released Under LGPL - original licence link has changed is not relivant.
16582  *
16583  * Fork - LGPL
16584  * <script type="text/javascript">
16585  */
16586  
16587
16588 /**
16589  * @class Roo.form.TextField
16590  * @extends Roo.form.Field
16591  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
16592  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
16593  * @constructor
16594  * Creates a new TextField
16595  * @param {Object} config Configuration options
16596  */
16597 Roo.form.TextField = function(config){
16598     Roo.form.TextField.superclass.constructor.call(this, config);
16599     this.addEvents({
16600         /**
16601          * @event autosize
16602          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
16603          * according to the default logic, but this event provides a hook for the developer to apply additional
16604          * logic at runtime to resize the field if needed.
16605              * @param {Roo.form.Field} this This text field
16606              * @param {Number} width The new field width
16607              */
16608         autosize : true
16609     });
16610 };
16611
16612 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
16613     /**
16614      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
16615      */
16616     grow : false,
16617     /**
16618      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
16619      */
16620     growMin : 30,
16621     /**
16622      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
16623      */
16624     growMax : 800,
16625     /**
16626      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
16627      */
16628     vtype : null,
16629     /**
16630      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
16631      */
16632     maskRe : null,
16633     /**
16634      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
16635      */
16636     disableKeyFilter : false,
16637     /**
16638      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
16639      */
16640     allowBlank : true,
16641     /**
16642      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
16643      */
16644     minLength : 0,
16645     /**
16646      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
16647      */
16648     maxLength : Number.MAX_VALUE,
16649     /**
16650      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
16651      */
16652     minLengthText : "The minimum length for this field is {0}",
16653     /**
16654      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
16655      */
16656     maxLengthText : "The maximum length for this field is {0}",
16657     /**
16658      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
16659      */
16660     selectOnFocus : false,
16661     /**
16662      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
16663      */    
16664     allowLeadingSpace : false,
16665     /**
16666      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
16667      */
16668     blankText : "This field is required",
16669     /**
16670      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
16671      * If available, this function will be called only after the basic validators all return true, and will be passed the
16672      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
16673      */
16674     validator : null,
16675     /**
16676      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
16677      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
16678      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
16679      */
16680     regex : null,
16681     /**
16682      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
16683      */
16684     regexText : "",
16685     /**
16686      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
16687      */
16688     emptyText : null,
16689    
16690
16691     // private
16692     initEvents : function()
16693     {
16694         if (this.emptyText) {
16695             this.el.attr('placeholder', this.emptyText);
16696         }
16697         
16698         Roo.form.TextField.superclass.initEvents.call(this);
16699         if(this.validationEvent == 'keyup'){
16700             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
16701             this.el.on('keyup', this.filterValidation, this);
16702         }
16703         else if(this.validationEvent !== false){
16704             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
16705         }
16706         
16707         if(this.selectOnFocus){
16708             this.on("focus", this.preFocus, this);
16709         }
16710         if (!this.allowLeadingSpace) {
16711             this.on('blur', this.cleanLeadingSpace, this);
16712         }
16713         
16714         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
16715             this.el.on("keypress", this.filterKeys, this);
16716         }
16717         if(this.grow){
16718             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
16719             this.el.on("click", this.autoSize,  this);
16720         }
16721         if(this.el.is('input[type=password]') && Roo.isSafari){
16722             this.el.on('keydown', this.SafariOnKeyDown, this);
16723         }
16724     },
16725
16726     processValue : function(value){
16727         if(this.stripCharsRe){
16728             var newValue = value.replace(this.stripCharsRe, '');
16729             if(newValue !== value){
16730                 this.setRawValue(newValue);
16731                 return newValue;
16732             }
16733         }
16734         return value;
16735     },
16736
16737     filterValidation : function(e){
16738         if(!e.isNavKeyPress()){
16739             this.validationTask.delay(this.validationDelay);
16740         }
16741     },
16742
16743     // private
16744     onKeyUp : function(e){
16745         if(!e.isNavKeyPress()){
16746             this.autoSize();
16747         }
16748     },
16749     // private - clean the leading white space
16750     cleanLeadingSpace : function(e)
16751     {
16752         if ( this.inputType == 'file') {
16753             return;
16754         }
16755         
16756         this.setValue((this.getValue() + '').replace(/^\s+/,''));
16757     },
16758     /**
16759      * Resets the current field value to the originally-loaded value and clears any validation messages.
16760      *  
16761      */
16762     reset : function(){
16763         Roo.form.TextField.superclass.reset.call(this);
16764        
16765     }, 
16766     // private
16767     preFocus : function(){
16768         
16769         if(this.selectOnFocus){
16770             this.el.dom.select();
16771         }
16772     },
16773
16774     
16775     // private
16776     filterKeys : function(e){
16777         var k = e.getKey();
16778         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
16779             return;
16780         }
16781         var c = e.getCharCode(), cc = String.fromCharCode(c);
16782         if(Roo.isIE && (e.isSpecialKey() || !cc)){
16783             return;
16784         }
16785         if(!this.maskRe.test(cc)){
16786             e.stopEvent();
16787         }
16788     },
16789
16790     setValue : function(v){
16791         
16792         Roo.form.TextField.superclass.setValue.apply(this, arguments);
16793         
16794         this.autoSize();
16795     },
16796
16797     /**
16798      * Validates a value according to the field's validation rules and marks the field as invalid
16799      * if the validation fails
16800      * @param {Mixed} value The value to validate
16801      * @return {Boolean} True if the value is valid, else false
16802      */
16803     validateValue : function(value){
16804         if(value.length < 1)  { // if it's blank
16805              if(this.allowBlank){
16806                 this.clearInvalid();
16807                 return true;
16808              }else{
16809                 this.markInvalid(this.blankText);
16810                 return false;
16811              }
16812         }
16813         if(value.length < this.minLength){
16814             this.markInvalid(String.format(this.minLengthText, this.minLength));
16815             return false;
16816         }
16817         if(value.length > this.maxLength){
16818             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
16819             return false;
16820         }
16821         if(this.vtype){
16822             var vt = Roo.form.VTypes;
16823             if(!vt[this.vtype](value, this)){
16824                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
16825                 return false;
16826             }
16827         }
16828         if(typeof this.validator == "function"){
16829             var msg = this.validator(value);
16830             if(msg !== true){
16831                 this.markInvalid(msg);
16832                 return false;
16833             }
16834         }
16835         if(this.regex && !this.regex.test(value)){
16836             this.markInvalid(this.regexText);
16837             return false;
16838         }
16839         return true;
16840     },
16841
16842     /**
16843      * Selects text in this field
16844      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
16845      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
16846      */
16847     selectText : function(start, end){
16848         var v = this.getRawValue();
16849         if(v.length > 0){
16850             start = start === undefined ? 0 : start;
16851             end = end === undefined ? v.length : end;
16852             var d = this.el.dom;
16853             if(d.setSelectionRange){
16854                 d.setSelectionRange(start, end);
16855             }else if(d.createTextRange){
16856                 var range = d.createTextRange();
16857                 range.moveStart("character", start);
16858                 range.moveEnd("character", v.length-end);
16859                 range.select();
16860             }
16861         }
16862     },
16863
16864     /**
16865      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
16866      * This only takes effect if grow = true, and fires the autosize event.
16867      */
16868     autoSize : function(){
16869         if(!this.grow || !this.rendered){
16870             return;
16871         }
16872         if(!this.metrics){
16873             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
16874         }
16875         var el = this.el;
16876         var v = el.dom.value;
16877         var d = document.createElement('div');
16878         d.appendChild(document.createTextNode(v));
16879         v = d.innerHTML;
16880         d = null;
16881         v += "&#160;";
16882         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
16883         this.el.setWidth(w);
16884         this.fireEvent("autosize", this, w);
16885     },
16886     
16887     // private
16888     SafariOnKeyDown : function(event)
16889     {
16890         // this is a workaround for a password hang bug on chrome/ webkit.
16891         
16892         var isSelectAll = false;
16893         
16894         if(this.el.dom.selectionEnd > 0){
16895             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
16896         }
16897         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
16898             event.preventDefault();
16899             this.setValue('');
16900             return;
16901         }
16902         
16903         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
16904             
16905             event.preventDefault();
16906             // this is very hacky as keydown always get's upper case.
16907             
16908             var cc = String.fromCharCode(event.getCharCode());
16909             
16910             
16911             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
16912             
16913         }
16914         
16915         
16916     }
16917 });/*
16918  * Based on:
16919  * Ext JS Library 1.1.1
16920  * Copyright(c) 2006-2007, Ext JS, LLC.
16921  *
16922  * Originally Released Under LGPL - original licence link has changed is not relivant.
16923  *
16924  * Fork - LGPL
16925  * <script type="text/javascript">
16926  */
16927  
16928 /**
16929  * @class Roo.form.Hidden
16930  * @extends Roo.form.TextField
16931  * Simple Hidden element used on forms 
16932  * 
16933  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
16934  * 
16935  * @constructor
16936  * Creates a new Hidden form element.
16937  * @param {Object} config Configuration options
16938  */
16939
16940
16941
16942 // easy hidden field...
16943 Roo.form.Hidden = function(config){
16944     Roo.form.Hidden.superclass.constructor.call(this, config);
16945 };
16946   
16947 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
16948     fieldLabel:      '',
16949     inputType:      'hidden',
16950     width:          50,
16951     allowBlank:     true,
16952     labelSeparator: '',
16953     hidden:         true,
16954     itemCls :       'x-form-item-display-none'
16955
16956
16957 });
16958
16959
16960 /*
16961  * Based on:
16962  * Ext JS Library 1.1.1
16963  * Copyright(c) 2006-2007, Ext JS, LLC.
16964  *
16965  * Originally Released Under LGPL - original licence link has changed is not relivant.
16966  *
16967  * Fork - LGPL
16968  * <script type="text/javascript">
16969  */
16970  
16971 /**
16972  * @class Roo.form.TriggerField
16973  * @extends Roo.form.TextField
16974  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
16975  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
16976  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
16977  * for which you can provide a custom implementation.  For example:
16978  * <pre><code>
16979 var trigger = new Roo.form.TriggerField();
16980 trigger.onTriggerClick = myTriggerFn;
16981 trigger.applyTo('my-field');
16982 </code></pre>
16983  *
16984  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
16985  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
16986  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
16987  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
16988  * @constructor
16989  * Create a new TriggerField.
16990  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
16991  * to the base TextField)
16992  */
16993 Roo.form.TriggerField = function(config){
16994     this.mimicing = false;
16995     Roo.form.TriggerField.superclass.constructor.call(this, config);
16996 };
16997
16998 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
16999     /**
17000      * @cfg {String} triggerClass A CSS class to apply to the trigger
17001      */
17002     /**
17003      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17004      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
17005      */
17006     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
17007     /**
17008      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
17009      */
17010     hideTrigger:false,
17011
17012     /** @cfg {Boolean} grow @hide */
17013     /** @cfg {Number} growMin @hide */
17014     /** @cfg {Number} growMax @hide */
17015
17016     /**
17017      * @hide 
17018      * @method
17019      */
17020     autoSize: Roo.emptyFn,
17021     // private
17022     monitorTab : true,
17023     // private
17024     deferHeight : true,
17025
17026     
17027     actionMode : 'wrap',
17028     // private
17029     onResize : function(w, h){
17030         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
17031         if(typeof w == 'number'){
17032             var x = w - this.trigger.getWidth();
17033             this.el.setWidth(this.adjustWidth('input', x));
17034             this.trigger.setStyle('left', x+'px');
17035         }
17036     },
17037
17038     // private
17039     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17040
17041     // private
17042     getResizeEl : function(){
17043         return this.wrap;
17044     },
17045
17046     // private
17047     getPositionEl : function(){
17048         return this.wrap;
17049     },
17050
17051     // private
17052     alignErrorIcon : function(){
17053         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
17054     },
17055
17056     // private
17057     onRender : function(ct, position){
17058         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
17059         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
17060         this.trigger = this.wrap.createChild(this.triggerConfig ||
17061                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
17062         if(this.hideTrigger){
17063             this.trigger.setDisplayed(false);
17064         }
17065         this.initTrigger();
17066         if(!this.width){
17067             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
17068         }
17069     },
17070
17071     // private
17072     initTrigger : function(){
17073         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
17074         this.trigger.addClassOnOver('x-form-trigger-over');
17075         this.trigger.addClassOnClick('x-form-trigger-click');
17076     },
17077
17078     // private
17079     onDestroy : function(){
17080         if(this.trigger){
17081             this.trigger.removeAllListeners();
17082             this.trigger.remove();
17083         }
17084         if(this.wrap){
17085             this.wrap.remove();
17086         }
17087         Roo.form.TriggerField.superclass.onDestroy.call(this);
17088     },
17089
17090     // private
17091     onFocus : function(){
17092         Roo.form.TriggerField.superclass.onFocus.call(this);
17093         if(!this.mimicing){
17094             this.wrap.addClass('x-trigger-wrap-focus');
17095             this.mimicing = true;
17096             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
17097             if(this.monitorTab){
17098                 this.el.on("keydown", this.checkTab, this);
17099             }
17100         }
17101     },
17102
17103     // private
17104     checkTab : function(e){
17105         if(e.getKey() == e.TAB){
17106             this.triggerBlur();
17107         }
17108     },
17109
17110     // private
17111     onBlur : function(){
17112         // do nothing
17113     },
17114
17115     // private
17116     mimicBlur : function(e, t){
17117         if(!this.wrap.contains(t) && this.validateBlur()){
17118             this.triggerBlur();
17119         }
17120     },
17121
17122     // private
17123     triggerBlur : function(){
17124         this.mimicing = false;
17125         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
17126         if(this.monitorTab){
17127             this.el.un("keydown", this.checkTab, this);
17128         }
17129         this.wrap.removeClass('x-trigger-wrap-focus');
17130         Roo.form.TriggerField.superclass.onBlur.call(this);
17131     },
17132
17133     // private
17134     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
17135     validateBlur : function(e, t){
17136         return true;
17137     },
17138
17139     // private
17140     onDisable : function(){
17141         Roo.form.TriggerField.superclass.onDisable.call(this);
17142         if(this.wrap){
17143             this.wrap.addClass('x-item-disabled');
17144         }
17145     },
17146
17147     // private
17148     onEnable : function(){
17149         Roo.form.TriggerField.superclass.onEnable.call(this);
17150         if(this.wrap){
17151             this.wrap.removeClass('x-item-disabled');
17152         }
17153     },
17154
17155     // private
17156     onShow : function(){
17157         var ae = this.getActionEl();
17158         
17159         if(ae){
17160             ae.dom.style.display = '';
17161             ae.dom.style.visibility = 'visible';
17162         }
17163     },
17164
17165     // private
17166     
17167     onHide : function(){
17168         var ae = this.getActionEl();
17169         ae.dom.style.display = 'none';
17170     },
17171
17172     /**
17173      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
17174      * by an implementing function.
17175      * @method
17176      * @param {EventObject} e
17177      */
17178     onTriggerClick : Roo.emptyFn
17179 });
17180
17181 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
17182 // to be extended by an implementing class.  For an example of implementing this class, see the custom
17183 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
17184 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
17185     initComponent : function(){
17186         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
17187
17188         this.triggerConfig = {
17189             tag:'span', cls:'x-form-twin-triggers', cn:[
17190             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
17191             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
17192         ]};
17193     },
17194
17195     getTrigger : function(index){
17196         return this.triggers[index];
17197     },
17198
17199     initTrigger : function(){
17200         var ts = this.trigger.select('.x-form-trigger', true);
17201         this.wrap.setStyle('overflow', 'hidden');
17202         var triggerField = this;
17203         ts.each(function(t, all, index){
17204             t.hide = function(){
17205                 var w = triggerField.wrap.getWidth();
17206                 this.dom.style.display = 'none';
17207                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17208             };
17209             t.show = function(){
17210                 var w = triggerField.wrap.getWidth();
17211                 this.dom.style.display = '';
17212                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
17213             };
17214             var triggerIndex = 'Trigger'+(index+1);
17215
17216             if(this['hide'+triggerIndex]){
17217                 t.dom.style.display = 'none';
17218             }
17219             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
17220             t.addClassOnOver('x-form-trigger-over');
17221             t.addClassOnClick('x-form-trigger-click');
17222         }, this);
17223         this.triggers = ts.elements;
17224     },
17225
17226     onTrigger1Click : Roo.emptyFn,
17227     onTrigger2Click : Roo.emptyFn
17228 });/*
17229  * Based on:
17230  * Ext JS Library 1.1.1
17231  * Copyright(c) 2006-2007, Ext JS, LLC.
17232  *
17233  * Originally Released Under LGPL - original licence link has changed is not relivant.
17234  *
17235  * Fork - LGPL
17236  * <script type="text/javascript">
17237  */
17238  
17239 /**
17240  * @class Roo.form.TextArea
17241  * @extends Roo.form.TextField
17242  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
17243  * support for auto-sizing.
17244  * @constructor
17245  * Creates a new TextArea
17246  * @param {Object} config Configuration options
17247  */
17248 Roo.form.TextArea = function(config){
17249     Roo.form.TextArea.superclass.constructor.call(this, config);
17250     // these are provided exchanges for backwards compat
17251     // minHeight/maxHeight were replaced by growMin/growMax to be
17252     // compatible with TextField growing config values
17253     if(this.minHeight !== undefined){
17254         this.growMin = this.minHeight;
17255     }
17256     if(this.maxHeight !== undefined){
17257         this.growMax = this.maxHeight;
17258     }
17259 };
17260
17261 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
17262     /**
17263      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
17264      */
17265     growMin : 60,
17266     /**
17267      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
17268      */
17269     growMax: 1000,
17270     /**
17271      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
17272      * in the field (equivalent to setting overflow: hidden, defaults to false)
17273      */
17274     preventScrollbars: false,
17275     /**
17276      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
17277      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
17278      */
17279
17280     // private
17281     onRender : function(ct, position){
17282         if(!this.el){
17283             this.defaultAutoCreate = {
17284                 tag: "textarea",
17285                 style:"width:300px;height:60px;",
17286                 autocomplete: "new-password"
17287             };
17288         }
17289         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
17290         if(this.grow){
17291             this.textSizeEl = Roo.DomHelper.append(document.body, {
17292                 tag: "pre", cls: "x-form-grow-sizer"
17293             });
17294             if(this.preventScrollbars){
17295                 this.el.setStyle("overflow", "hidden");
17296             }
17297             this.el.setHeight(this.growMin);
17298         }
17299     },
17300
17301     onDestroy : function(){
17302         if(this.textSizeEl){
17303             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
17304         }
17305         Roo.form.TextArea.superclass.onDestroy.call(this);
17306     },
17307
17308     // private
17309     onKeyUp : function(e){
17310         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
17311             this.autoSize();
17312         }
17313     },
17314
17315     /**
17316      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
17317      * This only takes effect if grow = true, and fires the autosize event if the height changes.
17318      */
17319     autoSize : function(){
17320         if(!this.grow || !this.textSizeEl){
17321             return;
17322         }
17323         var el = this.el;
17324         var v = el.dom.value;
17325         var ts = this.textSizeEl;
17326
17327         ts.innerHTML = '';
17328         ts.appendChild(document.createTextNode(v));
17329         v = ts.innerHTML;
17330
17331         Roo.fly(ts).setWidth(this.el.getWidth());
17332         if(v.length < 1){
17333             v = "&#160;&#160;";
17334         }else{
17335             if(Roo.isIE){
17336                 v = v.replace(/\n/g, '<p>&#160;</p>');
17337             }
17338             v += "&#160;\n&#160;";
17339         }
17340         ts.innerHTML = v;
17341         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
17342         if(h != this.lastHeight){
17343             this.lastHeight = h;
17344             this.el.setHeight(h);
17345             this.fireEvent("autosize", this, h);
17346         }
17347     }
17348 });/*
17349  * Based on:
17350  * Ext JS Library 1.1.1
17351  * Copyright(c) 2006-2007, Ext JS, LLC.
17352  *
17353  * Originally Released Under LGPL - original licence link has changed is not relivant.
17354  *
17355  * Fork - LGPL
17356  * <script type="text/javascript">
17357  */
17358  
17359
17360 /**
17361  * @class Roo.form.NumberField
17362  * @extends Roo.form.TextField
17363  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17364  * @constructor
17365  * Creates a new NumberField
17366  * @param {Object} config Configuration options
17367  */
17368 Roo.form.NumberField = function(config){
17369     Roo.form.NumberField.superclass.constructor.call(this, config);
17370 };
17371
17372 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
17373     /**
17374      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
17375      */
17376     fieldClass: "x-form-field x-form-num-field",
17377     /**
17378      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
17379      */
17380     allowDecimals : true,
17381     /**
17382      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
17383      */
17384     decimalSeparator : ".",
17385     /**
17386      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
17387      */
17388     decimalPrecision : 2,
17389     /**
17390      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
17391      */
17392     allowNegative : true,
17393     /**
17394      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
17395      */
17396     minValue : Number.NEGATIVE_INFINITY,
17397     /**
17398      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
17399      */
17400     maxValue : Number.MAX_VALUE,
17401     /**
17402      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
17403      */
17404     minText : "The minimum value for this field is {0}",
17405     /**
17406      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
17407      */
17408     maxText : "The maximum value for this field is {0}",
17409     /**
17410      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
17411      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
17412      */
17413     nanText : "{0} is not a valid number",
17414
17415     // private
17416     initEvents : function(){
17417         Roo.form.NumberField.superclass.initEvents.call(this);
17418         var allowed = "0123456789";
17419         if(this.allowDecimals){
17420             allowed += this.decimalSeparator;
17421         }
17422         if(this.allowNegative){
17423             allowed += "-";
17424         }
17425         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
17426         var keyPress = function(e){
17427             var k = e.getKey();
17428             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
17429                 return;
17430             }
17431             var c = e.getCharCode();
17432             if(allowed.indexOf(String.fromCharCode(c)) === -1){
17433                 e.stopEvent();
17434             }
17435         };
17436         this.el.on("keypress", keyPress, this);
17437     },
17438
17439     // private
17440     validateValue : function(value){
17441         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
17442             return false;
17443         }
17444         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17445              return true;
17446         }
17447         var num = this.parseValue(value);
17448         if(isNaN(num)){
17449             this.markInvalid(String.format(this.nanText, value));
17450             return false;
17451         }
17452         if(num < this.minValue){
17453             this.markInvalid(String.format(this.minText, this.minValue));
17454             return false;
17455         }
17456         if(num > this.maxValue){
17457             this.markInvalid(String.format(this.maxText, this.maxValue));
17458             return false;
17459         }
17460         return true;
17461     },
17462
17463     getValue : function(){
17464         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
17465     },
17466
17467     // private
17468     parseValue : function(value){
17469         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
17470         return isNaN(value) ? '' : value;
17471     },
17472
17473     // private
17474     fixPrecision : function(value){
17475         var nan = isNaN(value);
17476         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
17477             return nan ? '' : value;
17478         }
17479         return parseFloat(value).toFixed(this.decimalPrecision);
17480     },
17481
17482     setValue : function(v){
17483         v = this.fixPrecision(v);
17484         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
17485     },
17486
17487     // private
17488     decimalPrecisionFcn : function(v){
17489         return Math.floor(v);
17490     },
17491
17492     beforeBlur : function(){
17493         var v = this.parseValue(this.getRawValue());
17494         if(v){
17495             this.setValue(v);
17496         }
17497     }
17498 });/*
17499  * Based on:
17500  * Ext JS Library 1.1.1
17501  * Copyright(c) 2006-2007, Ext JS, LLC.
17502  *
17503  * Originally Released Under LGPL - original licence link has changed is not relivant.
17504  *
17505  * Fork - LGPL
17506  * <script type="text/javascript">
17507  */
17508  
17509 /**
17510  * @class Roo.form.DateField
17511  * @extends Roo.form.TriggerField
17512  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17513 * @constructor
17514 * Create a new DateField
17515 * @param {Object} config
17516  */
17517 Roo.form.DateField = function(config)
17518 {
17519     Roo.form.DateField.superclass.constructor.call(this, config);
17520     
17521       this.addEvents({
17522          
17523         /**
17524          * @event select
17525          * Fires when a date is selected
17526              * @param {Roo.form.DateField} combo This combo box
17527              * @param {Date} date The date selected
17528              */
17529         'select' : true
17530          
17531     });
17532     
17533     
17534     if(typeof this.minValue == "string") {
17535         this.minValue = this.parseDate(this.minValue);
17536     }
17537     if(typeof this.maxValue == "string") {
17538         this.maxValue = this.parseDate(this.maxValue);
17539     }
17540     this.ddMatch = null;
17541     if(this.disabledDates){
17542         var dd = this.disabledDates;
17543         var re = "(?:";
17544         for(var i = 0; i < dd.length; i++){
17545             re += dd[i];
17546             if(i != dd.length-1) {
17547                 re += "|";
17548             }
17549         }
17550         this.ddMatch = new RegExp(re + ")");
17551     }
17552 };
17553
17554 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
17555     /**
17556      * @cfg {String} format
17557      * The default date format string which can be overriden for localization support.  The format must be
17558      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17559      */
17560     format : "m/d/y",
17561     /**
17562      * @cfg {String} altFormats
17563      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17564      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17565      */
17566     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
17567     /**
17568      * @cfg {Array} disabledDays
17569      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17570      */
17571     disabledDays : null,
17572     /**
17573      * @cfg {String} disabledDaysText
17574      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17575      */
17576     disabledDaysText : "Disabled",
17577     /**
17578      * @cfg {Array} disabledDates
17579      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17580      * expression so they are very powerful. Some examples:
17581      * <ul>
17582      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17583      * <li>["03/08", "09/16"] would disable those days for every year</li>
17584      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17585      * <li>["03/../2006"] would disable every day in March 2006</li>
17586      * <li>["^03"] would disable every day in every March</li>
17587      * </ul>
17588      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17589      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17590      */
17591     disabledDates : null,
17592     /**
17593      * @cfg {String} disabledDatesText
17594      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17595      */
17596     disabledDatesText : "Disabled",
17597         
17598         
17599         /**
17600      * @cfg {Date/String} zeroValue
17601      * if the date is less that this number, then the field is rendered as empty
17602      * default is 1800
17603      */
17604         zeroValue : '1800-01-01',
17605         
17606         
17607     /**
17608      * @cfg {Date/String} minValue
17609      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17610      * valid format (defaults to null).
17611      */
17612     minValue : null,
17613     /**
17614      * @cfg {Date/String} maxValue
17615      * The maximum allowed date. Can be either a Javascript date object or a string date in a
17616      * valid format (defaults to null).
17617      */
17618     maxValue : null,
17619     /**
17620      * @cfg {String} minText
17621      * The error text to display when the date in the cell is before minValue (defaults to
17622      * 'The date in this field must be after {minValue}').
17623      */
17624     minText : "The date in this field must be equal to or after {0}",
17625     /**
17626      * @cfg {String} maxText
17627      * The error text to display when the date in the cell is after maxValue (defaults to
17628      * 'The date in this field must be before {maxValue}').
17629      */
17630     maxText : "The date in this field must be equal to or before {0}",
17631     /**
17632      * @cfg {String} invalidText
17633      * The error text to display when the date in the field is invalid (defaults to
17634      * '{value} is not a valid date - it must be in the format {format}').
17635      */
17636     invalidText : "{0} is not a valid date - it must be in the format {1}",
17637     /**
17638      * @cfg {String} triggerClass
17639      * An additional CSS class used to style the trigger button.  The trigger will always get the
17640      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
17641      * which displays a calendar icon).
17642      */
17643     triggerClass : 'x-form-date-trigger',
17644     
17645
17646     /**
17647      * @cfg {Boolean} useIso
17648      * if enabled, then the date field will use a hidden field to store the 
17649      * real value as iso formated date. default (false)
17650      */ 
17651     useIso : false,
17652     /**
17653      * @cfg {String/Object} autoCreate
17654      * A DomHelper element spec, or true for a default element spec (defaults to
17655      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
17656      */ 
17657     // private
17658     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
17659     
17660     // private
17661     hiddenField: false,
17662     
17663     onRender : function(ct, position)
17664     {
17665         Roo.form.DateField.superclass.onRender.call(this, ct, position);
17666         if (this.useIso) {
17667             //this.el.dom.removeAttribute('name'); 
17668             Roo.log("Changing name?");
17669             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
17670             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
17671                     'before', true);
17672             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
17673             // prevent input submission
17674             this.hiddenName = this.name;
17675         }
17676             
17677             
17678     },
17679     
17680     // private
17681     validateValue : function(value)
17682     {
17683         value = this.formatDate(value);
17684         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
17685             Roo.log('super failed');
17686             return false;
17687         }
17688         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
17689              return true;
17690         }
17691         var svalue = value;
17692         value = this.parseDate(value);
17693         if(!value){
17694             Roo.log('parse date failed' + svalue);
17695             this.markInvalid(String.format(this.invalidText, svalue, this.format));
17696             return false;
17697         }
17698         var time = value.getTime();
17699         if(this.minValue && time < this.minValue.getTime()){
17700             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
17701             return false;
17702         }
17703         if(this.maxValue && time > this.maxValue.getTime()){
17704             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
17705             return false;
17706         }
17707         if(this.disabledDays){
17708             var day = value.getDay();
17709             for(var i = 0; i < this.disabledDays.length; i++) {
17710                 if(day === this.disabledDays[i]){
17711                     this.markInvalid(this.disabledDaysText);
17712                     return false;
17713                 }
17714             }
17715         }
17716         var fvalue = this.formatDate(value);
17717         if(this.ddMatch && this.ddMatch.test(fvalue)){
17718             this.markInvalid(String.format(this.disabledDatesText, fvalue));
17719             return false;
17720         }
17721         return true;
17722     },
17723
17724     // private
17725     // Provides logic to override the default TriggerField.validateBlur which just returns true
17726     validateBlur : function(){
17727         return !this.menu || !this.menu.isVisible();
17728     },
17729     
17730     getName: function()
17731     {
17732         // returns hidden if it's set..
17733         if (!this.rendered) {return ''};
17734         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
17735         
17736     },
17737
17738     /**
17739      * Returns the current date value of the date field.
17740      * @return {Date} The date value
17741      */
17742     getValue : function(){
17743         
17744         return  this.hiddenField ?
17745                 this.hiddenField.value :
17746                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
17747     },
17748
17749     /**
17750      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
17751      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
17752      * (the default format used is "m/d/y").
17753      * <br />Usage:
17754      * <pre><code>
17755 //All of these calls set the same date value (May 4, 2006)
17756
17757 //Pass a date object:
17758 var dt = new Date('5/4/06');
17759 dateField.setValue(dt);
17760
17761 //Pass a date string (default format):
17762 dateField.setValue('5/4/06');
17763
17764 //Pass a date string (custom format):
17765 dateField.format = 'Y-m-d';
17766 dateField.setValue('2006-5-4');
17767 </code></pre>
17768      * @param {String/Date} date The date or valid date string
17769      */
17770     setValue : function(date){
17771         if (this.hiddenField) {
17772             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
17773         }
17774         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
17775         // make sure the value field is always stored as a date..
17776         this.value = this.parseDate(date);
17777         
17778         
17779     },
17780
17781     // private
17782     parseDate : function(value){
17783                 
17784                 if (value instanceof Date) {
17785                         if (value < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
17786                                 return  '';
17787                         }
17788                         return value;
17789                 }
17790                 
17791                 
17792         if(!value || value instanceof Date){
17793             return value;
17794         }
17795         var v = Date.parseDate(value, this.format);
17796          if (!v && this.useIso) {
17797             v = Date.parseDate(value, 'Y-m-d');
17798         }
17799         if(!v && this.altFormats){
17800             if(!this.altFormatsArray){
17801                 this.altFormatsArray = this.altFormats.split("|");
17802             }
17803             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
17804                 v = Date.parseDate(value, this.altFormatsArray[i]);
17805             }
17806         }
17807                 if (v < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
17808                         v = '';
17809                 }
17810         return v;
17811     },
17812
17813     // private
17814     formatDate : function(date, fmt){
17815         return (!date || !(date instanceof Date)) ?
17816                date : date.dateFormat(fmt || this.format);
17817     },
17818
17819     // private
17820     menuListeners : {
17821         select: function(m, d){
17822             
17823             this.setValue(d);
17824             this.fireEvent('select', this, d);
17825         },
17826         show : function(){ // retain focus styling
17827             this.onFocus();
17828         },
17829         hide : function(){
17830             this.focus.defer(10, this);
17831             var ml = this.menuListeners;
17832             this.menu.un("select", ml.select,  this);
17833             this.menu.un("show", ml.show,  this);
17834             this.menu.un("hide", ml.hide,  this);
17835         }
17836     },
17837
17838     // private
17839     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
17840     onTriggerClick : function(){
17841         if(this.disabled){
17842             return;
17843         }
17844         if(this.menu == null){
17845             this.menu = new Roo.menu.DateMenu();
17846         }
17847         Roo.apply(this.menu.picker,  {
17848             showClear: this.allowBlank,
17849             minDate : this.minValue,
17850             maxDate : this.maxValue,
17851             disabledDatesRE : this.ddMatch,
17852             disabledDatesText : this.disabledDatesText,
17853             disabledDays : this.disabledDays,
17854             disabledDaysText : this.disabledDaysText,
17855             format : this.useIso ? 'Y-m-d' : this.format,
17856             minText : String.format(this.minText, this.formatDate(this.minValue)),
17857             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
17858         });
17859         this.menu.on(Roo.apply({}, this.menuListeners, {
17860             scope:this
17861         }));
17862         this.menu.picker.setValue(this.getValue() || new Date());
17863         this.menu.show(this.el, "tl-bl?");
17864     },
17865
17866     beforeBlur : function(){
17867         var v = this.parseDate(this.getRawValue());
17868         if(v){
17869             this.setValue(v);
17870         }
17871     },
17872
17873     /*@
17874      * overide
17875      * 
17876      */
17877     isDirty : function() {
17878         if(this.disabled) {
17879             return false;
17880         }
17881         
17882         if(typeof(this.startValue) === 'undefined'){
17883             return false;
17884         }
17885         
17886         return String(this.getValue()) !== String(this.startValue);
17887         
17888     },
17889     // @overide
17890     cleanLeadingSpace : function(e)
17891     {
17892        return;
17893     }
17894     
17895 });/*
17896  * Based on:
17897  * Ext JS Library 1.1.1
17898  * Copyright(c) 2006-2007, Ext JS, LLC.
17899  *
17900  * Originally Released Under LGPL - original licence link has changed is not relivant.
17901  *
17902  * Fork - LGPL
17903  * <script type="text/javascript">
17904  */
17905  
17906 /**
17907  * @class Roo.form.MonthField
17908  * @extends Roo.form.TriggerField
17909  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
17910 * @constructor
17911 * Create a new MonthField
17912 * @param {Object} config
17913  */
17914 Roo.form.MonthField = function(config){
17915     
17916     Roo.form.MonthField.superclass.constructor.call(this, config);
17917     
17918       this.addEvents({
17919          
17920         /**
17921          * @event select
17922          * Fires when a date is selected
17923              * @param {Roo.form.MonthFieeld} combo This combo box
17924              * @param {Date} date The date selected
17925              */
17926         'select' : true
17927          
17928     });
17929     
17930     
17931     if(typeof this.minValue == "string") {
17932         this.minValue = this.parseDate(this.minValue);
17933     }
17934     if(typeof this.maxValue == "string") {
17935         this.maxValue = this.parseDate(this.maxValue);
17936     }
17937     this.ddMatch = null;
17938     if(this.disabledDates){
17939         var dd = this.disabledDates;
17940         var re = "(?:";
17941         for(var i = 0; i < dd.length; i++){
17942             re += dd[i];
17943             if(i != dd.length-1) {
17944                 re += "|";
17945             }
17946         }
17947         this.ddMatch = new RegExp(re + ")");
17948     }
17949 };
17950
17951 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
17952     /**
17953      * @cfg {String} format
17954      * The default date format string which can be overriden for localization support.  The format must be
17955      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
17956      */
17957     format : "M Y",
17958     /**
17959      * @cfg {String} altFormats
17960      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
17961      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
17962      */
17963     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
17964     /**
17965      * @cfg {Array} disabledDays
17966      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
17967      */
17968     disabledDays : [0,1,2,3,4,5,6],
17969     /**
17970      * @cfg {String} disabledDaysText
17971      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
17972      */
17973     disabledDaysText : "Disabled",
17974     /**
17975      * @cfg {Array} disabledDates
17976      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
17977      * expression so they are very powerful. Some examples:
17978      * <ul>
17979      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
17980      * <li>["03/08", "09/16"] would disable those days for every year</li>
17981      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
17982      * <li>["03/../2006"] would disable every day in March 2006</li>
17983      * <li>["^03"] would disable every day in every March</li>
17984      * </ul>
17985      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
17986      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
17987      */
17988     disabledDates : null,
17989     /**
17990      * @cfg {String} disabledDatesText
17991      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
17992      */
17993     disabledDatesText : "Disabled",
17994     /**
17995      * @cfg {Date/String} minValue
17996      * The minimum allowed date. Can be either a Javascript date object or a string date in a
17997      * valid format (defaults to null).
17998      */
17999     minValue : null,
18000     /**
18001      * @cfg {Date/String} maxValue
18002      * The maximum allowed date. Can be either a Javascript date object or a string date in a
18003      * valid format (defaults to null).
18004      */
18005     maxValue : null,
18006     /**
18007      * @cfg {String} minText
18008      * The error text to display when the date in the cell is before minValue (defaults to
18009      * 'The date in this field must be after {minValue}').
18010      */
18011     minText : "The date in this field must be equal to or after {0}",
18012     /**
18013      * @cfg {String} maxTextf
18014      * The error text to display when the date in the cell is after maxValue (defaults to
18015      * 'The date in this field must be before {maxValue}').
18016      */
18017     maxText : "The date in this field must be equal to or before {0}",
18018     /**
18019      * @cfg {String} invalidText
18020      * The error text to display when the date in the field is invalid (defaults to
18021      * '{value} is not a valid date - it must be in the format {format}').
18022      */
18023     invalidText : "{0} is not a valid date - it must be in the format {1}",
18024     /**
18025      * @cfg {String} triggerClass
18026      * An additional CSS class used to style the trigger button.  The trigger will always get the
18027      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
18028      * which displays a calendar icon).
18029      */
18030     triggerClass : 'x-form-date-trigger',
18031     
18032
18033     /**
18034      * @cfg {Boolean} useIso
18035      * if enabled, then the date field will use a hidden field to store the 
18036      * real value as iso formated date. default (true)
18037      */ 
18038     useIso : true,
18039     /**
18040      * @cfg {String/Object} autoCreate
18041      * A DomHelper element spec, or true for a default element spec (defaults to
18042      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
18043      */ 
18044     // private
18045     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
18046     
18047     // private
18048     hiddenField: false,
18049     
18050     hideMonthPicker : false,
18051     
18052     onRender : function(ct, position)
18053     {
18054         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
18055         if (this.useIso) {
18056             this.el.dom.removeAttribute('name'); 
18057             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
18058                     'before', true);
18059             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
18060             // prevent input submission
18061             this.hiddenName = this.name;
18062         }
18063             
18064             
18065     },
18066     
18067     // private
18068     validateValue : function(value)
18069     {
18070         value = this.formatDate(value);
18071         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
18072             return false;
18073         }
18074         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
18075              return true;
18076         }
18077         var svalue = value;
18078         value = this.parseDate(value);
18079         if(!value){
18080             this.markInvalid(String.format(this.invalidText, svalue, this.format));
18081             return false;
18082         }
18083         var time = value.getTime();
18084         if(this.minValue && time < this.minValue.getTime()){
18085             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
18086             return false;
18087         }
18088         if(this.maxValue && time > this.maxValue.getTime()){
18089             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
18090             return false;
18091         }
18092         /*if(this.disabledDays){
18093             var day = value.getDay();
18094             for(var i = 0; i < this.disabledDays.length; i++) {
18095                 if(day === this.disabledDays[i]){
18096                     this.markInvalid(this.disabledDaysText);
18097                     return false;
18098                 }
18099             }
18100         }
18101         */
18102         var fvalue = this.formatDate(value);
18103         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
18104             this.markInvalid(String.format(this.disabledDatesText, fvalue));
18105             return false;
18106         }
18107         */
18108         return true;
18109     },
18110
18111     // private
18112     // Provides logic to override the default TriggerField.validateBlur which just returns true
18113     validateBlur : function(){
18114         return !this.menu || !this.menu.isVisible();
18115     },
18116
18117     /**
18118      * Returns the current date value of the date field.
18119      * @return {Date} The date value
18120      */
18121     getValue : function(){
18122         
18123         
18124         
18125         return  this.hiddenField ?
18126                 this.hiddenField.value :
18127                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
18128     },
18129
18130     /**
18131      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
18132      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
18133      * (the default format used is "m/d/y").
18134      * <br />Usage:
18135      * <pre><code>
18136 //All of these calls set the same date value (May 4, 2006)
18137
18138 //Pass a date object:
18139 var dt = new Date('5/4/06');
18140 monthField.setValue(dt);
18141
18142 //Pass a date string (default format):
18143 monthField.setValue('5/4/06');
18144
18145 //Pass a date string (custom format):
18146 monthField.format = 'Y-m-d';
18147 monthField.setValue('2006-5-4');
18148 </code></pre>
18149      * @param {String/Date} date The date or valid date string
18150      */
18151     setValue : function(date){
18152         Roo.log('month setValue' + date);
18153         // can only be first of month..
18154         
18155         var val = this.parseDate(date);
18156         
18157         if (this.hiddenField) {
18158             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
18159         }
18160         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
18161         this.value = this.parseDate(date);
18162     },
18163
18164     // private
18165     parseDate : function(value){
18166         if(!value || value instanceof Date){
18167             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
18168             return value;
18169         }
18170         var v = Date.parseDate(value, this.format);
18171         if (!v && this.useIso) {
18172             v = Date.parseDate(value, 'Y-m-d');
18173         }
18174         if (v) {
18175             // 
18176             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
18177         }
18178         
18179         
18180         if(!v && this.altFormats){
18181             if(!this.altFormatsArray){
18182                 this.altFormatsArray = this.altFormats.split("|");
18183             }
18184             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
18185                 v = Date.parseDate(value, this.altFormatsArray[i]);
18186             }
18187         }
18188         return v;
18189     },
18190
18191     // private
18192     formatDate : function(date, fmt){
18193         return (!date || !(date instanceof Date)) ?
18194                date : date.dateFormat(fmt || this.format);
18195     },
18196
18197     // private
18198     menuListeners : {
18199         select: function(m, d){
18200             this.setValue(d);
18201             this.fireEvent('select', this, d);
18202         },
18203         show : function(){ // retain focus styling
18204             this.onFocus();
18205         },
18206         hide : function(){
18207             this.focus.defer(10, this);
18208             var ml = this.menuListeners;
18209             this.menu.un("select", ml.select,  this);
18210             this.menu.un("show", ml.show,  this);
18211             this.menu.un("hide", ml.hide,  this);
18212         }
18213     },
18214     // private
18215     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
18216     onTriggerClick : function(){
18217         if(this.disabled){
18218             return;
18219         }
18220         if(this.menu == null){
18221             this.menu = new Roo.menu.DateMenu();
18222            
18223         }
18224         
18225         Roo.apply(this.menu.picker,  {
18226             
18227             showClear: this.allowBlank,
18228             minDate : this.minValue,
18229             maxDate : this.maxValue,
18230             disabledDatesRE : this.ddMatch,
18231             disabledDatesText : this.disabledDatesText,
18232             
18233             format : this.useIso ? 'Y-m-d' : this.format,
18234             minText : String.format(this.minText, this.formatDate(this.minValue)),
18235             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
18236             
18237         });
18238          this.menu.on(Roo.apply({}, this.menuListeners, {
18239             scope:this
18240         }));
18241        
18242         
18243         var m = this.menu;
18244         var p = m.picker;
18245         
18246         // hide month picker get's called when we called by 'before hide';
18247         
18248         var ignorehide = true;
18249         p.hideMonthPicker  = function(disableAnim){
18250             if (ignorehide) {
18251                 return;
18252             }
18253              if(this.monthPicker){
18254                 Roo.log("hideMonthPicker called");
18255                 if(disableAnim === true){
18256                     this.monthPicker.hide();
18257                 }else{
18258                     this.monthPicker.slideOut('t', {duration:.2});
18259                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
18260                     p.fireEvent("select", this, this.value);
18261                     m.hide();
18262                 }
18263             }
18264         }
18265         
18266         Roo.log('picker set value');
18267         Roo.log(this.getValue());
18268         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
18269         m.show(this.el, 'tl-bl?');
18270         ignorehide  = false;
18271         // this will trigger hideMonthPicker..
18272         
18273         
18274         // hidden the day picker
18275         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
18276         
18277         
18278         
18279       
18280         
18281         p.showMonthPicker.defer(100, p);
18282     
18283         
18284        
18285     },
18286
18287     beforeBlur : function(){
18288         var v = this.parseDate(this.getRawValue());
18289         if(v){
18290             this.setValue(v);
18291         }
18292     }
18293
18294     /** @cfg {Boolean} grow @hide */
18295     /** @cfg {Number} growMin @hide */
18296     /** @cfg {Number} growMax @hide */
18297     /**
18298      * @hide
18299      * @method autoSize
18300      */
18301 });/*
18302  * Based on:
18303  * Ext JS Library 1.1.1
18304  * Copyright(c) 2006-2007, Ext JS, LLC.
18305  *
18306  * Originally Released Under LGPL - original licence link has changed is not relivant.
18307  *
18308  * Fork - LGPL
18309  * <script type="text/javascript">
18310  */
18311  
18312
18313 /**
18314  * @class Roo.form.ComboBox
18315  * @extends Roo.form.TriggerField
18316  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
18317  * @constructor
18318  * Create a new ComboBox.
18319  * @param {Object} config Configuration options
18320  */
18321 Roo.form.ComboBox = function(config){
18322     Roo.form.ComboBox.superclass.constructor.call(this, config);
18323     this.addEvents({
18324         /**
18325          * @event expand
18326          * Fires when the dropdown list is expanded
18327              * @param {Roo.form.ComboBox} combo This combo box
18328              */
18329         'expand' : true,
18330         /**
18331          * @event collapse
18332          * Fires when the dropdown list is collapsed
18333              * @param {Roo.form.ComboBox} combo This combo box
18334              */
18335         'collapse' : true,
18336         /**
18337          * @event beforeselect
18338          * Fires before a list item is selected. Return false to cancel the selection.
18339              * @param {Roo.form.ComboBox} combo This combo box
18340              * @param {Roo.data.Record} record The data record returned from the underlying store
18341              * @param {Number} index The index of the selected item in the dropdown list
18342              */
18343         'beforeselect' : true,
18344         /**
18345          * @event select
18346          * Fires when a list item is selected
18347              * @param {Roo.form.ComboBox} combo This combo box
18348              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
18349              * @param {Number} index The index of the selected item in the dropdown list
18350              */
18351         'select' : true,
18352         /**
18353          * @event beforequery
18354          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
18355          * The event object passed has these properties:
18356              * @param {Roo.form.ComboBox} combo This combo box
18357              * @param {String} query The query
18358              * @param {Boolean} forceAll true to force "all" query
18359              * @param {Boolean} cancel true to cancel the query
18360              * @param {Object} e The query event object
18361              */
18362         'beforequery': true,
18363          /**
18364          * @event add
18365          * Fires when the 'add' icon is pressed (add a listener to enable add button)
18366              * @param {Roo.form.ComboBox} combo This combo box
18367              */
18368         'add' : true,
18369         /**
18370          * @event edit
18371          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
18372              * @param {Roo.form.ComboBox} combo This combo box
18373              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
18374              */
18375         'edit' : true
18376         
18377         
18378     });
18379     if(this.transform){
18380         this.allowDomMove = false;
18381         var s = Roo.getDom(this.transform);
18382         if(!this.hiddenName){
18383             this.hiddenName = s.name;
18384         }
18385         if(!this.store){
18386             this.mode = 'local';
18387             var d = [], opts = s.options;
18388             for(var i = 0, len = opts.length;i < len; i++){
18389                 var o = opts[i];
18390                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
18391                 if(o.selected) {
18392                     this.value = value;
18393                 }
18394                 d.push([value, o.text]);
18395             }
18396             this.store = new Roo.data.SimpleStore({
18397                 'id': 0,
18398                 fields: ['value', 'text'],
18399                 data : d
18400             });
18401             this.valueField = 'value';
18402             this.displayField = 'text';
18403         }
18404         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
18405         if(!this.lazyRender){
18406             this.target = true;
18407             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
18408             s.parentNode.removeChild(s); // remove it
18409             this.render(this.el.parentNode);
18410         }else{
18411             s.parentNode.removeChild(s); // remove it
18412         }
18413
18414     }
18415     if (this.store) {
18416         this.store = Roo.factory(this.store, Roo.data);
18417     }
18418     
18419     this.selectedIndex = -1;
18420     if(this.mode == 'local'){
18421         if(config.queryDelay === undefined){
18422             this.queryDelay = 10;
18423         }
18424         if(config.minChars === undefined){
18425             this.minChars = 0;
18426         }
18427     }
18428 };
18429
18430 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
18431     /**
18432      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
18433      */
18434     /**
18435      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
18436      * rendering into an Roo.Editor, defaults to false)
18437      */
18438     /**
18439      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
18440      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
18441      */
18442     /**
18443      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
18444      */
18445     /**
18446      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
18447      * the dropdown list (defaults to undefined, with no header element)
18448      */
18449
18450      /**
18451      * @cfg {String/Roo.Template} tpl The template to use to render the output
18452      */
18453      
18454     // private
18455     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
18456     /**
18457      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
18458      */
18459     listWidth: undefined,
18460     /**
18461      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
18462      * mode = 'remote' or 'text' if mode = 'local')
18463      */
18464     displayField: undefined,
18465     /**
18466      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
18467      * mode = 'remote' or 'value' if mode = 'local'). 
18468      * Note: use of a valueField requires the user make a selection
18469      * in order for a value to be mapped.
18470      */
18471     valueField: undefined,
18472     
18473     
18474     /**
18475      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
18476      * field's data value (defaults to the underlying DOM element's name)
18477      */
18478     hiddenName: undefined,
18479     /**
18480      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
18481      */
18482     listClass: '',
18483     /**
18484      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
18485      */
18486     selectedClass: 'x-combo-selected',
18487     /**
18488      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
18489      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
18490      * which displays a downward arrow icon).
18491      */
18492     triggerClass : 'x-form-arrow-trigger',
18493     /**
18494      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
18495      */
18496     shadow:'sides',
18497     /**
18498      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
18499      * anchor positions (defaults to 'tl-bl')
18500      */
18501     listAlign: 'tl-bl?',
18502     /**
18503      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
18504      */
18505     maxHeight: 300,
18506     /**
18507      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
18508      * query specified by the allQuery config option (defaults to 'query')
18509      */
18510     triggerAction: 'query',
18511     /**
18512      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
18513      * (defaults to 4, does not apply if editable = false)
18514      */
18515     minChars : 4,
18516     /**
18517      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
18518      * delay (typeAheadDelay) if it matches a known value (defaults to false)
18519      */
18520     typeAhead: false,
18521     /**
18522      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
18523      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
18524      */
18525     queryDelay: 500,
18526     /**
18527      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
18528      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
18529      */
18530     pageSize: 0,
18531     /**
18532      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
18533      * when editable = true (defaults to false)
18534      */
18535     selectOnFocus:false,
18536     /**
18537      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
18538      */
18539     queryParam: 'query',
18540     /**
18541      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
18542      * when mode = 'remote' (defaults to 'Loading...')
18543      */
18544     loadingText: 'Loading...',
18545     /**
18546      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
18547      */
18548     resizable: false,
18549     /**
18550      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
18551      */
18552     handleHeight : 8,
18553     /**
18554      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
18555      * traditional select (defaults to true)
18556      */
18557     editable: true,
18558     /**
18559      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
18560      */
18561     allQuery: '',
18562     /**
18563      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
18564      */
18565     mode: 'remote',
18566     /**
18567      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
18568      * listWidth has a higher value)
18569      */
18570     minListWidth : 70,
18571     /**
18572      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
18573      * allow the user to set arbitrary text into the field (defaults to false)
18574      */
18575     forceSelection:false,
18576     /**
18577      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
18578      * if typeAhead = true (defaults to 250)
18579      */
18580     typeAheadDelay : 250,
18581     /**
18582      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
18583      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
18584      */
18585     valueNotFoundText : undefined,
18586     /**
18587      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
18588      */
18589     blockFocus : false,
18590     
18591     /**
18592      * @cfg {Boolean} disableClear Disable showing of clear button.
18593      */
18594     disableClear : false,
18595     /**
18596      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
18597      */
18598     alwaysQuery : false,
18599     
18600     //private
18601     addicon : false,
18602     editicon: false,
18603     
18604     // element that contains real text value.. (when hidden is used..)
18605      
18606     // private
18607     onRender : function(ct, position)
18608     {
18609         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
18610         
18611         if(this.hiddenName){
18612             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
18613                     'before', true);
18614             this.hiddenField.value =
18615                 this.hiddenValue !== undefined ? this.hiddenValue :
18616                 this.value !== undefined ? this.value : '';
18617
18618             // prevent input submission
18619             this.el.dom.removeAttribute('name');
18620              
18621              
18622         }
18623         
18624         if(Roo.isGecko){
18625             this.el.dom.setAttribute('autocomplete', 'off');
18626         }
18627
18628         var cls = 'x-combo-list';
18629
18630         this.list = new Roo.Layer({
18631             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
18632         });
18633
18634         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
18635         this.list.setWidth(lw);
18636         this.list.swallowEvent('mousewheel');
18637         this.assetHeight = 0;
18638
18639         if(this.title){
18640             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
18641             this.assetHeight += this.header.getHeight();
18642         }
18643
18644         this.innerList = this.list.createChild({cls:cls+'-inner'});
18645         this.innerList.on('mouseover', this.onViewOver, this);
18646         this.innerList.on('mousemove', this.onViewMove, this);
18647         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18648         
18649         if(this.allowBlank && !this.pageSize && !this.disableClear){
18650             this.footer = this.list.createChild({cls:cls+'-ft'});
18651             this.pageTb = new Roo.Toolbar(this.footer);
18652            
18653         }
18654         if(this.pageSize){
18655             this.footer = this.list.createChild({cls:cls+'-ft'});
18656             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
18657                     {pageSize: this.pageSize});
18658             
18659         }
18660         
18661         if (this.pageTb && this.allowBlank && !this.disableClear) {
18662             var _this = this;
18663             this.pageTb.add(new Roo.Toolbar.Fill(), {
18664                 cls: 'x-btn-icon x-btn-clear',
18665                 text: '&#160;',
18666                 handler: function()
18667                 {
18668                     _this.collapse();
18669                     _this.clearValue();
18670                     _this.onSelect(false, -1);
18671                 }
18672             });
18673         }
18674         if (this.footer) {
18675             this.assetHeight += this.footer.getHeight();
18676         }
18677         
18678
18679         if(!this.tpl){
18680             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
18681         }
18682
18683         this.view = new Roo.View(this.innerList, this.tpl, {
18684             singleSelect:true,
18685             store: this.store,
18686             selectedClass: this.selectedClass
18687         });
18688
18689         this.view.on('click', this.onViewClick, this);
18690
18691         this.store.on('beforeload', this.onBeforeLoad, this);
18692         this.store.on('load', this.onLoad, this);
18693         this.store.on('loadexception', this.onLoadException, this);
18694
18695         if(this.resizable){
18696             this.resizer = new Roo.Resizable(this.list,  {
18697                pinned:true, handles:'se'
18698             });
18699             this.resizer.on('resize', function(r, w, h){
18700                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
18701                 this.listWidth = w;
18702                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
18703                 this.restrictHeight();
18704             }, this);
18705             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
18706         }
18707         if(!this.editable){
18708             this.editable = true;
18709             this.setEditable(false);
18710         }  
18711         
18712         
18713         if (typeof(this.events.add.listeners) != 'undefined') {
18714             
18715             this.addicon = this.wrap.createChild(
18716                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
18717        
18718             this.addicon.on('click', function(e) {
18719                 this.fireEvent('add', this);
18720             }, this);
18721         }
18722         if (typeof(this.events.edit.listeners) != 'undefined') {
18723             
18724             this.editicon = this.wrap.createChild(
18725                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
18726             if (this.addicon) {
18727                 this.editicon.setStyle('margin-left', '40px');
18728             }
18729             this.editicon.on('click', function(e) {
18730                 
18731                 // we fire even  if inothing is selected..
18732                 this.fireEvent('edit', this, this.lastData );
18733                 
18734             }, this);
18735         }
18736         
18737         
18738         
18739     },
18740
18741     // private
18742     initEvents : function(){
18743         Roo.form.ComboBox.superclass.initEvents.call(this);
18744
18745         this.keyNav = new Roo.KeyNav(this.el, {
18746             "up" : function(e){
18747                 this.inKeyMode = true;
18748                 this.selectPrev();
18749             },
18750
18751             "down" : function(e){
18752                 if(!this.isExpanded()){
18753                     this.onTriggerClick();
18754                 }else{
18755                     this.inKeyMode = true;
18756                     this.selectNext();
18757                 }
18758             },
18759
18760             "enter" : function(e){
18761                 this.onViewClick();
18762                 //return true;
18763             },
18764
18765             "esc" : function(e){
18766                 this.collapse();
18767             },
18768
18769             "tab" : function(e){
18770                 this.onViewClick(false);
18771                 this.fireEvent("specialkey", this, e);
18772                 return true;
18773             },
18774
18775             scope : this,
18776
18777             doRelay : function(foo, bar, hname){
18778                 if(hname == 'down' || this.scope.isExpanded()){
18779                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
18780                 }
18781                 return true;
18782             },
18783
18784             forceKeyDown: true
18785         });
18786         this.queryDelay = Math.max(this.queryDelay || 10,
18787                 this.mode == 'local' ? 10 : 250);
18788         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
18789         if(this.typeAhead){
18790             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
18791         }
18792         if(this.editable !== false){
18793             this.el.on("keyup", this.onKeyUp, this);
18794         }
18795         if(this.forceSelection){
18796             this.on('blur', this.doForce, this);
18797         }
18798     },
18799
18800     onDestroy : function(){
18801         if(this.view){
18802             this.view.setStore(null);
18803             this.view.el.removeAllListeners();
18804             this.view.el.remove();
18805             this.view.purgeListeners();
18806         }
18807         if(this.list){
18808             this.list.destroy();
18809         }
18810         if(this.store){
18811             this.store.un('beforeload', this.onBeforeLoad, this);
18812             this.store.un('load', this.onLoad, this);
18813             this.store.un('loadexception', this.onLoadException, this);
18814         }
18815         Roo.form.ComboBox.superclass.onDestroy.call(this);
18816     },
18817
18818     // private
18819     fireKey : function(e){
18820         if(e.isNavKeyPress() && !this.list.isVisible()){
18821             this.fireEvent("specialkey", this, e);
18822         }
18823     },
18824
18825     // private
18826     onResize: function(w, h){
18827         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
18828         
18829         if(typeof w != 'number'){
18830             // we do not handle it!?!?
18831             return;
18832         }
18833         var tw = this.trigger.getWidth();
18834         tw += this.addicon ? this.addicon.getWidth() : 0;
18835         tw += this.editicon ? this.editicon.getWidth() : 0;
18836         var x = w - tw;
18837         this.el.setWidth( this.adjustWidth('input', x));
18838             
18839         this.trigger.setStyle('left', x+'px');
18840         
18841         if(this.list && this.listWidth === undefined){
18842             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
18843             this.list.setWidth(lw);
18844             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18845         }
18846         
18847     
18848         
18849     },
18850
18851     /**
18852      * Allow or prevent the user from directly editing the field text.  If false is passed,
18853      * the user will only be able to select from the items defined in the dropdown list.  This method
18854      * is the runtime equivalent of setting the 'editable' config option at config time.
18855      * @param {Boolean} value True to allow the user to directly edit the field text
18856      */
18857     setEditable : function(value){
18858         if(value == this.editable){
18859             return;
18860         }
18861         this.editable = value;
18862         if(!value){
18863             this.el.dom.setAttribute('readOnly', true);
18864             this.el.on('mousedown', this.onTriggerClick,  this);
18865             this.el.addClass('x-combo-noedit');
18866         }else{
18867             this.el.dom.setAttribute('readOnly', false);
18868             this.el.un('mousedown', this.onTriggerClick,  this);
18869             this.el.removeClass('x-combo-noedit');
18870         }
18871     },
18872
18873     // private
18874     onBeforeLoad : function(){
18875         if(!this.hasFocus){
18876             return;
18877         }
18878         this.innerList.update(this.loadingText ?
18879                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
18880         this.restrictHeight();
18881         this.selectedIndex = -1;
18882     },
18883
18884     // private
18885     onLoad : function(){
18886         if(!this.hasFocus){
18887             return;
18888         }
18889         if(this.store.getCount() > 0){
18890             this.expand();
18891             this.restrictHeight();
18892             if(this.lastQuery == this.allQuery){
18893                 if(this.editable){
18894                     this.el.dom.select();
18895                 }
18896                 if(!this.selectByValue(this.value, true)){
18897                     this.select(0, true);
18898                 }
18899             }else{
18900                 this.selectNext();
18901                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
18902                     this.taTask.delay(this.typeAheadDelay);
18903                 }
18904             }
18905         }else{
18906             this.onEmptyResults();
18907         }
18908         //this.el.focus();
18909     },
18910     // private
18911     onLoadException : function()
18912     {
18913         this.collapse();
18914         Roo.log(this.store.reader.jsonData);
18915         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
18916             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
18917         }
18918         
18919         
18920     },
18921     // private
18922     onTypeAhead : function(){
18923         if(this.store.getCount() > 0){
18924             var r = this.store.getAt(0);
18925             var newValue = r.data[this.displayField];
18926             var len = newValue.length;
18927             var selStart = this.getRawValue().length;
18928             if(selStart != len){
18929                 this.setRawValue(newValue);
18930                 this.selectText(selStart, newValue.length);
18931             }
18932         }
18933     },
18934
18935     // private
18936     onSelect : function(record, index){
18937         if(this.fireEvent('beforeselect', this, record, index) !== false){
18938             this.setFromData(index > -1 ? record.data : false);
18939             this.collapse();
18940             this.fireEvent('select', this, record, index);
18941         }
18942     },
18943
18944     /**
18945      * Returns the currently selected field value or empty string if no value is set.
18946      * @return {String} value The selected value
18947      */
18948     getValue : function(){
18949         if(this.valueField){
18950             return typeof this.value != 'undefined' ? this.value : '';
18951         }
18952         return Roo.form.ComboBox.superclass.getValue.call(this);
18953     },
18954
18955     /**
18956      * Clears any text/value currently set in the field
18957      */
18958     clearValue : function(){
18959         if(this.hiddenField){
18960             this.hiddenField.value = '';
18961         }
18962         this.value = '';
18963         this.setRawValue('');
18964         this.lastSelectionText = '';
18965         
18966     },
18967
18968     /**
18969      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
18970      * will be displayed in the field.  If the value does not match the data value of an existing item,
18971      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
18972      * Otherwise the field will be blank (although the value will still be set).
18973      * @param {String} value The value to match
18974      */
18975     setValue : function(v){
18976         var text = v;
18977         if(this.valueField){
18978             var r = this.findRecord(this.valueField, v);
18979             if(r){
18980                 text = r.data[this.displayField];
18981             }else if(this.valueNotFoundText !== undefined){
18982                 text = this.valueNotFoundText;
18983             }
18984         }
18985         this.lastSelectionText = text;
18986         if(this.hiddenField){
18987             this.hiddenField.value = v;
18988         }
18989         Roo.form.ComboBox.superclass.setValue.call(this, text);
18990         this.value = v;
18991     },
18992     /**
18993      * @property {Object} the last set data for the element
18994      */
18995     
18996     lastData : false,
18997     /**
18998      * Sets the value of the field based on a object which is related to the record format for the store.
18999      * @param {Object} value the value to set as. or false on reset?
19000      */
19001     setFromData : function(o){
19002         var dv = ''; // display value
19003         var vv = ''; // value value..
19004         this.lastData = o;
19005         if (this.displayField) {
19006             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19007         } else {
19008             // this is an error condition!!!
19009             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19010         }
19011         
19012         if(this.valueField){
19013             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
19014         }
19015         if(this.hiddenField){
19016             this.hiddenField.value = vv;
19017             
19018             this.lastSelectionText = dv;
19019             Roo.form.ComboBox.superclass.setValue.call(this, dv);
19020             this.value = vv;
19021             return;
19022         }
19023         // no hidden field.. - we store the value in 'value', but still display
19024         // display field!!!!
19025         this.lastSelectionText = dv;
19026         Roo.form.ComboBox.superclass.setValue.call(this, dv);
19027         this.value = vv;
19028         
19029         
19030     },
19031     // private
19032     reset : function(){
19033         // overridden so that last data is reset..
19034         this.setValue(this.resetValue);
19035         this.originalValue = this.getValue();
19036         this.clearInvalid();
19037         this.lastData = false;
19038         if (this.view) {
19039             this.view.clearSelections();
19040         }
19041     },
19042     // private
19043     findRecord : function(prop, value){
19044         var record;
19045         if(this.store.getCount() > 0){
19046             this.store.each(function(r){
19047                 if(r.data[prop] == value){
19048                     record = r;
19049                     return false;
19050                 }
19051                 return true;
19052             });
19053         }
19054         return record;
19055     },
19056     
19057     getName: function()
19058     {
19059         // returns hidden if it's set..
19060         if (!this.rendered) {return ''};
19061         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
19062         
19063     },
19064     // private
19065     onViewMove : function(e, t){
19066         this.inKeyMode = false;
19067     },
19068
19069     // private
19070     onViewOver : function(e, t){
19071         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
19072             return;
19073         }
19074         var item = this.view.findItemFromChild(t);
19075         if(item){
19076             var index = this.view.indexOf(item);
19077             this.select(index, false);
19078         }
19079     },
19080
19081     // private
19082     onViewClick : function(doFocus)
19083     {
19084         var index = this.view.getSelectedIndexes()[0];
19085         var r = this.store.getAt(index);
19086         if(r){
19087             this.onSelect(r, index);
19088         }
19089         if(doFocus !== false && !this.blockFocus){
19090             this.el.focus();
19091         }
19092     },
19093
19094     // private
19095     restrictHeight : function(){
19096         this.innerList.dom.style.height = '';
19097         var inner = this.innerList.dom;
19098         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
19099         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
19100         this.list.beginUpdate();
19101         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
19102         this.list.alignTo(this.el, this.listAlign);
19103         this.list.endUpdate();
19104     },
19105
19106     // private
19107     onEmptyResults : function(){
19108         this.collapse();
19109     },
19110
19111     /**
19112      * Returns true if the dropdown list is expanded, else false.
19113      */
19114     isExpanded : function(){
19115         return this.list.isVisible();
19116     },
19117
19118     /**
19119      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
19120      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19121      * @param {String} value The data value of the item to select
19122      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19123      * selected item if it is not currently in view (defaults to true)
19124      * @return {Boolean} True if the value matched an item in the list, else false
19125      */
19126     selectByValue : function(v, scrollIntoView){
19127         if(v !== undefined && v !== null){
19128             var r = this.findRecord(this.valueField || this.displayField, v);
19129             if(r){
19130                 this.select(this.store.indexOf(r), scrollIntoView);
19131                 return true;
19132             }
19133         }
19134         return false;
19135     },
19136
19137     /**
19138      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
19139      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
19140      * @param {Number} index The zero-based index of the list item to select
19141      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
19142      * selected item if it is not currently in view (defaults to true)
19143      */
19144     select : function(index, scrollIntoView){
19145         this.selectedIndex = index;
19146         this.view.select(index);
19147         if(scrollIntoView !== false){
19148             var el = this.view.getNode(index);
19149             if(el){
19150                 this.innerList.scrollChildIntoView(el, false);
19151             }
19152         }
19153     },
19154
19155     // private
19156     selectNext : function(){
19157         var ct = this.store.getCount();
19158         if(ct > 0){
19159             if(this.selectedIndex == -1){
19160                 this.select(0);
19161             }else if(this.selectedIndex < ct-1){
19162                 this.select(this.selectedIndex+1);
19163             }
19164         }
19165     },
19166
19167     // private
19168     selectPrev : function(){
19169         var ct = this.store.getCount();
19170         if(ct > 0){
19171             if(this.selectedIndex == -1){
19172                 this.select(0);
19173             }else if(this.selectedIndex != 0){
19174                 this.select(this.selectedIndex-1);
19175             }
19176         }
19177     },
19178
19179     // private
19180     onKeyUp : function(e){
19181         if(this.editable !== false && !e.isSpecialKey()){
19182             this.lastKey = e.getKey();
19183             this.dqTask.delay(this.queryDelay);
19184         }
19185     },
19186
19187     // private
19188     validateBlur : function(){
19189         return !this.list || !this.list.isVisible();   
19190     },
19191
19192     // private
19193     initQuery : function(){
19194         this.doQuery(this.getRawValue());
19195     },
19196
19197     // private
19198     doForce : function(){
19199         if(this.el.dom.value.length > 0){
19200             this.el.dom.value =
19201                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
19202              
19203         }
19204     },
19205
19206     /**
19207      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
19208      * query allowing the query action to be canceled if needed.
19209      * @param {String} query The SQL query to execute
19210      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
19211      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
19212      * saved in the current store (defaults to false)
19213      */
19214     doQuery : function(q, forceAll){
19215         if(q === undefined || q === null){
19216             q = '';
19217         }
19218         var qe = {
19219             query: q,
19220             forceAll: forceAll,
19221             combo: this,
19222             cancel:false
19223         };
19224         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
19225             return false;
19226         }
19227         q = qe.query;
19228         forceAll = qe.forceAll;
19229         if(forceAll === true || (q.length >= this.minChars)){
19230             if(this.lastQuery != q || this.alwaysQuery){
19231                 this.lastQuery = q;
19232                 if(this.mode == 'local'){
19233                     this.selectedIndex = -1;
19234                     if(forceAll){
19235                         this.store.clearFilter();
19236                     }else{
19237                         this.store.filter(this.displayField, q);
19238                     }
19239                     this.onLoad();
19240                 }else{
19241                     this.store.baseParams[this.queryParam] = q;
19242                     this.store.load({
19243                         params: this.getParams(q)
19244                     });
19245                     this.expand();
19246                 }
19247             }else{
19248                 this.selectedIndex = -1;
19249                 this.onLoad();   
19250             }
19251         }
19252     },
19253
19254     // private
19255     getParams : function(q){
19256         var p = {};
19257         //p[this.queryParam] = q;
19258         if(this.pageSize){
19259             p.start = 0;
19260             p.limit = this.pageSize;
19261         }
19262         return p;
19263     },
19264
19265     /**
19266      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
19267      */
19268     collapse : function(){
19269         if(!this.isExpanded()){
19270             return;
19271         }
19272         this.list.hide();
19273         Roo.get(document).un('mousedown', this.collapseIf, this);
19274         Roo.get(document).un('mousewheel', this.collapseIf, this);
19275         if (!this.editable) {
19276             Roo.get(document).un('keydown', this.listKeyPress, this);
19277         }
19278         this.fireEvent('collapse', this);
19279     },
19280
19281     // private
19282     collapseIf : function(e){
19283         if(!e.within(this.wrap) && !e.within(this.list)){
19284             this.collapse();
19285         }
19286     },
19287
19288     /**
19289      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
19290      */
19291     expand : function(){
19292         if(this.isExpanded() || !this.hasFocus){
19293             return;
19294         }
19295         this.list.alignTo(this.el, this.listAlign);
19296         this.list.show();
19297         Roo.get(document).on('mousedown', this.collapseIf, this);
19298         Roo.get(document).on('mousewheel', this.collapseIf, this);
19299         if (!this.editable) {
19300             Roo.get(document).on('keydown', this.listKeyPress, this);
19301         }
19302         
19303         this.fireEvent('expand', this);
19304     },
19305
19306     // private
19307     // Implements the default empty TriggerField.onTriggerClick function
19308     onTriggerClick : function(){
19309         if(this.disabled){
19310             return;
19311         }
19312         if(this.isExpanded()){
19313             this.collapse();
19314             if (!this.blockFocus) {
19315                 this.el.focus();
19316             }
19317             
19318         }else {
19319             this.hasFocus = true;
19320             if(this.triggerAction == 'all') {
19321                 this.doQuery(this.allQuery, true);
19322             } else {
19323                 this.doQuery(this.getRawValue());
19324             }
19325             if (!this.blockFocus) {
19326                 this.el.focus();
19327             }
19328         }
19329     },
19330     listKeyPress : function(e)
19331     {
19332         //Roo.log('listkeypress');
19333         // scroll to first matching element based on key pres..
19334         if (e.isSpecialKey()) {
19335             return false;
19336         }
19337         var k = String.fromCharCode(e.getKey()).toUpperCase();
19338         //Roo.log(k);
19339         var match  = false;
19340         var csel = this.view.getSelectedNodes();
19341         var cselitem = false;
19342         if (csel.length) {
19343             var ix = this.view.indexOf(csel[0]);
19344             cselitem  = this.store.getAt(ix);
19345             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19346                 cselitem = false;
19347             }
19348             
19349         }
19350         
19351         this.store.each(function(v) { 
19352             if (cselitem) {
19353                 // start at existing selection.
19354                 if (cselitem.id == v.id) {
19355                     cselitem = false;
19356                 }
19357                 return;
19358             }
19359                 
19360             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19361                 match = this.store.indexOf(v);
19362                 return false;
19363             }
19364         }, this);
19365         
19366         if (match === false) {
19367             return true; // no more action?
19368         }
19369         // scroll to?
19370         this.view.select(match);
19371         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19372         sn.scrollIntoView(sn.dom.parentNode, false);
19373     } 
19374
19375     /** 
19376     * @cfg {Boolean} grow 
19377     * @hide 
19378     */
19379     /** 
19380     * @cfg {Number} growMin 
19381     * @hide 
19382     */
19383     /** 
19384     * @cfg {Number} growMax 
19385     * @hide 
19386     */
19387     /**
19388      * @hide
19389      * @method autoSize
19390      */
19391 });/*
19392  * Copyright(c) 2010-2012, Roo J Solutions Limited
19393  *
19394  * Licence LGPL
19395  *
19396  */
19397
19398 /**
19399  * @class Roo.form.ComboBoxArray
19400  * @extends Roo.form.TextField
19401  * A facebook style adder... for lists of email / people / countries  etc...
19402  * pick multiple items from a combo box, and shows each one.
19403  *
19404  *  Fred [x]  Brian [x]  [Pick another |v]
19405  *
19406  *
19407  *  For this to work: it needs various extra information
19408  *    - normal combo problay has
19409  *      name, hiddenName
19410  *    + displayField, valueField
19411  *
19412  *    For our purpose...
19413  *
19414  *
19415  *   If we change from 'extends' to wrapping...
19416  *   
19417  *  
19418  *
19419  
19420  
19421  * @constructor
19422  * Create a new ComboBoxArray.
19423  * @param {Object} config Configuration options
19424  */
19425  
19426
19427 Roo.form.ComboBoxArray = function(config)
19428 {
19429     this.addEvents({
19430         /**
19431          * @event beforeremove
19432          * Fires before remove the value from the list
19433              * @param {Roo.form.ComboBoxArray} _self This combo box array
19434              * @param {Roo.form.ComboBoxArray.Item} item removed item
19435              */
19436         'beforeremove' : true,
19437         /**
19438          * @event remove
19439          * Fires when remove the value from the list
19440              * @param {Roo.form.ComboBoxArray} _self This combo box array
19441              * @param {Roo.form.ComboBoxArray.Item} item removed item
19442              */
19443         'remove' : true
19444         
19445         
19446     });
19447     
19448     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
19449     
19450     this.items = new Roo.util.MixedCollection(false);
19451     
19452     // construct the child combo...
19453     
19454     
19455     
19456     
19457    
19458     
19459 }
19460
19461  
19462 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
19463
19464     /**
19465      * @cfg {Roo.form.ComboBox} combo [required] The combo box that is wrapped
19466      */
19467     
19468     lastData : false,
19469     
19470     // behavies liek a hiddne field
19471     inputType:      'hidden',
19472     /**
19473      * @cfg {Number} width The width of the box that displays the selected element
19474      */ 
19475     width:          300,
19476
19477     
19478     
19479     /**
19480      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
19481      */
19482     name : false,
19483     /**
19484      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
19485      */
19486     hiddenName : false,
19487       /**
19488      * @cfg {String} seperator    The value seperator normally ',' 
19489      */
19490     seperator : ',',
19491     
19492     // private the array of items that are displayed..
19493     items  : false,
19494     // private - the hidden field el.
19495     hiddenEl : false,
19496     // private - the filed el..
19497     el : false,
19498     
19499     //validateValue : function() { return true; }, // all values are ok!
19500     //onAddClick: function() { },
19501     
19502     onRender : function(ct, position) 
19503     {
19504         
19505         // create the standard hidden element
19506         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
19507         
19508         
19509         // give fake names to child combo;
19510         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
19511         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
19512         
19513         this.combo = Roo.factory(this.combo, Roo.form);
19514         this.combo.onRender(ct, position);
19515         if (typeof(this.combo.width) != 'undefined') {
19516             this.combo.onResize(this.combo.width,0);
19517         }
19518         
19519         this.combo.initEvents();
19520         
19521         // assigned so form know we need to do this..
19522         this.store          = this.combo.store;
19523         this.valueField     = this.combo.valueField;
19524         this.displayField   = this.combo.displayField ;
19525         
19526         
19527         this.combo.wrap.addClass('x-cbarray-grp');
19528         
19529         var cbwrap = this.combo.wrap.createChild(
19530             {tag: 'div', cls: 'x-cbarray-cb'},
19531             this.combo.el.dom
19532         );
19533         
19534              
19535         this.hiddenEl = this.combo.wrap.createChild({
19536             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
19537         });
19538         this.el = this.combo.wrap.createChild({
19539             tag: 'input',  type:'hidden' , name: this.name, value : ''
19540         });
19541          //   this.el.dom.removeAttribute("name");
19542         
19543         
19544         this.outerWrap = this.combo.wrap;
19545         this.wrap = cbwrap;
19546         
19547         this.outerWrap.setWidth(this.width);
19548         this.outerWrap.dom.removeChild(this.el.dom);
19549         
19550         this.wrap.dom.appendChild(this.el.dom);
19551         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
19552         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
19553         
19554         this.combo.trigger.setStyle('position','relative');
19555         this.combo.trigger.setStyle('left', '0px');
19556         this.combo.trigger.setStyle('top', '2px');
19557         
19558         this.combo.el.setStyle('vertical-align', 'text-bottom');
19559         
19560         //this.trigger.setStyle('vertical-align', 'top');
19561         
19562         // this should use the code from combo really... on('add' ....)
19563         if (this.adder) {
19564             
19565         
19566             this.adder = this.outerWrap.createChild(
19567                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
19568             var _t = this;
19569             this.adder.on('click', function(e) {
19570                 _t.fireEvent('adderclick', this, e);
19571             }, _t);
19572         }
19573         //var _t = this;
19574         //this.adder.on('click', this.onAddClick, _t);
19575         
19576         
19577         this.combo.on('select', function(cb, rec, ix) {
19578             this.addItem(rec.data);
19579             
19580             cb.setValue('');
19581             cb.el.dom.value = '';
19582             //cb.lastData = rec.data;
19583             // add to list
19584             
19585         }, this);
19586         
19587         
19588     },
19589     
19590     
19591     getName: function()
19592     {
19593         // returns hidden if it's set..
19594         if (!this.rendered) {return ''};
19595         return  this.hiddenName ? this.hiddenName : this.name;
19596         
19597     },
19598     
19599     
19600     onResize: function(w, h){
19601         
19602         return;
19603         // not sure if this is needed..
19604         //this.combo.onResize(w,h);
19605         
19606         if(typeof w != 'number'){
19607             // we do not handle it!?!?
19608             return;
19609         }
19610         var tw = this.combo.trigger.getWidth();
19611         tw += this.addicon ? this.addicon.getWidth() : 0;
19612         tw += this.editicon ? this.editicon.getWidth() : 0;
19613         var x = w - tw;
19614         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
19615             
19616         this.combo.trigger.setStyle('left', '0px');
19617         
19618         if(this.list && this.listWidth === undefined){
19619             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
19620             this.list.setWidth(lw);
19621             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
19622         }
19623         
19624     
19625         
19626     },
19627     
19628     addItem: function(rec)
19629     {
19630         var valueField = this.combo.valueField;
19631         var displayField = this.combo.displayField;
19632         
19633         if (this.items.indexOfKey(rec[valueField]) > -1) {
19634             //console.log("GOT " + rec.data.id);
19635             return;
19636         }
19637         
19638         var x = new Roo.form.ComboBoxArray.Item({
19639             //id : rec[this.idField],
19640             data : rec,
19641             displayField : displayField ,
19642             tipField : displayField ,
19643             cb : this
19644         });
19645         // use the 
19646         this.items.add(rec[valueField],x);
19647         // add it before the element..
19648         this.updateHiddenEl();
19649         x.render(this.outerWrap, this.wrap.dom);
19650         // add the image handler..
19651     },
19652     
19653     updateHiddenEl : function()
19654     {
19655         this.validate();
19656         if (!this.hiddenEl) {
19657             return;
19658         }
19659         var ar = [];
19660         var idField = this.combo.valueField;
19661         
19662         this.items.each(function(f) {
19663             ar.push(f.data[idField]);
19664         });
19665         this.hiddenEl.dom.value = ar.join(this.seperator);
19666         this.validate();
19667     },
19668     
19669     reset : function()
19670     {
19671         this.items.clear();
19672         
19673         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
19674            el.remove();
19675         });
19676         
19677         this.el.dom.value = '';
19678         if (this.hiddenEl) {
19679             this.hiddenEl.dom.value = '';
19680         }
19681         
19682     },
19683     getValue: function()
19684     {
19685         return this.hiddenEl ? this.hiddenEl.dom.value : '';
19686     },
19687     setValue: function(v) // not a valid action - must use addItems..
19688     {
19689         
19690         this.reset();
19691          
19692         if (this.store.isLocal && (typeof(v) == 'string')) {
19693             // then we can use the store to find the values..
19694             // comma seperated at present.. this needs to allow JSON based encoding..
19695             this.hiddenEl.value  = v;
19696             var v_ar = [];
19697             Roo.each(v.split(this.seperator), function(k) {
19698                 Roo.log("CHECK " + this.valueField + ',' + k);
19699                 var li = this.store.query(this.valueField, k);
19700                 if (!li.length) {
19701                     return;
19702                 }
19703                 var add = {};
19704                 add[this.valueField] = k;
19705                 add[this.displayField] = li.item(0).data[this.displayField];
19706                 
19707                 this.addItem(add);
19708             }, this) 
19709              
19710         }
19711         if (typeof(v) == 'object' ) {
19712             // then let's assume it's an array of objects..
19713             Roo.each(v, function(l) {
19714                 var add = l;
19715                 if (typeof(l) == 'string') {
19716                     add = {};
19717                     add[this.valueField] = l;
19718                     add[this.displayField] = l
19719                 }
19720                 this.addItem(add);
19721             }, this);
19722              
19723         }
19724         
19725         
19726     },
19727     setFromData: function(v)
19728     {
19729         // this recieves an object, if setValues is called.
19730         this.reset();
19731         this.el.dom.value = v[this.displayField];
19732         this.hiddenEl.dom.value = v[this.valueField];
19733         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
19734             return;
19735         }
19736         var kv = v[this.valueField];
19737         var dv = v[this.displayField];
19738         kv = typeof(kv) != 'string' ? '' : kv;
19739         dv = typeof(dv) != 'string' ? '' : dv;
19740         
19741         
19742         var keys = kv.split(this.seperator);
19743         var display = dv.split(this.seperator);
19744         for (var i = 0 ; i < keys.length; i++) {
19745             add = {};
19746             add[this.valueField] = keys[i];
19747             add[this.displayField] = display[i];
19748             this.addItem(add);
19749         }
19750       
19751         
19752     },
19753     
19754     /**
19755      * Validates the combox array value
19756      * @return {Boolean} True if the value is valid, else false
19757      */
19758     validate : function(){
19759         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
19760             this.clearInvalid();
19761             return true;
19762         }
19763         return false;
19764     },
19765     
19766     validateValue : function(value){
19767         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
19768         
19769     },
19770     
19771     /*@
19772      * overide
19773      * 
19774      */
19775     isDirty : function() {
19776         if(this.disabled) {
19777             return false;
19778         }
19779         
19780         try {
19781             var d = Roo.decode(String(this.originalValue));
19782         } catch (e) {
19783             return String(this.getValue()) !== String(this.originalValue);
19784         }
19785         
19786         var originalValue = [];
19787         
19788         for (var i = 0; i < d.length; i++){
19789             originalValue.push(d[i][this.valueField]);
19790         }
19791         
19792         return String(this.getValue()) !== String(originalValue.join(this.seperator));
19793         
19794     }
19795     
19796 });
19797
19798
19799
19800 /**
19801  * @class Roo.form.ComboBoxArray.Item
19802  * @extends Roo.BoxComponent
19803  * A selected item in the list
19804  *  Fred [x]  Brian [x]  [Pick another |v]
19805  * 
19806  * @constructor
19807  * Create a new item.
19808  * @param {Object} config Configuration options
19809  */
19810  
19811 Roo.form.ComboBoxArray.Item = function(config) {
19812     config.id = Roo.id();
19813     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
19814 }
19815
19816 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
19817     data : {},
19818     cb: false,
19819     displayField : false,
19820     tipField : false,
19821     
19822     
19823     defaultAutoCreate : {
19824         tag: 'div',
19825         cls: 'x-cbarray-item',
19826         cn : [ 
19827             { tag: 'div' },
19828             {
19829                 tag: 'img',
19830                 width:16,
19831                 height : 16,
19832                 src : Roo.BLANK_IMAGE_URL ,
19833                 align: 'center'
19834             }
19835         ]
19836         
19837     },
19838     
19839  
19840     onRender : function(ct, position)
19841     {
19842         Roo.form.Field.superclass.onRender.call(this, ct, position);
19843         
19844         if(!this.el){
19845             var cfg = this.getAutoCreate();
19846             this.el = ct.createChild(cfg, position);
19847         }
19848         
19849         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
19850         
19851         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
19852             this.cb.renderer(this.data) :
19853             String.format('{0}',this.data[this.displayField]);
19854         
19855             
19856         this.el.child('div').dom.setAttribute('qtip',
19857                         String.format('{0}',this.data[this.tipField])
19858         );
19859         
19860         this.el.child('img').on('click', this.remove, this);
19861         
19862     },
19863    
19864     remove : function()
19865     {
19866         if(this.cb.disabled){
19867             return;
19868         }
19869         
19870         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
19871             this.cb.items.remove(this);
19872             this.el.child('img').un('click', this.remove, this);
19873             this.el.remove();
19874             this.cb.updateHiddenEl();
19875
19876             this.cb.fireEvent('remove', this.cb, this);
19877         }
19878         
19879     }
19880 });/*
19881  * RooJS Library 1.1.1
19882  * Copyright(c) 2008-2011  Alan Knowles
19883  *
19884  * License - LGPL
19885  */
19886  
19887
19888 /**
19889  * @class Roo.form.ComboNested
19890  * @extends Roo.form.ComboBox
19891  * A combobox for that allows selection of nested items in a list,
19892  * eg.
19893  *
19894  *  Book
19895  *    -> red
19896  *    -> green
19897  *  Table
19898  *    -> square
19899  *      ->red
19900  *      ->green
19901  *    -> rectangle
19902  *      ->green
19903  *      
19904  * 
19905  * @constructor
19906  * Create a new ComboNested
19907  * @param {Object} config Configuration options
19908  */
19909 Roo.form.ComboNested = function(config){
19910     Roo.form.ComboCheck.superclass.constructor.call(this, config);
19911     // should verify some data...
19912     // like
19913     // hiddenName = required..
19914     // displayField = required
19915     // valudField == required
19916     var req= [ 'hiddenName', 'displayField', 'valueField' ];
19917     var _t = this;
19918     Roo.each(req, function(e) {
19919         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
19920             throw "Roo.form.ComboNested : missing value for: " + e;
19921         }
19922     });
19923      
19924     
19925 };
19926
19927 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
19928    
19929     /*
19930      * @config {Number} max Number of columns to show
19931      */
19932     
19933     maxColumns : 3,
19934    
19935     list : null, // the outermost div..
19936     innerLists : null, // the
19937     views : null,
19938     stores : null,
19939     // private
19940     loadingChildren : false,
19941     
19942     onRender : function(ct, position)
19943     {
19944         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
19945         
19946         if(this.hiddenName){
19947             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
19948                     'before', true);
19949             this.hiddenField.value =
19950                 this.hiddenValue !== undefined ? this.hiddenValue :
19951                 this.value !== undefined ? this.value : '';
19952
19953             // prevent input submission
19954             this.el.dom.removeAttribute('name');
19955              
19956              
19957         }
19958         
19959         if(Roo.isGecko){
19960             this.el.dom.setAttribute('autocomplete', 'off');
19961         }
19962
19963         var cls = 'x-combo-list';
19964
19965         this.list = new Roo.Layer({
19966             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
19967         });
19968
19969         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
19970         this.list.setWidth(lw);
19971         this.list.swallowEvent('mousewheel');
19972         this.assetHeight = 0;
19973
19974         if(this.title){
19975             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
19976             this.assetHeight += this.header.getHeight();
19977         }
19978         this.innerLists = [];
19979         this.views = [];
19980         this.stores = [];
19981         for (var i =0 ; i < this.maxColumns; i++) {
19982             this.onRenderList( cls, i);
19983         }
19984         
19985         // always needs footer, as we are going to have an 'OK' button.
19986         this.footer = this.list.createChild({cls:cls+'-ft'});
19987         this.pageTb = new Roo.Toolbar(this.footer);  
19988         var _this = this;
19989         this.pageTb.add(  {
19990             
19991             text: 'Done',
19992             handler: function()
19993             {
19994                 _this.collapse();
19995             }
19996         });
19997         
19998         if ( this.allowBlank && !this.disableClear) {
19999             
20000             this.pageTb.add(new Roo.Toolbar.Fill(), {
20001                 cls: 'x-btn-icon x-btn-clear',
20002                 text: '&#160;',
20003                 handler: function()
20004                 {
20005                     _this.collapse();
20006                     _this.clearValue();
20007                     _this.onSelect(false, -1);
20008                 }
20009             });
20010         }
20011         if (this.footer) {
20012             this.assetHeight += this.footer.getHeight();
20013         }
20014         
20015     },
20016     onRenderList : function (  cls, i)
20017     {
20018         
20019         var lw = Math.floor(
20020                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20021         );
20022         
20023         this.list.setWidth(lw); // default to '1'
20024
20025         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
20026         //il.on('mouseover', this.onViewOver, this, { list:  i });
20027         //il.on('mousemove', this.onViewMove, this, { list:  i });
20028         il.setWidth(lw);
20029         il.setStyle({ 'overflow-x' : 'hidden'});
20030
20031         if(!this.tpl){
20032             this.tpl = new Roo.Template({
20033                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
20034                 isEmpty: function (value, allValues) {
20035                     //Roo.log(value);
20036                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
20037                     return dl ? 'has-children' : 'no-children'
20038                 }
20039             });
20040         }
20041         
20042         var store  = this.store;
20043         if (i > 0) {
20044             store  = new Roo.data.SimpleStore({
20045                 //fields : this.store.reader.meta.fields,
20046                 reader : this.store.reader,
20047                 data : [ ]
20048             });
20049         }
20050         this.stores[i]  = store;
20051                   
20052         var view = this.views[i] = new Roo.View(
20053             il,
20054             this.tpl,
20055             {
20056                 singleSelect:true,
20057                 store: store,
20058                 selectedClass: this.selectedClass
20059             }
20060         );
20061         view.getEl().setWidth(lw);
20062         view.getEl().setStyle({
20063             position: i < 1 ? 'relative' : 'absolute',
20064             top: 0,
20065             left: (i * lw ) + 'px',
20066             display : i > 0 ? 'none' : 'block'
20067         });
20068         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
20069         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
20070         //view.on('click', this.onViewClick, this, { list : i });
20071
20072         store.on('beforeload', this.onBeforeLoad, this);
20073         store.on('load',  this.onLoad, this, { list  : i});
20074         store.on('loadexception', this.onLoadException, this);
20075
20076         // hide the other vies..
20077         
20078         
20079         
20080     },
20081       
20082     restrictHeight : function()
20083     {
20084         var mh = 0;
20085         Roo.each(this.innerLists, function(il,i) {
20086             var el = this.views[i].getEl();
20087             el.dom.style.height = '';
20088             var inner = el.dom;
20089             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
20090             // only adjust heights on other ones..
20091             mh = Math.max(h, mh);
20092             if (i < 1) {
20093                 
20094                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20095                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
20096                
20097             }
20098             
20099             
20100         }, this);
20101         
20102         this.list.beginUpdate();
20103         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
20104         this.list.alignTo(this.el, this.listAlign);
20105         this.list.endUpdate();
20106         
20107     },
20108      
20109     
20110     // -- store handlers..
20111     // private
20112     onBeforeLoad : function()
20113     {
20114         if(!this.hasFocus){
20115             return;
20116         }
20117         this.innerLists[0].update(this.loadingText ?
20118                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
20119         this.restrictHeight();
20120         this.selectedIndex = -1;
20121     },
20122     // private
20123     onLoad : function(a,b,c,d)
20124     {
20125         if (!this.loadingChildren) {
20126             // then we are loading the top level. - hide the children
20127             for (var i = 1;i < this.views.length; i++) {
20128                 this.views[i].getEl().setStyle({ display : 'none' });
20129             }
20130             var lw = Math.floor(
20131                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
20132             );
20133         
20134              this.list.setWidth(lw); // default to '1'
20135
20136             
20137         }
20138         if(!this.hasFocus){
20139             return;
20140         }
20141         
20142         if(this.store.getCount() > 0) {
20143             this.expand();
20144             this.restrictHeight();   
20145         } else {
20146             this.onEmptyResults();
20147         }
20148         
20149         if (!this.loadingChildren) {
20150             this.selectActive();
20151         }
20152         /*
20153         this.stores[1].loadData([]);
20154         this.stores[2].loadData([]);
20155         this.views
20156         */    
20157     
20158         //this.el.focus();
20159     },
20160     
20161     
20162     // private
20163     onLoadException : function()
20164     {
20165         this.collapse();
20166         Roo.log(this.store.reader.jsonData);
20167         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
20168             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
20169         }
20170         
20171         
20172     },
20173     // no cleaning of leading spaces on blur here.
20174     cleanLeadingSpace : function(e) { },
20175     
20176
20177     onSelectChange : function (view, sels, opts )
20178     {
20179         var ix = view.getSelectedIndexes();
20180          
20181         if (opts.list > this.maxColumns - 2) {
20182             if (view.store.getCount()<  1) {
20183                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
20184
20185             } else  {
20186                 if (ix.length) {
20187                     // used to clear ?? but if we are loading unselected 
20188                     this.setFromData(view.store.getAt(ix[0]).data);
20189                 }
20190                 
20191             }
20192             
20193             return;
20194         }
20195         
20196         if (!ix.length) {
20197             // this get's fired when trigger opens..
20198            // this.setFromData({});
20199             var str = this.stores[opts.list+1];
20200             str.data.clear(); // removeall wihtout the fire events..
20201             return;
20202         }
20203         
20204         var rec = view.store.getAt(ix[0]);
20205          
20206         this.setFromData(rec.data);
20207         this.fireEvent('select', this, rec, ix[0]);
20208         
20209         var lw = Math.floor(
20210              (
20211                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
20212              ) / this.maxColumns
20213         );
20214         this.loadingChildren = true;
20215         this.stores[opts.list+1].loadDataFromChildren( rec );
20216         this.loadingChildren = false;
20217         var dl = this.stores[opts.list+1]. getTotalCount();
20218         
20219         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
20220         
20221         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
20222         for (var i = opts.list+2; i < this.views.length;i++) {
20223             this.views[i].getEl().setStyle({ display : 'none' });
20224         }
20225         
20226         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
20227         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
20228         
20229         if (this.isLoading) {
20230            // this.selectActive(opts.list);
20231         }
20232          
20233     },
20234     
20235     
20236     
20237     
20238     onDoubleClick : function()
20239     {
20240         this.collapse(); //??
20241     },
20242     
20243      
20244     
20245     
20246     
20247     // private
20248     recordToStack : function(store, prop, value, stack)
20249     {
20250         var cstore = new Roo.data.SimpleStore({
20251             //fields : this.store.reader.meta.fields, // we need array reader.. for
20252             reader : this.store.reader,
20253             data : [ ]
20254         });
20255         var _this = this;
20256         var record  = false;
20257         var srec = false;
20258         if(store.getCount() < 1){
20259             return false;
20260         }
20261         store.each(function(r){
20262             if(r.data[prop] == value){
20263                 record = r;
20264             srec = r;
20265                 return false;
20266             }
20267             if (r.data.cn && r.data.cn.length) {
20268                 cstore.loadDataFromChildren( r);
20269                 var cret = _this.recordToStack(cstore, prop, value, stack);
20270                 if (cret !== false) {
20271                     record = cret;
20272                     srec = r;
20273                     return false;
20274                 }
20275             }
20276              
20277             return true;
20278         });
20279         if (record == false) {
20280             return false
20281         }
20282         stack.unshift(srec);
20283         return record;
20284     },
20285     
20286     /*
20287      * find the stack of stores that match our value.
20288      *
20289      * 
20290      */
20291     
20292     selectActive : function ()
20293     {
20294         // if store is not loaded, then we will need to wait for that to happen first.
20295         var stack = [];
20296         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
20297         for (var i = 0; i < stack.length; i++ ) {
20298             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
20299         }
20300         
20301     }
20302         
20303          
20304     
20305     
20306     
20307     
20308 });/*
20309  * Based on:
20310  * Ext JS Library 1.1.1
20311  * Copyright(c) 2006-2007, Ext JS, LLC.
20312  *
20313  * Originally Released Under LGPL - original licence link has changed is not relivant.
20314  *
20315  * Fork - LGPL
20316  * <script type="text/javascript">
20317  */
20318 /**
20319  * @class Roo.form.Checkbox
20320  * @extends Roo.form.Field
20321  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
20322  * @constructor
20323  * Creates a new Checkbox
20324  * @param {Object} config Configuration options
20325  */
20326 Roo.form.Checkbox = function(config){
20327     Roo.form.Checkbox.superclass.constructor.call(this, config);
20328     this.addEvents({
20329         /**
20330          * @event check
20331          * Fires when the checkbox is checked or unchecked.
20332              * @param {Roo.form.Checkbox} this This checkbox
20333              * @param {Boolean} checked The new checked value
20334              */
20335         check : true
20336     });
20337 };
20338
20339 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
20340     /**
20341      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20342      */
20343     focusClass : undefined,
20344     /**
20345      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
20346      */
20347     fieldClass: "x-form-field",
20348     /**
20349      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
20350      */
20351     checked: false,
20352     /**
20353      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20354      * {tag: "input", type: "checkbox", autocomplete: "off"})
20355      */
20356     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
20357     /**
20358      * @cfg {String} boxLabel The text that appears beside the checkbox
20359      */
20360     boxLabel : "",
20361     /**
20362      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
20363      */  
20364     inputValue : '1',
20365     /**
20366      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20367      */
20368      valueOff: '0', // value when not checked..
20369
20370     actionMode : 'viewEl', 
20371     //
20372     // private
20373     itemCls : 'x-menu-check-item x-form-item',
20374     groupClass : 'x-menu-group-item',
20375     inputType : 'hidden',
20376     
20377     
20378     inSetChecked: false, // check that we are not calling self...
20379     
20380     inputElement: false, // real input element?
20381     basedOn: false, // ????
20382     
20383     isFormField: true, // not sure where this is needed!!!!
20384
20385     onResize : function(){
20386         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
20387         if(!this.boxLabel){
20388             this.el.alignTo(this.wrap, 'c-c');
20389         }
20390     },
20391
20392     initEvents : function(){
20393         Roo.form.Checkbox.superclass.initEvents.call(this);
20394         this.el.on("click", this.onClick,  this);
20395         this.el.on("change", this.onClick,  this);
20396     },
20397
20398
20399     getResizeEl : function(){
20400         return this.wrap;
20401     },
20402
20403     getPositionEl : function(){
20404         return this.wrap;
20405     },
20406
20407     // private
20408     onRender : function(ct, position){
20409         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20410         /*
20411         if(this.inputValue !== undefined){
20412             this.el.dom.value = this.inputValue;
20413         }
20414         */
20415         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20416         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20417         var viewEl = this.wrap.createChild({ 
20418             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20419         this.viewEl = viewEl;   
20420         this.wrap.on('click', this.onClick,  this); 
20421         
20422         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20423         this.el.on('propertychange', this.setFromHidden,  this);  //ie
20424         
20425         
20426         
20427         if(this.boxLabel){
20428             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20429         //    viewEl.on('click', this.onClick,  this); 
20430         }
20431         //if(this.checked){
20432             this.setChecked(this.checked);
20433         //}else{
20434             //this.checked = this.el.dom;
20435         //}
20436
20437     },
20438
20439     // private
20440     initValue : Roo.emptyFn,
20441
20442     /**
20443      * Returns the checked state of the checkbox.
20444      * @return {Boolean} True if checked, else false
20445      */
20446     getValue : function(){
20447         if(this.el){
20448             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
20449         }
20450         return this.valueOff;
20451         
20452     },
20453
20454         // private
20455     onClick : function(){ 
20456         if (this.disabled) {
20457             return;
20458         }
20459         this.setChecked(!this.checked);
20460
20461         //if(this.el.dom.checked != this.checked){
20462         //    this.setValue(this.el.dom.checked);
20463        // }
20464     },
20465
20466     /**
20467      * Sets the checked state of the checkbox.
20468      * On is always based on a string comparison between inputValue and the param.
20469      * @param {Boolean/String} value - the value to set 
20470      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
20471      */
20472     setValue : function(v,suppressEvent){
20473         
20474         
20475         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
20476         //if(this.el && this.el.dom){
20477         //    this.el.dom.checked = this.checked;
20478         //    this.el.dom.defaultChecked = this.checked;
20479         //}
20480         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
20481         //this.fireEvent("check", this, this.checked);
20482     },
20483     // private..
20484     setChecked : function(state,suppressEvent)
20485     {
20486         if (this.inSetChecked) {
20487             this.checked = state;
20488             return;
20489         }
20490         
20491     
20492         if(this.wrap){
20493             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
20494         }
20495         this.checked = state;
20496         if(suppressEvent !== true){
20497             this.fireEvent('check', this, state);
20498         }
20499         this.inSetChecked = true;
20500         this.el.dom.value = state ? this.inputValue : this.valueOff;
20501         this.inSetChecked = false;
20502         
20503     },
20504     // handle setting of hidden value by some other method!!?!?
20505     setFromHidden: function()
20506     {
20507         if(!this.el){
20508             return;
20509         }
20510         //console.log("SET FROM HIDDEN");
20511         //alert('setFrom hidden');
20512         this.setValue(this.el.dom.value);
20513     },
20514     
20515     onDestroy : function()
20516     {
20517         if(this.viewEl){
20518             Roo.get(this.viewEl).remove();
20519         }
20520          
20521         Roo.form.Checkbox.superclass.onDestroy.call(this);
20522     },
20523     
20524     setBoxLabel : function(str)
20525     {
20526         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
20527     }
20528
20529 });/*
20530  * Based on:
20531  * Ext JS Library 1.1.1
20532  * Copyright(c) 2006-2007, Ext JS, LLC.
20533  *
20534  * Originally Released Under LGPL - original licence link has changed is not relivant.
20535  *
20536  * Fork - LGPL
20537  * <script type="text/javascript">
20538  */
20539  
20540 /**
20541  * @class Roo.form.Radio
20542  * @extends Roo.form.Checkbox
20543  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
20544  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
20545  * @constructor
20546  * Creates a new Radio
20547  * @param {Object} config Configuration options
20548  */
20549 Roo.form.Radio = function(){
20550     Roo.form.Radio.superclass.constructor.apply(this, arguments);
20551 };
20552 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
20553     inputType: 'radio',
20554
20555     /**
20556      * If this radio is part of a group, it will return the selected value
20557      * @return {String}
20558      */
20559     getGroupValue : function(){
20560         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
20561     },
20562     
20563     
20564     onRender : function(ct, position){
20565         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
20566         
20567         if(this.inputValue !== undefined){
20568             this.el.dom.value = this.inputValue;
20569         }
20570          
20571         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
20572         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
20573         //var viewEl = this.wrap.createChild({ 
20574         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
20575         //this.viewEl = viewEl;   
20576         //this.wrap.on('click', this.onClick,  this); 
20577         
20578         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
20579         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
20580         
20581         
20582         
20583         if(this.boxLabel){
20584             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
20585         //    viewEl.on('click', this.onClick,  this); 
20586         }
20587          if(this.checked){
20588             this.el.dom.checked =   'checked' ;
20589         }
20590          
20591     } 
20592     
20593     
20594 });Roo.rtf = {}; // namespace
20595 Roo.rtf.Hex = function(hex)
20596 {
20597     this.hexstr = hex;
20598 };
20599 Roo.rtf.Paragraph = function(opts)
20600 {
20601     this.content = []; ///??? is that used?
20602 };Roo.rtf.Span = function(opts)
20603 {
20604     this.value = opts.value;
20605 };
20606
20607 Roo.rtf.Group = function(parent)
20608 {
20609     // we dont want to acutally store parent - it will make debug a nightmare..
20610     this.content = [];
20611     this.cn  = [];
20612      
20613        
20614     
20615 };
20616
20617 Roo.rtf.Group.prototype = {
20618     ignorable : false,
20619     content: false,
20620     cn: false,
20621     addContent : function(node) {
20622         // could set styles...
20623         this.content.push(node);
20624     },
20625     addChild : function(cn)
20626     {
20627         this.cn.push(cn);
20628     },
20629     // only for images really...
20630     toDataURL : function()
20631     {
20632         var mimetype = false;
20633         switch(true) {
20634             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
20635                 mimetype = "image/png";
20636                 break;
20637              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
20638                 mimetype = "image/jpeg";
20639                 break;
20640             default :
20641                 return 'about:blank'; // ?? error?
20642         }
20643         
20644         
20645         var hexstring = this.content[this.content.length-1].value;
20646         
20647         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
20648             return String.fromCharCode(parseInt(a, 16));
20649         }).join(""));
20650     }
20651     
20652 };
20653 // this looks like it's normally the {rtf{ .... }}
20654 Roo.rtf.Document = function()
20655 {
20656     // we dont want to acutally store parent - it will make debug a nightmare..
20657     this.rtlch  = [];
20658     this.content = [];
20659     this.cn = [];
20660     
20661 };
20662 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
20663     addChild : function(cn)
20664     {
20665         this.cn.push(cn);
20666         switch(cn.type) {
20667             case 'rtlch': // most content seems to be inside this??
20668             case 'listtext':
20669             case 'shpinst':
20670                 this.rtlch.push(cn);
20671                 return;
20672             default:
20673                 this[cn.type] = cn;
20674         }
20675         
20676     },
20677     
20678     getElementsByType : function(type)
20679     {
20680         var ret =  [];
20681         this._getElementsByType(type, ret, this.cn, 'rtf');
20682         return ret;
20683     },
20684     _getElementsByType : function (type, ret, search_array, path)
20685     {
20686         search_array.forEach(function(n,i) {
20687             if (n.type == type) {
20688                 n.path = path + '/' + n.type + ':' + i;
20689                 ret.push(n);
20690             }
20691             if (n.cn.length > 0) {
20692                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
20693             }
20694         },this);
20695     }
20696     
20697 });
20698  
20699 Roo.rtf.Ctrl = function(opts)
20700 {
20701     this.value = opts.value;
20702     this.param = opts.param;
20703 };
20704 /**
20705  *
20706  *
20707  * based on this https://github.com/iarna/rtf-parser
20708  * it's really only designed to extract pict from pasted RTF 
20709  *
20710  * usage:
20711  *
20712  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
20713  *  
20714  *
20715  */
20716
20717  
20718
20719
20720
20721 Roo.rtf.Parser = function(text) {
20722     //super({objectMode: true})
20723     this.text = '';
20724     this.parserState = this.parseText;
20725     
20726     // these are for interpeter...
20727     this.doc = {};
20728     ///this.parserState = this.parseTop
20729     this.groupStack = [];
20730     this.hexStore = [];
20731     this.doc = false;
20732     
20733     this.groups = []; // where we put the return.
20734     
20735     for (var ii = 0; ii < text.length; ++ii) {
20736         ++this.cpos;
20737         
20738         if (text[ii] === '\n') {
20739             ++this.row;
20740             this.col = 1;
20741         } else {
20742             ++this.col;
20743         }
20744         this.parserState(text[ii]);
20745     }
20746     
20747     
20748     
20749 };
20750 Roo.rtf.Parser.prototype = {
20751     text : '', // string being parsed..
20752     controlWord : '',
20753     controlWordParam :  '',
20754     hexChar : '',
20755     doc : false,
20756     group: false,
20757     groupStack : false,
20758     hexStore : false,
20759     
20760     
20761     cpos : 0, 
20762     row : 1, // reportin?
20763     col : 1, //
20764
20765      
20766     push : function (el)
20767     {
20768         var m = 'cmd'+ el.type;
20769         if (typeof(this[m]) == 'undefined') {
20770             Roo.log('invalid cmd:' + el.type);
20771             return;
20772         }
20773         this[m](el);
20774         //Roo.log(el);
20775     },
20776     flushHexStore : function()
20777     {
20778         if (this.hexStore.length < 1) {
20779             return;
20780         }
20781         var hexstr = this.hexStore.map(
20782             function(cmd) {
20783                 return cmd.value;
20784         }).join('');
20785         
20786         this.group.addContent( new Roo.rtf.Hex( hexstr ));
20787               
20788             
20789         this.hexStore.splice(0)
20790         
20791     },
20792     
20793     cmdgroupstart : function()
20794     {
20795         this.flushHexStore();
20796         if (this.group) {
20797             this.groupStack.push(this.group);
20798         }
20799          // parent..
20800         if (this.doc === false) {
20801             this.group = this.doc = new Roo.rtf.Document();
20802             return;
20803             
20804         }
20805         this.group = new Roo.rtf.Group(this.group);
20806     },
20807     cmdignorable : function()
20808     {
20809         this.flushHexStore();
20810         this.group.ignorable = true;
20811     },
20812     cmdendparagraph : function()
20813     {
20814         this.flushHexStore();
20815         this.group.addContent(new Roo.rtf.Paragraph());
20816     },
20817     cmdgroupend : function ()
20818     {
20819         this.flushHexStore();
20820         var endingGroup = this.group;
20821         
20822         
20823         this.group = this.groupStack.pop();
20824         if (this.group) {
20825             this.group.addChild(endingGroup);
20826         }
20827         
20828         
20829         
20830         var doc = this.group || this.doc;
20831         //if (endingGroup instanceof FontTable) {
20832         //  doc.fonts = endingGroup.table
20833         //} else if (endingGroup instanceof ColorTable) {
20834         //  doc.colors = endingGroup.table
20835         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
20836         if (endingGroup.ignorable === false) {
20837             //code
20838             this.groups.push(endingGroup);
20839            // Roo.log( endingGroup );
20840         }
20841             //Roo.each(endingGroup.content, function(item)) {
20842             //    doc.addContent(item);
20843             //}
20844             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
20845         //}
20846     },
20847     cmdtext : function (cmd)
20848     {
20849         this.flushHexStore();
20850         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
20851             //this.group = this.doc
20852         }
20853         this.group.addContent(new Roo.rtf.Span(cmd));
20854     },
20855     cmdcontrolword : function (cmd)
20856     {
20857         this.flushHexStore();
20858         if (!this.group.type) {
20859             this.group.type = cmd.value;
20860             return;
20861         }
20862         this.group.addContent(new Roo.rtf.Ctrl(cmd));
20863         // we actually don't care about ctrl words...
20864         return ;
20865         /*
20866         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
20867         if (this[method]) {
20868             this[method](cmd.param)
20869         } else {
20870             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
20871         }
20872         */
20873     },
20874     cmdhexchar : function(cmd) {
20875         this.hexStore.push(cmd);
20876     },
20877     cmderror : function(cmd) {
20878         throw new Exception (cmd.value);
20879     },
20880     
20881     /*
20882       _flush (done) {
20883         if (this.text !== '\u0000') this.emitText()
20884         done()
20885       }
20886       */
20887       
20888       
20889     parseText : function(c)
20890     {
20891         if (c === '\\') {
20892             this.parserState = this.parseEscapes;
20893         } else if (c === '{') {
20894             this.emitStartGroup();
20895         } else if (c === '}') {
20896             this.emitEndGroup();
20897         } else if (c === '\x0A' || c === '\x0D') {
20898             // cr/lf are noise chars
20899         } else {
20900             this.text += c;
20901         }
20902     },
20903     
20904     parseEscapes: function (c)
20905     {
20906         if (c === '\\' || c === '{' || c === '}') {
20907             this.text += c;
20908             this.parserState = this.parseText;
20909         } else {
20910             this.parserState = this.parseControlSymbol;
20911             this.parseControlSymbol(c);
20912         }
20913     },
20914     parseControlSymbol: function(c)
20915     {
20916         if (c === '~') {
20917             this.text += '\u00a0'; // nbsp
20918             this.parserState = this.parseText
20919         } else if (c === '-') {
20920              this.text += '\u00ad'; // soft hyphen
20921         } else if (c === '_') {
20922             this.text += '\u2011'; // non-breaking hyphen
20923         } else if (c === '*') {
20924             this.emitIgnorable();
20925             this.parserState = this.parseText;
20926         } else if (c === "'") {
20927             this.parserState = this.parseHexChar;
20928         } else if (c === '|') { // formula cacter
20929             this.emitFormula();
20930             this.parserState = this.parseText;
20931         } else if (c === ':') { // subentry in an index entry
20932             this.emitIndexSubEntry();
20933             this.parserState = this.parseText;
20934         } else if (c === '\x0a') {
20935             this.emitEndParagraph();
20936             this.parserState = this.parseText;
20937         } else if (c === '\x0d') {
20938             this.emitEndParagraph();
20939             this.parserState = this.parseText;
20940         } else {
20941             this.parserState = this.parseControlWord;
20942             this.parseControlWord(c);
20943         }
20944     },
20945     parseHexChar: function (c)
20946     {
20947         if (/^[A-Fa-f0-9]$/.test(c)) {
20948             this.hexChar += c;
20949             if (this.hexChar.length >= 2) {
20950               this.emitHexChar();
20951               this.parserState = this.parseText;
20952             }
20953             return;
20954         }
20955         this.emitError("Invalid character \"" + c + "\" in hex literal.");
20956         this.parserState = this.parseText;
20957         
20958     },
20959     parseControlWord : function(c)
20960     {
20961         if (c === ' ') {
20962             this.emitControlWord();
20963             this.parserState = this.parseText;
20964         } else if (/^[-\d]$/.test(c)) {
20965             this.parserState = this.parseControlWordParam;
20966             this.controlWordParam += c;
20967         } else if (/^[A-Za-z]$/.test(c)) {
20968           this.controlWord += c;
20969         } else {
20970           this.emitControlWord();
20971           this.parserState = this.parseText;
20972           this.parseText(c);
20973         }
20974     },
20975     parseControlWordParam : function (c) {
20976         if (/^\d$/.test(c)) {
20977           this.controlWordParam += c;
20978         } else if (c === ' ') {
20979           this.emitControlWord();
20980           this.parserState = this.parseText;
20981         } else {
20982           this.emitControlWord();
20983           this.parserState = this.parseText;
20984           this.parseText(c);
20985         }
20986     },
20987     
20988     
20989     
20990     
20991     emitText : function () {
20992         if (this.text === '') {
20993             return;
20994         }
20995         this.push({
20996             type: 'text',
20997             value: this.text,
20998             pos: this.cpos,
20999             row: this.row,
21000             col: this.col
21001         });
21002         this.text = ''
21003     },
21004     emitControlWord : function ()
21005     {
21006         this.emitText();
21007         if (this.controlWord === '') {
21008             this.emitError('empty control word');
21009         } else {
21010             this.push({
21011                   type: 'controlword',
21012                   value: this.controlWord,
21013                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
21014                   pos: this.cpos,
21015                   row: this.row,
21016                   col: this.col
21017             });
21018         }
21019         this.controlWord = '';
21020         this.controlWordParam = '';
21021     },
21022     emitStartGroup : function ()
21023     {
21024         this.emitText();
21025         this.push({
21026             type: 'groupstart',
21027             pos: this.cpos,
21028             row: this.row,
21029             col: this.col
21030         });
21031     },
21032     emitEndGroup : function ()
21033     {
21034         this.emitText();
21035         this.push({
21036             type: 'groupend',
21037             pos: this.cpos,
21038             row: this.row,
21039             col: this.col
21040         });
21041     },
21042     emitIgnorable : function ()
21043     {
21044         this.emitText();
21045         this.push({
21046             type: 'ignorable',
21047             pos: this.cpos,
21048             row: this.row,
21049             col: this.col
21050         });
21051     },
21052     emitHexChar : function ()
21053     {
21054         this.emitText();
21055         this.push({
21056             type: 'hexchar',
21057             value: this.hexChar,
21058             pos: this.cpos,
21059             row: this.row,
21060             col: this.col
21061         });
21062         this.hexChar = ''
21063     },
21064     emitError : function (message)
21065     {
21066       this.emitText();
21067       this.push({
21068             type: 'error',
21069             value: message,
21070             row: this.row,
21071             col: this.col,
21072             char: this.cpos //,
21073             //stack: new Error().stack
21074         });
21075     },
21076     emitEndParagraph : function () {
21077         this.emitText();
21078         this.push({
21079             type: 'endparagraph',
21080             pos: this.cpos,
21081             row: this.row,
21082             col: this.col
21083         });
21084     }
21085      
21086 } ;
21087 Roo.htmleditor = {};
21088  
21089 /**
21090  * @class Roo.htmleditor.Filter
21091  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
21092  * @cfg {DomElement} node The node to iterate and filter
21093  * @cfg {boolean|String|Array} tag Tags to replace 
21094  * @constructor
21095  * Create a new Filter.
21096  * @param {Object} config Configuration options
21097  */
21098
21099
21100
21101 Roo.htmleditor.Filter = function(cfg) {
21102     Roo.apply(this.cfg);
21103     // this does not actually call walk as it's really just a abstract class
21104 }
21105
21106
21107 Roo.htmleditor.Filter.prototype = {
21108     
21109     node: false,
21110     
21111     tag: false,
21112
21113     // overrride to do replace comments.
21114     replaceComment : false,
21115     
21116     // overrride to do replace or do stuff with tags..
21117     replaceTag : false,
21118     
21119     walk : function(dom)
21120     {
21121         Roo.each( Array.from(dom.childNodes), function( e ) {
21122             switch(true) {
21123                 
21124                 case e.nodeType == 8 && typeof(this.replaceComment) != 'undefined': // comment
21125                     this.replaceComment(e);
21126                     return;
21127                 
21128                 case e.nodeType != 1: //not a node.
21129                     return;
21130                 
21131                 case this.tag === true: // everything
21132                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
21133                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
21134                     if (this.replaceTag && false === this.replaceTag(e)) {
21135                         return;
21136                     }
21137                     if (e.hasChildNodes()) {
21138                         this.walk(e);
21139                     }
21140                     return;
21141                 
21142                 default:    // tags .. that do not match.
21143                     if (e.hasChildNodes()) {
21144                         this.walk(e);
21145                     }
21146             }
21147             
21148         }, this);
21149         
21150     }
21151 }; 
21152
21153 /**
21154  * @class Roo.htmleditor.FilterAttributes
21155  * clean attributes and  styles including http:// etc.. in attribute
21156  * @constructor
21157 * Run a new Attribute Filter
21158 * @param {Object} config Configuration options
21159  */
21160 Roo.htmleditor.FilterAttributes = function(cfg)
21161 {
21162     Roo.apply(this, cfg);
21163     this.attrib_black = this.attrib_black || [];
21164     this.attrib_white = this.attrib_white || [];
21165
21166     this.attrib_clean = this.attrib_clean || [];
21167     this.style_white = this.style_white || [];
21168     this.style_black = this.style_black || [];
21169     this.walk(cfg.node);
21170 }
21171
21172 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
21173 {
21174     tag: true, // all tags
21175     
21176     attrib_black : false, // array
21177     attrib_clean : false,
21178     attrib_white : false,
21179
21180     style_white : false,
21181     style_black : false,
21182      
21183      
21184     replaceTag : function(node)
21185     {
21186         if (!node.attributes || !node.attributes.length) {
21187             return true;
21188         }
21189         
21190         for (var i = node.attributes.length-1; i > -1 ; i--) {
21191             var a = node.attributes[i];
21192             //console.log(a);
21193             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
21194                 node.removeAttribute(a.name);
21195                 continue;
21196             }
21197             
21198             
21199             
21200             if (a.name.toLowerCase().substr(0,2)=='on')  {
21201                 node.removeAttribute(a.name);
21202                 continue;
21203             }
21204             
21205             
21206             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
21207                 node.removeAttribute(a.name);
21208                 continue;
21209             }
21210             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
21211                 this.cleanAttr(node,a.name,a.value); // fixme..
21212                 continue;
21213             }
21214             if (a.name == 'style') {
21215                 this.cleanStyle(node,a.name,a.value);
21216                 continue;
21217             }
21218             /// clean up MS crap..
21219             // tecnically this should be a list of valid class'es..
21220             
21221             
21222             if (a.name == 'class') {
21223                 if (a.value.match(/^Mso/)) {
21224                     node.removeAttribute('class');
21225                 }
21226                 
21227                 if (a.value.match(/^body$/)) {
21228                     node.removeAttribute('class');
21229                 }
21230                 continue;
21231             }
21232             
21233             
21234             // style cleanup!?
21235             // class cleanup?
21236             
21237         }
21238         return true; // clean children
21239     },
21240         
21241     cleanAttr: function(node, n,v)
21242     {
21243         
21244         if (v.match(/^\./) || v.match(/^\//)) {
21245             return;
21246         }
21247         if (v.match(/^(http|https):\/\//)
21248             || v.match(/^mailto:/) 
21249             || v.match(/^ftp:/)
21250             || v.match(/^data:/)
21251             ) {
21252             return;
21253         }
21254         if (v.match(/^#/)) {
21255             return;
21256         }
21257         if (v.match(/^\{/)) { // allow template editing.
21258             return;
21259         }
21260 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
21261         node.removeAttribute(n);
21262         
21263     },
21264     cleanStyle : function(node,  n,v)
21265     {
21266         if (v.match(/expression/)) { //XSS?? should we even bother..
21267             node.removeAttribute(n);
21268             return;
21269         }
21270         
21271         var parts = v.split(/;/);
21272         var clean = [];
21273         
21274         Roo.each(parts, function(p) {
21275             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
21276             if (!p.length) {
21277                 return true;
21278             }
21279             var l = p.split(':').shift().replace(/\s+/g,'');
21280             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
21281             
21282             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
21283                 return true;
21284             }
21285             //Roo.log()
21286             // only allow 'c whitelisted system attributes'
21287             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
21288                 return true;
21289             }
21290             
21291             
21292             clean.push(p);
21293             return true;
21294         },this);
21295         if (clean.length) { 
21296             node.setAttribute(n, clean.join(';'));
21297         } else {
21298             node.removeAttribute(n);
21299         }
21300         
21301     }
21302         
21303         
21304         
21305     
21306 });/**
21307  * @class Roo.htmleditor.FilterBlack
21308  * remove blacklisted elements.
21309  * @constructor
21310  * Run a new Blacklisted Filter
21311  * @param {Object} config Configuration options
21312  */
21313
21314 Roo.htmleditor.FilterBlack = function(cfg)
21315 {
21316     Roo.apply(this, cfg);
21317     this.walk(cfg.node);
21318 }
21319
21320 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
21321 {
21322     tag : true, // all elements.
21323    
21324     replace : function(n)
21325     {
21326         n.parentNode.removeChild(n);
21327     }
21328 });
21329 /**
21330  * @class Roo.htmleditor.FilterComment
21331  * remove comments.
21332  * @constructor
21333 * Run a new Comments Filter
21334 * @param {Object} config Configuration options
21335  */
21336 Roo.htmleditor.FilterComment = function(cfg)
21337 {
21338     this.walk(cfg.node);
21339 }
21340
21341 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
21342 {
21343   
21344     replaceComment : function(n)
21345     {
21346         n.parentNode.removeChild(n);
21347     }
21348 });/**
21349  * @class Roo.htmleditor.FilterKeepChildren
21350  * remove tags but keep children
21351  * @constructor
21352  * Run a new Keep Children Filter
21353  * @param {Object} config Configuration options
21354  */
21355
21356 Roo.htmleditor.FilterKeepChildren = function(cfg)
21357 {
21358     Roo.apply(this, cfg);
21359     if (this.tag === false) {
21360         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
21361     }
21362     this.walk(cfg.node);
21363 }
21364
21365 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
21366 {
21367     
21368   
21369     replaceTag : function(node)
21370     {
21371         // walk children...
21372         //Roo.log(node);
21373         var ar = Array.from(node.childNodes);
21374         //remove first..
21375         for (var i = 0; i < ar.length; i++) {
21376             if (ar[i].nodeType == 1) {
21377                 if (
21378                     (typeof(this.tag) == 'object' && this.tag.indexOf(ar[i].tagName) > -1)
21379                     || // array and it matches
21380                     (typeof(this.tag) == 'string' && this.tag == ar[i].tagName)
21381                 ) {
21382                     this.replaceTag(ar[i]); // child is blacklisted as well...
21383                     continue;
21384                 }
21385             }
21386         }  
21387         ar = Array.from(node.childNodes);
21388         for (var i = 0; i < ar.length; i++) {
21389          
21390             node.removeChild(ar[i]);
21391             // what if we need to walk these???
21392             node.parentNode.insertBefore(ar[i], node);
21393             if (this.tag !== false) {
21394                 this.walk(ar[i]);
21395                 
21396             }
21397         }
21398         node.parentNode.removeChild(node);
21399         return false; // don't walk children
21400         
21401         
21402     }
21403 });/**
21404  * @class Roo.htmleditor.FilterParagraph
21405  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
21406  * like on 'push' to remove the <p> tags and replace them with line breaks.
21407  * @constructor
21408  * Run a new Paragraph Filter
21409  * @param {Object} config Configuration options
21410  */
21411
21412 Roo.htmleditor.FilterParagraph = function(cfg)
21413 {
21414     // no need to apply config.
21415     this.walk(cfg.node);
21416 }
21417
21418 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
21419 {
21420     
21421      
21422     tag : 'P',
21423     
21424      
21425     replaceTag : function(node)
21426     {
21427         
21428         if (node.childNodes.length == 1 &&
21429             node.childNodes[0].nodeType == 3 &&
21430             node.childNodes[0].textContent.trim().length < 1
21431             ) {
21432             // remove and replace with '<BR>';
21433             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
21434             return false; // no need to walk..
21435         }
21436         var ar = Array.from(node.childNodes);
21437         for (var i = 0; i < ar.length; i++) {
21438             node.removeChild(ar[i]);
21439             // what if we need to walk these???
21440             node.parentNode.insertBefore(ar[i], node);
21441         }
21442         // now what about this?
21443         // <p> &nbsp; </p>
21444         
21445         // double BR.
21446         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
21447         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
21448         node.parentNode.removeChild(node);
21449         
21450         return false;
21451
21452     }
21453     
21454 });/**
21455  * @class Roo.htmleditor.FilterSpan
21456  * filter span's with no attributes out..
21457  * @constructor
21458  * Run a new Span Filter
21459  * @param {Object} config Configuration options
21460  */
21461
21462 Roo.htmleditor.FilterSpan = function(cfg)
21463 {
21464     // no need to apply config.
21465     this.walk(cfg.node);
21466 }
21467
21468 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
21469 {
21470      
21471     tag : 'SPAN',
21472      
21473  
21474     replaceTag : function(node)
21475     {
21476         if (node.attributes && node.attributes.length > 0) {
21477             return true; // walk if there are any.
21478         }
21479         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
21480         return false;
21481      
21482     }
21483     
21484 });/**
21485  * @class Roo.htmleditor.FilterTableWidth
21486   try and remove table width data - as that frequently messes up other stuff.
21487  * 
21488  *      was cleanTableWidths.
21489  *
21490  * Quite often pasting from word etc.. results in tables with column and widths.
21491  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
21492  *
21493  * @constructor
21494  * Run a new Table Filter
21495  * @param {Object} config Configuration options
21496  */
21497
21498 Roo.htmleditor.FilterTableWidth = function(cfg)
21499 {
21500     // no need to apply config.
21501     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
21502     this.walk(cfg.node);
21503 }
21504
21505 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
21506 {
21507      
21508      
21509     
21510     replaceTag: function(node) {
21511         
21512         
21513       
21514         if (node.hasAttribute('width')) {
21515             node.removeAttribute('width');
21516         }
21517         
21518          
21519         if (node.hasAttribute("style")) {
21520             // pretty basic...
21521             
21522             var styles = node.getAttribute("style").split(";");
21523             var nstyle = [];
21524             Roo.each(styles, function(s) {
21525                 if (!s.match(/:/)) {
21526                     return;
21527                 }
21528                 var kv = s.split(":");
21529                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
21530                     return;
21531                 }
21532                 // what ever is left... we allow.
21533                 nstyle.push(s);
21534             });
21535             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
21536             if (!nstyle.length) {
21537                 node.removeAttribute('style');
21538             }
21539         }
21540         
21541         return true; // continue doing children..
21542     }
21543 });/**
21544  * @class Roo.htmleditor.FilterWord
21545  * try and clean up all the mess that Word generates.
21546  * 
21547  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
21548  
21549  * @constructor
21550  * Run a new Span Filter
21551  * @param {Object} config Configuration options
21552  */
21553
21554 Roo.htmleditor.FilterWord = function(cfg)
21555 {
21556     // no need to apply config.
21557     this.walk(cfg.node);
21558 }
21559
21560 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
21561 {
21562     tag: true,
21563      
21564     
21565     /**
21566      * Clean up MS wordisms...
21567      */
21568     replaceTag : function(node)
21569     {
21570          
21571         // no idea what this does - span with text, replaceds with just text.
21572         if(
21573                 node.nodeName == 'SPAN' &&
21574                 !node.hasAttributes() &&
21575                 node.childNodes.length == 1 &&
21576                 node.firstChild.nodeName == "#text"  
21577         ) {
21578             var textNode = node.firstChild;
21579             node.removeChild(textNode);
21580             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
21581                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
21582             }
21583             node.parentNode.insertBefore(textNode, node);
21584             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
21585                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
21586             }
21587             
21588             node.parentNode.removeChild(node);
21589             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
21590         }
21591         
21592    
21593         
21594         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
21595             node.parentNode.removeChild(node);
21596             return false; // dont do chidlren
21597         }
21598         //Roo.log(node.tagName);
21599         // remove - but keep children..
21600         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
21601             //Roo.log('-- removed');
21602             while (node.childNodes.length) {
21603                 var cn = node.childNodes[0];
21604                 node.removeChild(cn);
21605                 node.parentNode.insertBefore(cn, node);
21606                 // move node to parent - and clean it..
21607                 this.replaceTag(cn);
21608             }
21609             node.parentNode.removeChild(node);
21610             /// no need to iterate chidlren = it's got none..
21611             //this.iterateChildren(node, this.cleanWord);
21612             return false; // no need to iterate children.
21613         }
21614         // clean styles
21615         if (node.className.length) {
21616             
21617             var cn = node.className.split(/\W+/);
21618             var cna = [];
21619             Roo.each(cn, function(cls) {
21620                 if (cls.match(/Mso[a-zA-Z]+/)) {
21621                     return;
21622                 }
21623                 cna.push(cls);
21624             });
21625             node.className = cna.length ? cna.join(' ') : '';
21626             if (!cna.length) {
21627                 node.removeAttribute("class");
21628             }
21629         }
21630         
21631         if (node.hasAttribute("lang")) {
21632             node.removeAttribute("lang");
21633         }
21634         
21635         if (node.hasAttribute("style")) {
21636             
21637             var styles = node.getAttribute("style").split(";");
21638             var nstyle = [];
21639             Roo.each(styles, function(s) {
21640                 if (!s.match(/:/)) {
21641                     return;
21642                 }
21643                 var kv = s.split(":");
21644                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
21645                     return;
21646                 }
21647                 // what ever is left... we allow.
21648                 nstyle.push(s);
21649             });
21650             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
21651             if (!nstyle.length) {
21652                 node.removeAttribute('style');
21653             }
21654         }
21655         return true; // do children
21656         
21657         
21658         
21659     }
21660 });
21661 /**
21662  * @class Roo.htmleditor.FilterStyleToTag
21663  * part of the word stuff... - certain 'styles' should be converted to tags.
21664  * eg.
21665  *   font-weight: bold -> bold
21666  *   ?? super / subscrit etc..
21667  * 
21668  * @constructor
21669 * Run a new style to tag filter.
21670 * @param {Object} config Configuration options
21671  */
21672 Roo.htmleditor.FilterStyleToTag = function(cfg)
21673 {
21674     
21675     this.tags = {
21676         B  : [ 'fontWeight' , 'bold'],
21677         I :  [ 'fontStyle' , 'italic'],
21678         //pre :  [ 'font-style' , 'italic'],
21679         // h1.. h6 ?? font-size?
21680         SUP : [ 'verticalAlign' , 'super' ],
21681         SUB : [ 'verticalAlign' , 'sub' ]
21682         
21683         
21684     };
21685     
21686     Roo.apply(this, cfg);
21687      
21688     
21689     this.walk(cfg.node);
21690     
21691     
21692     
21693 }
21694
21695
21696 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
21697 {
21698     tag: true, // all tags
21699     
21700     tags : false,
21701     
21702     
21703     replaceTag : function(node)
21704     {
21705         
21706         
21707         if (node.getAttribute("style") === null) {
21708             return true;
21709         }
21710         var inject = [];
21711         for (var k in this.tags) {
21712             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
21713                 inject.push(k);
21714                 node.style.removeProperty(this.tags[k][0]);
21715             }
21716         }
21717         if (!inject.length) {
21718             return true; 
21719         }
21720         var cn = Array.from(node.childNodes);
21721         var nn = node;
21722         Roo.each(inject, function(t) {
21723             var nc = node.ownerDocument.createElement(t);
21724             nn.appendChild(nc);
21725             nn = nc;
21726         });
21727         for(var i = 0;i < cn.length;cn++) {
21728             node.removeChild(cn[i]);
21729             nn.appendChild(cn[i]);
21730         }
21731         return true /// iterate thru
21732     }
21733     
21734 })/**
21735  * @class Roo.htmleditor.FilterLongBr
21736  * BR/BR/BR - keep a maximum of 2...
21737  * @constructor
21738  * Run a new Long BR Filter
21739  * @param {Object} config Configuration options
21740  */
21741
21742 Roo.htmleditor.FilterLongBr = function(cfg)
21743 {
21744     // no need to apply config.
21745     this.walk(cfg.node);
21746 }
21747
21748 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
21749 {
21750     
21751      
21752     tag : 'BR',
21753     
21754      
21755     replaceTag : function(node)
21756     {
21757         
21758         var ps = node.nextSibling;
21759         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
21760             ps = ps.nextSibling;
21761         }
21762         
21763         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
21764             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
21765             return false;
21766         }
21767         
21768         if (!ps || ps.nodeType != 1) {
21769             return false;
21770         }
21771         
21772         if (!ps || ps.tagName != 'BR') {
21773            
21774             return false;
21775         }
21776         
21777         
21778         
21779         
21780         
21781         if (!node.previousSibling) {
21782             return false;
21783         }
21784         var ps = node.previousSibling;
21785         
21786         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
21787             ps = ps.previousSibling;
21788         }
21789         if (!ps || ps.nodeType != 1) {
21790             return false;
21791         }
21792         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
21793         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
21794             return false;
21795         }
21796         
21797         node.parentNode.removeChild(node); // remove me...
21798         
21799         return false; // no need to do children
21800
21801     }
21802     
21803 }); 
21804
21805 /**
21806  * @class Roo.htmleditor.FilterBlock
21807  * removes id / data-block and contenteditable that are associated with blocks
21808  * usage should be done on a cloned copy of the dom
21809  * @constructor
21810 * Run a new Attribute Filter { node : xxxx }}
21811 * @param {Object} config Configuration options
21812  */
21813 Roo.htmleditor.FilterBlock = function(cfg)
21814 {
21815     Roo.apply(this, cfg);
21816     var qa = cfg.node.querySelectorAll;
21817     this.removeAttributes('data-block');
21818     this.removeAttributes('contenteditable');
21819     this.removeAttributes('id');
21820     
21821 }
21822
21823 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
21824 {
21825     node: true, // all tags
21826      
21827      
21828     removeAttributes : function(attr)
21829     {
21830         var ar = this.node.querySelectorAll('*[' + attr + ']');
21831         for (var i =0;i<ar.length;i++) {
21832             ar[i].removeAttribute(attr);
21833         }
21834     }
21835         
21836         
21837         
21838     
21839 });
21840 /***
21841  * This is based loosely on tinymce 
21842  * @class Roo.htmleditor.TidySerializer
21843  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
21844  * @constructor
21845  * @method Serializer
21846  * @param {Object} settings Name/value settings object.
21847  */
21848
21849
21850 Roo.htmleditor.TidySerializer = function(settings)
21851 {
21852     Roo.apply(this, settings);
21853     
21854     this.writer = new Roo.htmleditor.TidyWriter(settings);
21855     
21856     
21857
21858 };
21859 Roo.htmleditor.TidySerializer.prototype = {
21860     
21861     /**
21862      * @param {boolean} inner do the inner of the node.
21863      */
21864     inner : false,
21865     
21866     writer : false,
21867     
21868     /**
21869     * Serializes the specified node into a string.
21870     *
21871     * @example
21872     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
21873     * @method serialize
21874     * @param {DomElement} node Node instance to serialize.
21875     * @return {String} String with HTML based on DOM tree.
21876     */
21877     serialize : function(node) {
21878         
21879         // = settings.validate;
21880         var writer = this.writer;
21881         var self  = this;
21882         this.handlers = {
21883             // #text
21884             3: function(node) {
21885                 
21886                 writer.text(node.nodeValue, node);
21887             },
21888             // #comment
21889             8: function(node) {
21890                 writer.comment(node.nodeValue);
21891             },
21892             // Processing instruction
21893             7: function(node) {
21894                 writer.pi(node.name, node.nodeValue);
21895             },
21896             // Doctype
21897             10: function(node) {
21898                 writer.doctype(node.nodeValue);
21899             },
21900             // CDATA
21901             4: function(node) {
21902                 writer.cdata(node.nodeValue);
21903             },
21904             // Document fragment
21905             11: function(node) {
21906                 node = node.firstChild;
21907                 if (!node) {
21908                     return;
21909                 }
21910                 while(node) {
21911                     self.walk(node);
21912                     node = node.nextSibling
21913                 }
21914             }
21915         };
21916         writer.reset();
21917         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
21918         return writer.getContent();
21919     },
21920
21921     walk: function(node)
21922     {
21923         var attrName, attrValue, sortedAttrs, i, l, elementRule,
21924             handler = this.handlers[node.nodeType];
21925             
21926         if (handler) {
21927             handler(node);
21928             return;
21929         }
21930     
21931         var name = node.nodeName;
21932         var isEmpty = node.childNodes.length < 1;
21933       
21934         var writer = this.writer;
21935         var attrs = node.attributes;
21936         // Sort attributes
21937         
21938         writer.start(node.nodeName, attrs, isEmpty, node);
21939         if (isEmpty) {
21940             return;
21941         }
21942         node = node.firstChild;
21943         if (!node) {
21944             writer.end(name);
21945             return;
21946         }
21947         while (node) {
21948             this.walk(node);
21949             node = node.nextSibling;
21950         }
21951         writer.end(name);
21952         
21953     
21954     }
21955     // Serialize element and treat all non elements as fragments
21956    
21957 }; 
21958
21959 /***
21960  * This is based loosely on tinymce 
21961  * @class Roo.htmleditor.TidyWriter
21962  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
21963  *
21964  * Known issues?
21965  * - not tested much with 'PRE' formated elements.
21966  * 
21967  *
21968  *
21969  */
21970
21971 Roo.htmleditor.TidyWriter = function(settings)
21972 {
21973     
21974     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
21975     Roo.apply(this, settings);
21976     this.html = [];
21977     this.state = [];
21978      
21979     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
21980   
21981 }
21982 Roo.htmleditor.TidyWriter.prototype = {
21983
21984  
21985     state : false,
21986     
21987     indent :  '  ',
21988     
21989     // part of state...
21990     indentstr : '',
21991     in_pre: false,
21992     in_inline : false,
21993     last_inline : false,
21994     encode : false,
21995      
21996     
21997             /**
21998     * Writes the a start element such as <p id="a">.
21999     *
22000     * @method start
22001     * @param {String} name Name of the element.
22002     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
22003     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
22004     */
22005     start: function(name, attrs, empty, node)
22006     {
22007         var i, l, attr, value;
22008         
22009         // there are some situations where adding line break && indentation will not work. will not work.
22010         // <span / b / i ... formating?
22011         
22012         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
22013         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
22014         
22015         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
22016         
22017         var add_lb = name == 'BR' ? false : in_inline;
22018         
22019         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
22020             i_inline = false;
22021         }
22022
22023         var indentstr =  this.indentstr;
22024         
22025         // e_inline = elements that can be inline, but still allow \n before and after?
22026         // only 'BR' ??? any others?
22027         
22028         // ADD LINE BEFORE tage
22029         if (!this.in_pre) {
22030             if (in_inline) {
22031                 //code
22032                 if (name == 'BR') {
22033                     this.addLine();
22034                 } else if (this.lastElementEndsWS()) {
22035                     this.addLine();
22036                 } else{
22037                     // otherwise - no new line. (and dont indent.)
22038                     indentstr = '';
22039                 }
22040                 
22041             } else {
22042                 this.addLine();
22043             }
22044         } else {
22045             indentstr = '';
22046         }
22047         
22048         this.html.push(indentstr + '<', name.toLowerCase());
22049         
22050         if (attrs) {
22051             for (i = 0, l = attrs.length; i < l; i++) {
22052                 attr = attrs[i];
22053                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
22054             }
22055         }
22056      
22057         if (empty) {
22058             if (is_short) {
22059                 this.html[this.html.length] = '/>';
22060             } else {
22061                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
22062             }
22063             var e_inline = name == 'BR' ? false : this.in_inline;
22064             
22065             if (!e_inline && !this.in_pre) {
22066                 this.addLine();
22067             }
22068             return;
22069         
22070         }
22071         // not empty..
22072         this.html[this.html.length] = '>';
22073         
22074         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
22075         /*
22076         if (!in_inline && !in_pre) {
22077             var cn = node.firstChild;
22078             while(cn) {
22079                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
22080                     in_inline = true
22081                     break;
22082                 }
22083                 cn = cn.nextSibling;
22084             }
22085              
22086         }
22087         */
22088         
22089         
22090         this.pushState({
22091             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
22092             in_pre : in_pre,
22093             in_inline :  in_inline
22094         });
22095         // add a line after if we are not in a
22096         
22097         if (!in_inline && !in_pre) {
22098             this.addLine();
22099         }
22100         
22101             
22102          
22103         
22104     },
22105     
22106     lastElementEndsWS : function()
22107     {
22108         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
22109         if (value === false) {
22110             return true;
22111         }
22112         return value.match(/\s+$/);
22113         
22114     },
22115     
22116     /**
22117      * Writes the a end element such as </p>.
22118      *
22119      * @method end
22120      * @param {String} name Name of the element.
22121      */
22122     end: function(name) {
22123         var value;
22124         this.popState();
22125         var indentstr = '';
22126         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
22127         
22128         if (!this.in_pre && !in_inline) {
22129             this.addLine();
22130             indentstr  = this.indentstr;
22131         }
22132         this.html.push(indentstr + '</', name.toLowerCase(), '>');
22133         this.last_inline = in_inline;
22134         
22135         // pop the indent state..
22136     },
22137     /**
22138      * Writes a text node.
22139      *
22140      * In pre - we should not mess with the contents.
22141      * 
22142      *
22143      * @method text
22144      * @param {String} text String to write out.
22145      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
22146      */
22147     text: function(text, node)
22148     {
22149         // if not in whitespace critical
22150         if (text.length < 1) {
22151             return;
22152         }
22153         if (this.in_pre) {
22154             this.html[this.html.length] =  text;
22155             return;   
22156         }
22157         
22158         if (this.in_inline) {
22159             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
22160             if (text != ' ') {
22161                 text = text.replace(/\s+/,' ');  // all white space to single white space
22162                 
22163                     
22164                 // if next tag is '<BR>', then we can trim right..
22165                 if (node.nextSibling &&
22166                     node.nextSibling.nodeType == 1 &&
22167                     node.nextSibling.nodeName == 'BR' )
22168                 {
22169                     text = text.replace(/\s+$/g,'');
22170                 }
22171                 // if previous tag was a BR, we can also trim..
22172                 if (node.previousSibling &&
22173                     node.previousSibling.nodeType == 1 &&
22174                     node.previousSibling.nodeName == 'BR' )
22175                 {
22176                     text = this.indentstr +  text.replace(/^\s+/g,'');
22177                 }
22178                 if (text.match(/\n/)) {
22179                     text = text.replace(
22180                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
22181                     );
22182                     // remoeve the last whitespace / line break.
22183                     text = text.replace(/\n\s+$/,'');
22184                 }
22185                 // repace long lines
22186                 
22187             }
22188              
22189             this.html[this.html.length] =  text;
22190             return;   
22191         }
22192         // see if previous element was a inline element.
22193         var indentstr = this.indentstr;
22194    
22195         text = text.replace(/\s+/g," "); // all whitespace into single white space.
22196         
22197         // should trim left?
22198         if (node.previousSibling &&
22199             node.previousSibling.nodeType == 1 &&
22200             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
22201         {
22202             indentstr = '';
22203             
22204         } else {
22205             this.addLine();
22206             text = text.replace(/^\s+/,''); // trim left
22207           
22208         }
22209         // should trim right?
22210         if (node.nextSibling &&
22211             node.nextSibling.nodeType == 1 &&
22212             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
22213         {
22214           // noop
22215             
22216         }  else {
22217             text = text.replace(/\s+$/,''); // trim right
22218         }
22219          
22220               
22221         
22222         
22223         
22224         if (text.length < 1) {
22225             return;
22226         }
22227         if (!text.match(/\n/)) {
22228             this.html.push(indentstr + text);
22229             return;
22230         }
22231         
22232         text = this.indentstr + text.replace(
22233             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
22234         );
22235         // remoeve the last whitespace / line break.
22236         text = text.replace(/\s+$/,''); 
22237         
22238         this.html.push(text);
22239         
22240         // split and indent..
22241         
22242         
22243     },
22244     /**
22245      * Writes a cdata node such as <![CDATA[data]]>.
22246      *
22247      * @method cdata
22248      * @param {String} text String to write out inside the cdata.
22249      */
22250     cdata: function(text) {
22251         this.html.push('<![CDATA[', text, ']]>');
22252     },
22253     /**
22254     * Writes a comment node such as <!-- Comment -->.
22255     *
22256     * @method cdata
22257     * @param {String} text String to write out inside the comment.
22258     */
22259    comment: function(text) {
22260        this.html.push('<!--', text, '-->');
22261    },
22262     /**
22263      * Writes a PI node such as <?xml attr="value" ?>.
22264      *
22265      * @method pi
22266      * @param {String} name Name of the pi.
22267      * @param {String} text String to write out inside the pi.
22268      */
22269     pi: function(name, text) {
22270         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
22271         this.indent != '' && this.html.push('\n');
22272     },
22273     /**
22274      * Writes a doctype node such as <!DOCTYPE data>.
22275      *
22276      * @method doctype
22277      * @param {String} text String to write out inside the doctype.
22278      */
22279     doctype: function(text) {
22280         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
22281     },
22282     /**
22283      * Resets the internal buffer if one wants to reuse the writer.
22284      *
22285      * @method reset
22286      */
22287     reset: function() {
22288         this.html.length = 0;
22289         this.state = [];
22290         this.pushState({
22291             indentstr : '',
22292             in_pre : false, 
22293             in_inline : false
22294         })
22295     },
22296     /**
22297      * Returns the contents that got serialized.
22298      *
22299      * @method getContent
22300      * @return {String} HTML contents that got written down.
22301      */
22302     getContent: function() {
22303         return this.html.join('').replace(/\n$/, '');
22304     },
22305     
22306     pushState : function(cfg)
22307     {
22308         this.state.push(cfg);
22309         Roo.apply(this, cfg);
22310     },
22311     
22312     popState : function()
22313     {
22314         if (this.state.length < 1) {
22315             return; // nothing to push
22316         }
22317         var cfg = {
22318             in_pre: false,
22319             indentstr : ''
22320         };
22321         this.state.pop();
22322         if (this.state.length > 0) {
22323             cfg = this.state[this.state.length-1]; 
22324         }
22325         Roo.apply(this, cfg);
22326     },
22327     
22328     addLine: function()
22329     {
22330         if (this.html.length < 1) {
22331             return;
22332         }
22333         
22334         
22335         var value = this.html[this.html.length - 1];
22336         if (value.length > 0 && '\n' !== value) {
22337             this.html.push('\n');
22338         }
22339     }
22340     
22341     
22342 //'pre script noscript style textarea video audio iframe object code'
22343 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
22344 // inline 
22345 };
22346
22347 Roo.htmleditor.TidyWriter.inline_elements = [
22348         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
22349         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP'
22350 ];
22351 Roo.htmleditor.TidyWriter.shortend_elements = [
22352     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
22353     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
22354 ];
22355
22356 Roo.htmleditor.TidyWriter.whitespace_elements = [
22357     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
22358 ];/***
22359  * This is based loosely on tinymce 
22360  * @class Roo.htmleditor.TidyEntities
22361  * @static
22362  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
22363  *
22364  * Not 100% sure this is actually used or needed.
22365  */
22366
22367 Roo.htmleditor.TidyEntities = {
22368     
22369     /**
22370      * initialize data..
22371      */
22372     init : function (){
22373      
22374         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
22375        
22376     },
22377
22378
22379     buildEntitiesLookup: function(items, radix) {
22380         var i, chr, entity, lookup = {};
22381         if (!items) {
22382             return {};
22383         }
22384         items = typeof(items) == 'string' ? items.split(',') : items;
22385         radix = radix || 10;
22386         // Build entities lookup table
22387         for (i = 0; i < items.length; i += 2) {
22388             chr = String.fromCharCode(parseInt(items[i], radix));
22389             // Only add non base entities
22390             if (!this.baseEntities[chr]) {
22391                 entity = '&' + items[i + 1] + ';';
22392                 lookup[chr] = entity;
22393                 lookup[entity] = chr;
22394             }
22395         }
22396         return lookup;
22397         
22398     },
22399     
22400     asciiMap : {
22401             128: '€',
22402             130: '‚',
22403             131: 'ƒ',
22404             132: '„',
22405             133: '…',
22406             134: '†',
22407             135: '‡',
22408             136: 'ˆ',
22409             137: '‰',
22410             138: 'Š',
22411             139: '‹',
22412             140: 'Œ',
22413             142: 'Ž',
22414             145: '‘',
22415             146: '’',
22416             147: '“',
22417             148: '”',
22418             149: '•',
22419             150: '–',
22420             151: '—',
22421             152: '˜',
22422             153: '™',
22423             154: 'š',
22424             155: '›',
22425             156: 'œ',
22426             158: 'ž',
22427             159: 'Ÿ'
22428     },
22429     // Raw entities
22430     baseEntities : {
22431         '"': '&quot;',
22432         // Needs to be escaped since the YUI compressor would otherwise break the code
22433         '\'': '&#39;',
22434         '<': '&lt;',
22435         '>': '&gt;',
22436         '&': '&amp;',
22437         '`': '&#96;'
22438     },
22439     // Reverse lookup table for raw entities
22440     reverseEntities : {
22441         '&lt;': '<',
22442         '&gt;': '>',
22443         '&amp;': '&',
22444         '&quot;': '"',
22445         '&apos;': '\''
22446     },
22447     
22448     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
22449     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
22450     rawCharsRegExp : /[<>&\"\']/g,
22451     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
22452     namedEntities  : false,
22453     namedEntitiesData : [ 
22454         '50',
22455         'nbsp',
22456         '51',
22457         'iexcl',
22458         '52',
22459         'cent',
22460         '53',
22461         'pound',
22462         '54',
22463         'curren',
22464         '55',
22465         'yen',
22466         '56',
22467         'brvbar',
22468         '57',
22469         'sect',
22470         '58',
22471         'uml',
22472         '59',
22473         'copy',
22474         '5a',
22475         'ordf',
22476         '5b',
22477         'laquo',
22478         '5c',
22479         'not',
22480         '5d',
22481         'shy',
22482         '5e',
22483         'reg',
22484         '5f',
22485         'macr',
22486         '5g',
22487         'deg',
22488         '5h',
22489         'plusmn',
22490         '5i',
22491         'sup2',
22492         '5j',
22493         'sup3',
22494         '5k',
22495         'acute',
22496         '5l',
22497         'micro',
22498         '5m',
22499         'para',
22500         '5n',
22501         'middot',
22502         '5o',
22503         'cedil',
22504         '5p',
22505         'sup1',
22506         '5q',
22507         'ordm',
22508         '5r',
22509         'raquo',
22510         '5s',
22511         'frac14',
22512         '5t',
22513         'frac12',
22514         '5u',
22515         'frac34',
22516         '5v',
22517         'iquest',
22518         '60',
22519         'Agrave',
22520         '61',
22521         'Aacute',
22522         '62',
22523         'Acirc',
22524         '63',
22525         'Atilde',
22526         '64',
22527         'Auml',
22528         '65',
22529         'Aring',
22530         '66',
22531         'AElig',
22532         '67',
22533         'Ccedil',
22534         '68',
22535         'Egrave',
22536         '69',
22537         'Eacute',
22538         '6a',
22539         'Ecirc',
22540         '6b',
22541         'Euml',
22542         '6c',
22543         'Igrave',
22544         '6d',
22545         'Iacute',
22546         '6e',
22547         'Icirc',
22548         '6f',
22549         'Iuml',
22550         '6g',
22551         'ETH',
22552         '6h',
22553         'Ntilde',
22554         '6i',
22555         'Ograve',
22556         '6j',
22557         'Oacute',
22558         '6k',
22559         'Ocirc',
22560         '6l',
22561         'Otilde',
22562         '6m',
22563         'Ouml',
22564         '6n',
22565         'times',
22566         '6o',
22567         'Oslash',
22568         '6p',
22569         'Ugrave',
22570         '6q',
22571         'Uacute',
22572         '6r',
22573         'Ucirc',
22574         '6s',
22575         'Uuml',
22576         '6t',
22577         'Yacute',
22578         '6u',
22579         'THORN',
22580         '6v',
22581         'szlig',
22582         '70',
22583         'agrave',
22584         '71',
22585         'aacute',
22586         '72',
22587         'acirc',
22588         '73',
22589         'atilde',
22590         '74',
22591         'auml',
22592         '75',
22593         'aring',
22594         '76',
22595         'aelig',
22596         '77',
22597         'ccedil',
22598         '78',
22599         'egrave',
22600         '79',
22601         'eacute',
22602         '7a',
22603         'ecirc',
22604         '7b',
22605         'euml',
22606         '7c',
22607         'igrave',
22608         '7d',
22609         'iacute',
22610         '7e',
22611         'icirc',
22612         '7f',
22613         'iuml',
22614         '7g',
22615         'eth',
22616         '7h',
22617         'ntilde',
22618         '7i',
22619         'ograve',
22620         '7j',
22621         'oacute',
22622         '7k',
22623         'ocirc',
22624         '7l',
22625         'otilde',
22626         '7m',
22627         'ouml',
22628         '7n',
22629         'divide',
22630         '7o',
22631         'oslash',
22632         '7p',
22633         'ugrave',
22634         '7q',
22635         'uacute',
22636         '7r',
22637         'ucirc',
22638         '7s',
22639         'uuml',
22640         '7t',
22641         'yacute',
22642         '7u',
22643         'thorn',
22644         '7v',
22645         'yuml',
22646         'ci',
22647         'fnof',
22648         'sh',
22649         'Alpha',
22650         'si',
22651         'Beta',
22652         'sj',
22653         'Gamma',
22654         'sk',
22655         'Delta',
22656         'sl',
22657         'Epsilon',
22658         'sm',
22659         'Zeta',
22660         'sn',
22661         'Eta',
22662         'so',
22663         'Theta',
22664         'sp',
22665         'Iota',
22666         'sq',
22667         'Kappa',
22668         'sr',
22669         'Lambda',
22670         'ss',
22671         'Mu',
22672         'st',
22673         'Nu',
22674         'su',
22675         'Xi',
22676         'sv',
22677         'Omicron',
22678         't0',
22679         'Pi',
22680         't1',
22681         'Rho',
22682         't3',
22683         'Sigma',
22684         't4',
22685         'Tau',
22686         't5',
22687         'Upsilon',
22688         't6',
22689         'Phi',
22690         't7',
22691         'Chi',
22692         't8',
22693         'Psi',
22694         't9',
22695         'Omega',
22696         'th',
22697         'alpha',
22698         'ti',
22699         'beta',
22700         'tj',
22701         'gamma',
22702         'tk',
22703         'delta',
22704         'tl',
22705         'epsilon',
22706         'tm',
22707         'zeta',
22708         'tn',
22709         'eta',
22710         'to',
22711         'theta',
22712         'tp',
22713         'iota',
22714         'tq',
22715         'kappa',
22716         'tr',
22717         'lambda',
22718         'ts',
22719         'mu',
22720         'tt',
22721         'nu',
22722         'tu',
22723         'xi',
22724         'tv',
22725         'omicron',
22726         'u0',
22727         'pi',
22728         'u1',
22729         'rho',
22730         'u2',
22731         'sigmaf',
22732         'u3',
22733         'sigma',
22734         'u4',
22735         'tau',
22736         'u5',
22737         'upsilon',
22738         'u6',
22739         'phi',
22740         'u7',
22741         'chi',
22742         'u8',
22743         'psi',
22744         'u9',
22745         'omega',
22746         'uh',
22747         'thetasym',
22748         'ui',
22749         'upsih',
22750         'um',
22751         'piv',
22752         '812',
22753         'bull',
22754         '816',
22755         'hellip',
22756         '81i',
22757         'prime',
22758         '81j',
22759         'Prime',
22760         '81u',
22761         'oline',
22762         '824',
22763         'frasl',
22764         '88o',
22765         'weierp',
22766         '88h',
22767         'image',
22768         '88s',
22769         'real',
22770         '892',
22771         'trade',
22772         '89l',
22773         'alefsym',
22774         '8cg',
22775         'larr',
22776         '8ch',
22777         'uarr',
22778         '8ci',
22779         'rarr',
22780         '8cj',
22781         'darr',
22782         '8ck',
22783         'harr',
22784         '8dl',
22785         'crarr',
22786         '8eg',
22787         'lArr',
22788         '8eh',
22789         'uArr',
22790         '8ei',
22791         'rArr',
22792         '8ej',
22793         'dArr',
22794         '8ek',
22795         'hArr',
22796         '8g0',
22797         'forall',
22798         '8g2',
22799         'part',
22800         '8g3',
22801         'exist',
22802         '8g5',
22803         'empty',
22804         '8g7',
22805         'nabla',
22806         '8g8',
22807         'isin',
22808         '8g9',
22809         'notin',
22810         '8gb',
22811         'ni',
22812         '8gf',
22813         'prod',
22814         '8gh',
22815         'sum',
22816         '8gi',
22817         'minus',
22818         '8gn',
22819         'lowast',
22820         '8gq',
22821         'radic',
22822         '8gt',
22823         'prop',
22824         '8gu',
22825         'infin',
22826         '8h0',
22827         'ang',
22828         '8h7',
22829         'and',
22830         '8h8',
22831         'or',
22832         '8h9',
22833         'cap',
22834         '8ha',
22835         'cup',
22836         '8hb',
22837         'int',
22838         '8hk',
22839         'there4',
22840         '8hs',
22841         'sim',
22842         '8i5',
22843         'cong',
22844         '8i8',
22845         'asymp',
22846         '8j0',
22847         'ne',
22848         '8j1',
22849         'equiv',
22850         '8j4',
22851         'le',
22852         '8j5',
22853         'ge',
22854         '8k2',
22855         'sub',
22856         '8k3',
22857         'sup',
22858         '8k4',
22859         'nsub',
22860         '8k6',
22861         'sube',
22862         '8k7',
22863         'supe',
22864         '8kl',
22865         'oplus',
22866         '8kn',
22867         'otimes',
22868         '8l5',
22869         'perp',
22870         '8m5',
22871         'sdot',
22872         '8o8',
22873         'lceil',
22874         '8o9',
22875         'rceil',
22876         '8oa',
22877         'lfloor',
22878         '8ob',
22879         'rfloor',
22880         '8p9',
22881         'lang',
22882         '8pa',
22883         'rang',
22884         '9ea',
22885         'loz',
22886         '9j0',
22887         'spades',
22888         '9j3',
22889         'clubs',
22890         '9j5',
22891         'hearts',
22892         '9j6',
22893         'diams',
22894         'ai',
22895         'OElig',
22896         'aj',
22897         'oelig',
22898         'b0',
22899         'Scaron',
22900         'b1',
22901         'scaron',
22902         'bo',
22903         'Yuml',
22904         'm6',
22905         'circ',
22906         'ms',
22907         'tilde',
22908         '802',
22909         'ensp',
22910         '803',
22911         'emsp',
22912         '809',
22913         'thinsp',
22914         '80c',
22915         'zwnj',
22916         '80d',
22917         'zwj',
22918         '80e',
22919         'lrm',
22920         '80f',
22921         'rlm',
22922         '80j',
22923         'ndash',
22924         '80k',
22925         'mdash',
22926         '80o',
22927         'lsquo',
22928         '80p',
22929         'rsquo',
22930         '80q',
22931         'sbquo',
22932         '80s',
22933         'ldquo',
22934         '80t',
22935         'rdquo',
22936         '80u',
22937         'bdquo',
22938         '810',
22939         'dagger',
22940         '811',
22941         'Dagger',
22942         '81g',
22943         'permil',
22944         '81p',
22945         'lsaquo',
22946         '81q',
22947         'rsaquo',
22948         '85c',
22949         'euro'
22950     ],
22951
22952          
22953     /**
22954      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
22955      *
22956      * @method encodeRaw
22957      * @param {String} text Text to encode.
22958      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
22959      * @return {String} Entity encoded text.
22960      */
22961     encodeRaw: function(text, attr)
22962     {
22963         var t = this;
22964         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
22965             return t.baseEntities[chr] || chr;
22966         });
22967     },
22968     /**
22969      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
22970      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
22971      * and is exposed as the DOMUtils.encode function.
22972      *
22973      * @method encodeAllRaw
22974      * @param {String} text Text to encode.
22975      * @return {String} Entity encoded text.
22976      */
22977     encodeAllRaw: function(text) {
22978         var t = this;
22979         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
22980             return t.baseEntities[chr] || chr;
22981         });
22982     },
22983     /**
22984      * Encodes the specified string using numeric entities. The core entities will be
22985      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
22986      *
22987      * @method encodeNumeric
22988      * @param {String} text Text to encode.
22989      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
22990      * @return {String} Entity encoded text.
22991      */
22992     encodeNumeric: function(text, attr) {
22993         var t = this;
22994         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
22995             // Multi byte sequence convert it to a single entity
22996             if (chr.length > 1) {
22997                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
22998             }
22999             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
23000         });
23001     },
23002     /**
23003      * Encodes the specified string using named entities. The core entities will be encoded
23004      * as named ones but all non lower ascii characters will be encoded into named entities.
23005      *
23006      * @method encodeNamed
23007      * @param {String} text Text to encode.
23008      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
23009      * @param {Object} entities Optional parameter with entities to use.
23010      * @return {String} Entity encoded text.
23011      */
23012     encodeNamed: function(text, attr, entities) {
23013         var t = this;
23014         entities = entities || this.namedEntities;
23015         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
23016             return t.baseEntities[chr] || entities[chr] || chr;
23017         });
23018     },
23019     /**
23020      * Returns an encode function based on the name(s) and it's optional entities.
23021      *
23022      * @method getEncodeFunc
23023      * @param {String} name Comma separated list of encoders for example named,numeric.
23024      * @param {String} entities Optional parameter with entities to use instead of the built in set.
23025      * @return {function} Encode function to be used.
23026      */
23027     getEncodeFunc: function(name, entities) {
23028         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
23029         var t = this;
23030         function encodeNamedAndNumeric(text, attr) {
23031             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
23032                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
23033             });
23034         }
23035
23036         function encodeCustomNamed(text, attr) {
23037             return t.encodeNamed(text, attr, entities);
23038         }
23039         // Replace + with , to be compatible with previous TinyMCE versions
23040         name = this.makeMap(name.replace(/\+/g, ','));
23041         // Named and numeric encoder
23042         if (name.named && name.numeric) {
23043             return this.encodeNamedAndNumeric;
23044         }
23045         // Named encoder
23046         if (name.named) {
23047             // Custom names
23048             if (entities) {
23049                 return encodeCustomNamed;
23050             }
23051             return this.encodeNamed;
23052         }
23053         // Numeric
23054         if (name.numeric) {
23055             return this.encodeNumeric;
23056         }
23057         // Raw encoder
23058         return this.encodeRaw;
23059     },
23060     /**
23061      * Decodes the specified string, this will replace entities with raw UTF characters.
23062      *
23063      * @method decode
23064      * @param {String} text Text to entity decode.
23065      * @return {String} Entity decoded string.
23066      */
23067     decode: function(text)
23068     {
23069         var  t = this;
23070         return text.replace(this.entityRegExp, function(all, numeric) {
23071             if (numeric) {
23072                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
23073                 // Support upper UTF
23074                 if (numeric > 65535) {
23075                     numeric -= 65536;
23076                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
23077                 }
23078                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
23079             }
23080             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
23081         });
23082     },
23083     nativeDecode : function (text) {
23084         return text;
23085     },
23086     makeMap : function (items, delim, map) {
23087                 var i;
23088                 items = items || [];
23089                 delim = delim || ',';
23090                 if (typeof items == "string") {
23091                         items = items.split(delim);
23092                 }
23093                 map = map || {};
23094                 i = items.length;
23095                 while (i--) {
23096                         map[items[i]] = {};
23097                 }
23098                 return map;
23099         }
23100 };
23101     
23102     
23103     
23104 Roo.htmleditor.TidyEntities.init();
23105 /**
23106  * @class Roo.htmleditor.KeyEnter
23107  * Handle Enter press..
23108  * @cfg {Roo.HtmlEditorCore} core the editor.
23109  * @constructor
23110  * Create a new Filter.
23111  * @param {Object} config Configuration options
23112  */
23113
23114
23115
23116
23117
23118 Roo.htmleditor.KeyEnter = function(cfg) {
23119     Roo.apply(this, cfg);
23120     // this does not actually call walk as it's really just a abstract class
23121  
23122     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
23123 }
23124
23125 //Roo.htmleditor.KeyEnter.i = 0;
23126
23127
23128 Roo.htmleditor.KeyEnter.prototype = {
23129     
23130     core : false,
23131     
23132     keypress : function(e)
23133     {
23134         if (e.charCode != 13 && e.charCode != 10) {
23135             Roo.log([e.charCode,e]);
23136             return true;
23137         }
23138         e.preventDefault();
23139         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
23140         var doc = this.core.doc;
23141           //add a new line
23142        
23143     
23144         var sel = this.core.getSelection();
23145         var range = sel.getRangeAt(0);
23146         var n = range.commonAncestorContainer;
23147         var pc = range.closest([ 'ol', 'ul']);
23148         var pli = range.closest('li');
23149         if (!pc || e.ctrlKey) {
23150             sel.insertNode('br', 'after'); 
23151          
23152             this.core.undoManager.addEvent();
23153             this.core.fireEditorEvent(e);
23154             return false;
23155         }
23156         
23157         // deal with <li> insetion
23158         if (pli.innerText.trim() == '' &&
23159             pli.previousSibling &&
23160             pli.previousSibling.nodeName == 'LI' &&
23161             pli.previousSibling.innerText.trim() ==  '') {
23162             pli.parentNode.removeChild(pli.previousSibling);
23163             sel.cursorAfter(pc);
23164             this.core.undoManager.addEvent();
23165             this.core.fireEditorEvent(e);
23166             return false;
23167         }
23168     
23169         var li = doc.createElement('LI');
23170         li.innerHTML = '&nbsp;';
23171         if (!pli || !pli.firstSibling) {
23172             pc.appendChild(li);
23173         } else {
23174             pli.parentNode.insertBefore(li, pli.firstSibling);
23175         }
23176         sel.cursorText (li.firstChild);
23177       
23178         this.core.undoManager.addEvent();
23179         this.core.fireEditorEvent(e);
23180
23181         return false;
23182         
23183     
23184         
23185         
23186          
23187     }
23188 };
23189      
23190 /**
23191  * @class Roo.htmleditor.Block
23192  * Base class for html editor blocks - do not use it directly .. extend it..
23193  * @cfg {DomElement} node The node to apply stuff to.
23194  * @cfg {String} friendly_name the name that appears in the context bar about this block
23195  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
23196  
23197  * @constructor
23198  * Create a new Filter.
23199  * @param {Object} config Configuration options
23200  */
23201
23202 Roo.htmleditor.Block  = function(cfg)
23203 {
23204     // do nothing .. should not be called really.
23205 }
23206 /**
23207  * factory method to get the block from an element (using cache if necessary)
23208  * @static
23209  * @param {HtmlElement} the dom element
23210  */
23211 Roo.htmleditor.Block.factory = function(node)
23212 {
23213     var cc = Roo.htmleditor.Block.cache;
23214     var id = Roo.get(node).id;
23215     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
23216         Roo.htmleditor.Block.cache[id].readElement(node);
23217         return Roo.htmleditor.Block.cache[id];
23218     }
23219     var db  = node.getAttribute('data-block');
23220     if (!db) {
23221         db = node.nodeName.toLowerCase().toUpperCaseFirst();
23222     }
23223     var cls = Roo.htmleditor['Block' + db];
23224     if (typeof(cls) == 'undefined') {
23225         //Roo.log(node.getAttribute('data-block'));
23226         Roo.log("OOps missing block : " + 'Block' + db);
23227         return false;
23228     }
23229     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
23230     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
23231 };
23232
23233 /**
23234  * initalize all Elements from content that are 'blockable'
23235  * @static
23236  * @param the body element
23237  */
23238 Roo.htmleditor.Block.initAll = function(body, type)
23239 {
23240     if (typeof(type) == 'undefined') {
23241         var ia = Roo.htmleditor.Block.initAll;
23242         ia(body,'table');
23243         ia(body,'td');
23244         ia(body,'figure');
23245         return;
23246     }
23247     Roo.each(Roo.get(body).query(type), function(e) {
23248         Roo.htmleditor.Block.factory(e);    
23249     },this);
23250 };
23251 // question goes here... do we need to clear out this cache sometimes?
23252 // or show we make it relivant to the htmleditor.
23253 Roo.htmleditor.Block.cache = {};
23254
23255 Roo.htmleditor.Block.prototype = {
23256     
23257     node : false,
23258     
23259      // used by context menu
23260     friendly_name : 'Based Block',
23261     
23262     // text for button to delete this element
23263     deleteTitle : false,
23264     
23265     context : false,
23266     /**
23267      * Update a node with values from this object
23268      * @param {DomElement} node
23269      */
23270     updateElement : function(node)
23271     {
23272         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
23273     },
23274      /**
23275      * convert to plain HTML for calling insertAtCursor..
23276      */
23277     toHTML : function()
23278     {
23279         return Roo.DomHelper.markup(this.toObject());
23280     },
23281     /**
23282      * used by readEleemnt to extract data from a node
23283      * may need improving as it's pretty basic
23284      
23285      * @param {DomElement} node
23286      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
23287      * @param {String} attribute (use html - for contents, or style for using next param as style)
23288      * @param {String} style the style property - eg. text-align
23289      */
23290     getVal : function(node, tag, attr, style)
23291     {
23292         var n = node;
23293         if (tag !== true && n.tagName != tag.toUpperCase()) {
23294             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
23295             // but kiss for now.
23296             n = node.getElementsByTagName(tag).item(0);
23297         }
23298         if (!n) {
23299             return '';
23300         }
23301         if (attr == 'html') {
23302             return n.innerHTML;
23303         }
23304         if (attr == 'style') {
23305             return n.style[style]; 
23306         }
23307         
23308         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
23309             
23310     },
23311     /**
23312      * create a DomHelper friendly object - for use with 
23313      * Roo.DomHelper.markup / overwrite / etc..
23314      * (override this)
23315      */
23316     toObject : function()
23317     {
23318         return {};
23319     },
23320       /**
23321      * Read a node that has a 'data-block' property - and extract the values from it.
23322      * @param {DomElement} node - the node
23323      */
23324     readElement : function(node)
23325     {
23326         
23327     } 
23328     
23329     
23330 };
23331
23332  
23333
23334 /**
23335  * @class Roo.htmleditor.BlockFigure
23336  * Block that has an image and a figcaption
23337  * @cfg {String} image_src the url for the image
23338  * @cfg {String} align (left|right) alignment for the block default left
23339  * @cfg {String} caption the text to appear below  (and in the alt tag)
23340  * @cfg {String} caption_display (block|none) display or not the caption
23341  * @cfg {String|number} image_width the width of the image number or %?
23342  * @cfg {String|number} image_height the height of the image number or %?
23343  * 
23344  * @constructor
23345  * Create a new Filter.
23346  * @param {Object} config Configuration options
23347  */
23348
23349 Roo.htmleditor.BlockFigure = function(cfg)
23350 {
23351     if (cfg.node) {
23352         this.readElement(cfg.node);
23353         this.updateElement(cfg.node);
23354     }
23355     Roo.apply(this, cfg);
23356 }
23357 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
23358  
23359     
23360     // setable values.
23361     image_src: '',
23362     align: 'center',
23363     caption : '',
23364     caption_display : 'block',
23365     width : '100%',
23366     cls : '',
23367     href: '',
23368     video_url : '',
23369     
23370     // margin: '2%', not used
23371     
23372     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
23373
23374     
23375     // used by context menu
23376     friendly_name : 'Image with caption',
23377     deleteTitle : "Delete Image and Caption",
23378     
23379     contextMenu : function(toolbar)
23380     {
23381         
23382         var block = function() {
23383             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
23384         };
23385         
23386         
23387         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
23388         
23389         var syncValue = toolbar.editorcore.syncValue;
23390         
23391         var fields = {};
23392         
23393         return [
23394              {
23395                 xtype : 'TextItem',
23396                 text : "Source: ",
23397                 xns : rooui.Toolbar  //Boostrap?
23398             },
23399             {
23400                 xtype : 'Button',
23401                 text: 'Change Image URL',
23402                  
23403                 listeners : {
23404                     click: function (btn, state)
23405                     {
23406                         var b = block();
23407                         
23408                         Roo.MessageBox.show({
23409                             title : "Image Source URL",
23410                             msg : "Enter the url for the image",
23411                             buttons: Roo.MessageBox.OKCANCEL,
23412                             fn: function(btn, val){
23413                                 if (btn != 'ok') {
23414                                     return;
23415                                 }
23416                                 b.image_src = val;
23417                                 b.updateElement();
23418                                 syncValue();
23419                                 toolbar.editorcore.onEditorEvent();
23420                             },
23421                             minWidth:250,
23422                             prompt:true,
23423                             //multiline: multiline,
23424                             modal : true,
23425                             value : b.image_src
23426                         });
23427                     }
23428                 },
23429                 xns : rooui.Toolbar
23430             },
23431          
23432             {
23433                 xtype : 'Button',
23434                 text: 'Change Link URL',
23435                  
23436                 listeners : {
23437                     click: function (btn, state)
23438                     {
23439                         var b = block();
23440                         
23441                         Roo.MessageBox.show({
23442                             title : "Link URL",
23443                             msg : "Enter the url for the link - leave blank to have no link",
23444                             buttons: Roo.MessageBox.OKCANCEL,
23445                             fn: function(btn, val){
23446                                 if (btn != 'ok') {
23447                                     return;
23448                                 }
23449                                 b.href = val;
23450                                 b.updateElement();
23451                                 syncValue();
23452                                 toolbar.editorcore.onEditorEvent();
23453                             },
23454                             minWidth:250,
23455                             prompt:true,
23456                             //multiline: multiline,
23457                             modal : true,
23458                             value : b.href
23459                         });
23460                     }
23461                 },
23462                 xns : rooui.Toolbar
23463             },
23464             {
23465                 xtype : 'Button',
23466                 text: 'Show Video URL',
23467                  
23468                 listeners : {
23469                     click: function (btn, state)
23470                     {
23471                         Roo.MessageBox.alert("Video URL",
23472                             block().video_url == '' ? 'This image is not linked ot a video' :
23473                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
23474                     }
23475                 },
23476                 xns : rooui.Toolbar
23477             },
23478             
23479             
23480             {
23481                 xtype : 'TextItem',
23482                 text : "Width: ",
23483                 xns : rooui.Toolbar  //Boostrap?
23484             },
23485             {
23486                 xtype : 'ComboBox',
23487                 allowBlank : false,
23488                 displayField : 'val',
23489                 editable : true,
23490                 listWidth : 100,
23491                 triggerAction : 'all',
23492                 typeAhead : true,
23493                 valueField : 'val',
23494                 width : 70,
23495                 name : 'width',
23496                 listeners : {
23497                     select : function (combo, r, index)
23498                     {
23499                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23500                         var b = block();
23501                         b.width = r.get('val');
23502                         b.updateElement();
23503                         syncValue();
23504                         toolbar.editorcore.onEditorEvent();
23505                     }
23506                 },
23507                 xns : rooui.form,
23508                 store : {
23509                     xtype : 'SimpleStore',
23510                     data : [
23511                         ['auto'],
23512                         ['50%'],
23513                         ['100%']
23514                     ],
23515                     fields : [ 'val'],
23516                     xns : Roo.data
23517                 }
23518             },
23519             {
23520                 xtype : 'TextItem',
23521                 text : "Align: ",
23522                 xns : rooui.Toolbar  //Boostrap?
23523             },
23524             {
23525                 xtype : 'ComboBox',
23526                 allowBlank : false,
23527                 displayField : 'val',
23528                 editable : true,
23529                 listWidth : 100,
23530                 triggerAction : 'all',
23531                 typeAhead : true,
23532                 valueField : 'val',
23533                 width : 70,
23534                 name : 'align',
23535                 listeners : {
23536                     select : function (combo, r, index)
23537                     {
23538                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23539                         var b = block();
23540                         b.align = r.get('val');
23541                         b.updateElement();
23542                         syncValue();
23543                         toolbar.editorcore.onEditorEvent();
23544                     }
23545                 },
23546                 xns : rooui.form,
23547                 store : {
23548                     xtype : 'SimpleStore',
23549                     data : [
23550                         ['left'],
23551                         ['right'],
23552                         ['center']
23553                     ],
23554                     fields : [ 'val'],
23555                     xns : Roo.data
23556                 }
23557             },
23558             
23559             
23560             {
23561                 xtype : 'Button',
23562                 text: 'Hide Caption',
23563                 name : 'caption_display',
23564                 pressed : false,
23565                 enableToggle : true,
23566                 setValue : function(v) {
23567                     this.toggle(v == 'block' ? false : true);
23568                 },
23569                 listeners : {
23570                     toggle: function (btn, state)
23571                     {
23572                         var b  = block();
23573                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
23574                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
23575                         b.updateElement();
23576                         syncValue();
23577                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23578                         toolbar.editorcore.onEditorEvent();
23579                     }
23580                 },
23581                 xns : rooui.Toolbar
23582             }
23583         ];
23584         
23585     },
23586     /**
23587      * create a DomHelper friendly object - for use with
23588      * Roo.DomHelper.markup / overwrite / etc..
23589      */
23590     toObject : function()
23591     {
23592         var d = document.createElement('div');
23593         d.innerHTML = this.caption;
23594         
23595         var m = this.width == '50%' && this.align == 'center' ? '0 auto' : 0; 
23596         
23597         var img =   {
23598             tag : 'img',
23599             contenteditable : 'false',
23600             src : this.image_src,
23601             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
23602             style: {
23603                 width : 'auto',
23604                 'max-width': '100%',
23605                 margin : '0px' 
23606                 
23607                 
23608             }
23609         };
23610         /*
23611         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
23612                     '<a href="{2}">' + 
23613                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
23614                     '</a>' + 
23615                 '</div>',
23616         */
23617                 
23618         if (this.href.length > 0) {
23619             img = {
23620                 tag : 'a',
23621                 href: this.href,
23622                 contenteditable : 'true',
23623                 cn : [
23624                     img
23625                 ]
23626             };
23627         }
23628         
23629         
23630         if (this.video_url.length > 0) {
23631             img = {
23632                 tag : 'div',
23633                 cls : this.cls,
23634                 frameborder : 0,
23635                 allowfullscreen : true,
23636                 width : 420,  // these are for video tricks - that we replace the outer
23637                 height : 315,
23638                 src : this.video_url,
23639                 cn : [
23640                     img
23641                 ]
23642             };
23643         }
23644         
23645         return  {
23646             tag: 'figure',
23647             'data-block' : 'Figure',
23648             contenteditable : 'false',
23649             style : {
23650                 display: 'block',
23651                 float :  this.align ,
23652                 'max-width':  this.width,
23653                 width : 'auto',
23654                 margin:  m,
23655                 padding: '10px'
23656                 
23657             },
23658            
23659             
23660             align : this.align,
23661             cn : [
23662                 img,
23663               
23664                 {
23665                     tag: 'figcaption',
23666                     contenteditable : true,
23667                     style : {
23668                         'text-align': 'left',
23669                         'margin-top' : '16px',
23670                         'font-size' : '16px',
23671                         'line-height' : '24px',
23672                         'font-style': 'italic',
23673                         display : this.caption_display
23674                     },
23675                     cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
23676                     html : this.caption
23677                     
23678                 }
23679             ]
23680         };
23681          
23682     },
23683     
23684     readElement : function(node)
23685     {
23686         // this should not really come from the link...
23687         this.video_url = this.getVal(node, 'div', 'src');
23688         this.cls = this.getVal(node, 'div', 'class');
23689         this.href = this.getVal(node, 'a', 'href');
23690         
23691         this.image_src = this.getVal(node, 'img', 'src');
23692          
23693         this.align = this.getVal(node, 'figure', 'align');
23694         this.caption = this.getVal(node, 'figcaption', 'html');
23695         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
23696         this.width = this.getVal(node, 'figure', 'style', 'max-width');
23697         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
23698         
23699     },
23700     removeNode : function()
23701     {
23702         return this.node;
23703     }
23704     
23705   
23706    
23707      
23708     
23709     
23710     
23711     
23712 })
23713
23714  
23715
23716 /**
23717  * @class Roo.htmleditor.BlockTable
23718  * Block that manages a table
23719  * 
23720  * @constructor
23721  * Create a new Filter.
23722  * @param {Object} config Configuration options
23723  */
23724
23725 Roo.htmleditor.BlockTable = function(cfg)
23726 {
23727     if (cfg.node) {
23728         this.readElement(cfg.node);
23729         this.updateElement(cfg.node);
23730     }
23731     Roo.apply(this, cfg);
23732     if (!cfg.node) {
23733         this.rows = [];
23734         for(var r = 0; r < this.no_row; r++) {
23735             this.rows[r] = [];
23736             for(var c = 0; c < this.no_col; c++) {
23737                 this.rows[r][c] = this.emptyCell();
23738             }
23739         }
23740     }
23741     
23742     
23743 }
23744 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
23745  
23746     rows : false,
23747     no_col : 1,
23748     no_row : 1,
23749     
23750     
23751     width: '100%',
23752     
23753     // used by context menu
23754     friendly_name : 'Table',
23755     deleteTitle : 'Delete Table',
23756     // context menu is drawn once..
23757     
23758     contextMenu : function(toolbar)
23759     {
23760         
23761         var block = function() {
23762             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
23763         };
23764         
23765         
23766         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
23767         
23768         var syncValue = toolbar.editorcore.syncValue;
23769         
23770         var fields = {};
23771         
23772         return [
23773             {
23774                 xtype : 'TextItem',
23775                 text : "Width: ",
23776                 xns : rooui.Toolbar  //Boostrap?
23777             },
23778             {
23779                 xtype : 'ComboBox',
23780                 allowBlank : false,
23781                 displayField : 'val',
23782                 editable : true,
23783                 listWidth : 100,
23784                 triggerAction : 'all',
23785                 typeAhead : true,
23786                 valueField : 'val',
23787                 width : 100,
23788                 name : 'width',
23789                 listeners : {
23790                     select : function (combo, r, index)
23791                     {
23792                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23793                         var b = block();
23794                         b.width = r.get('val');
23795                         b.updateElement();
23796                         syncValue();
23797                         toolbar.editorcore.onEditorEvent();
23798                     }
23799                 },
23800                 xns : rooui.form,
23801                 store : {
23802                     xtype : 'SimpleStore',
23803                     data : [
23804                         ['100%'],
23805                         ['auto']
23806                     ],
23807                     fields : [ 'val'],
23808                     xns : Roo.data
23809                 }
23810             },
23811             // -------- Cols
23812             
23813             {
23814                 xtype : 'TextItem',
23815                 text : "Columns: ",
23816                 xns : rooui.Toolbar  //Boostrap?
23817             },
23818          
23819             {
23820                 xtype : 'Button',
23821                 text: '-',
23822                 listeners : {
23823                     click : function (_self, e)
23824                     {
23825                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23826                         block().removeColumn();
23827                         syncValue();
23828                         toolbar.editorcore.onEditorEvent();
23829                     }
23830                 },
23831                 xns : rooui.Toolbar
23832             },
23833             {
23834                 xtype : 'Button',
23835                 text: '+',
23836                 listeners : {
23837                     click : function (_self, e)
23838                     {
23839                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23840                         block().addColumn();
23841                         syncValue();
23842                         toolbar.editorcore.onEditorEvent();
23843                     }
23844                 },
23845                 xns : rooui.Toolbar
23846             },
23847             // -------- ROWS
23848             {
23849                 xtype : 'TextItem',
23850                 text : "Rows: ",
23851                 xns : rooui.Toolbar  //Boostrap?
23852             },
23853          
23854             {
23855                 xtype : 'Button',
23856                 text: '-',
23857                 listeners : {
23858                     click : function (_self, e)
23859                     {
23860                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
23861                         block().removeRow();
23862                         syncValue();
23863                         toolbar.editorcore.onEditorEvent();
23864                     }
23865                 },
23866                 xns : rooui.Toolbar
23867             },
23868             {
23869                 xtype : 'Button',
23870                 text: '+',
23871                 listeners : {
23872                     click : function (_self, e)
23873                     {
23874                         block().addRow();
23875                         syncValue();
23876                         toolbar.editorcore.onEditorEvent();
23877                     }
23878                 },
23879                 xns : rooui.Toolbar
23880             },
23881             // -------- ROWS
23882             {
23883                 xtype : 'Button',
23884                 text: 'Reset Column Widths',
23885                 listeners : {
23886                     
23887                     click : function (_self, e)
23888                     {
23889                         block().resetWidths();
23890                         syncValue();
23891                         toolbar.editorcore.onEditorEvent();
23892                     }
23893                 },
23894                 xns : rooui.Toolbar
23895             } 
23896             
23897             
23898             
23899         ];
23900         
23901     },
23902     
23903     
23904   /**
23905      * create a DomHelper friendly object - for use with
23906      * Roo.DomHelper.markup / overwrite / etc..
23907      * ?? should it be called with option to hide all editing features?
23908      */
23909     toObject : function()
23910     {
23911         
23912         var ret = {
23913             tag : 'table',
23914             contenteditable : 'false', // this stops cell selection from picking the table.
23915             'data-block' : 'Table',
23916             style : {
23917                 width:  this.width,
23918                 border : 'solid 1px #000', // ??? hard coded?
23919                 'border-collapse' : 'collapse' 
23920             },
23921             cn : [
23922                 { tag : 'tbody' , cn : [] }
23923             ]
23924         };
23925         
23926         // do we have a head = not really 
23927         var ncols = 0;
23928         Roo.each(this.rows, function( row ) {
23929             var tr = {
23930                 tag: 'tr',
23931                 style : {
23932                     margin: '6px',
23933                     border : 'solid 1px #000',
23934                     textAlign : 'left' 
23935                 },
23936                 cn : [ ]
23937             };
23938             
23939             ret.cn[0].cn.push(tr);
23940             // does the row have any properties? ?? height?
23941             var nc = 0;
23942             Roo.each(row, function( cell ) {
23943                 
23944                 var td = {
23945                     tag : 'td',
23946                     contenteditable :  'true',
23947                     'data-block' : 'Td',
23948                     html : cell.html,
23949                     style : cell.style
23950                 };
23951                 if (cell.colspan > 1) {
23952                     td.colspan = cell.colspan ;
23953                     nc += cell.colspan;
23954                 } else {
23955                     nc++;
23956                 }
23957                 if (cell.rowspan > 1) {
23958                     td.rowspan = cell.rowspan ;
23959                 }
23960                 
23961                 
23962                 // widths ?
23963                 tr.cn.push(td);
23964                     
23965                 
23966             }, this);
23967             ncols = Math.max(nc, ncols);
23968             
23969             
23970         }, this);
23971         // add the header row..
23972         
23973         ncols++;
23974          
23975         
23976         return ret;
23977          
23978     },
23979     
23980     readElement : function(node)
23981     {
23982         node  = node ? node : this.node ;
23983         this.width = this.getVal(node, true, 'style', 'width') || '100%';
23984         
23985         this.rows = [];
23986         this.no_row = 0;
23987         var trs = Array.from(node.rows);
23988         trs.forEach(function(tr) {
23989             var row =  [];
23990             this.rows.push(row);
23991             
23992             this.no_row++;
23993             var no_column = 0;
23994             Array.from(tr.cells).forEach(function(td) {
23995                 
23996                 var add = {
23997                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
23998                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
23999                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
24000                     html : td.innerHTML
24001                 };
24002                 no_column += add.colspan;
24003                      
24004                 
24005                 row.push(add);
24006                 
24007                 
24008             },this);
24009             this.no_col = Math.max(this.no_col, no_column);
24010             
24011             
24012         },this);
24013         
24014         
24015     },
24016     normalizeRows: function()
24017     {
24018         var ret= [];
24019         var rid = -1;
24020         this.rows.forEach(function(row) {
24021             rid++;
24022             ret[rid] = [];
24023             row = this.normalizeRow(row);
24024             var cid = 0;
24025             row.forEach(function(c) {
24026                 while (typeof(ret[rid][cid]) != 'undefined') {
24027                     cid++;
24028                 }
24029                 if (typeof(ret[rid]) == 'undefined') {
24030                     ret[rid] = [];
24031                 }
24032                 ret[rid][cid] = c;
24033                 c.row = rid;
24034                 c.col = cid;
24035                 if (c.rowspan < 2) {
24036                     return;
24037                 }
24038                 
24039                 for(var i = 1 ;i < c.rowspan; i++) {
24040                     if (typeof(ret[rid+i]) == 'undefined') {
24041                         ret[rid+i] = [];
24042                     }
24043                     ret[rid+i][cid] = c;
24044                 }
24045             });
24046         }, this);
24047         return ret;
24048     
24049     },
24050     
24051     normalizeRow: function(row)
24052     {
24053         var ret= [];
24054         row.forEach(function(c) {
24055             if (c.colspan < 2) {
24056                 ret.push(c);
24057                 return;
24058             }
24059             for(var i =0 ;i < c.colspan; i++) {
24060                 ret.push(c);
24061             }
24062         });
24063         return ret;
24064     
24065     },
24066     
24067     deleteColumn : function(sel)
24068     {
24069         if (!sel || sel.type != 'col') {
24070             return;
24071         }
24072         if (this.no_col < 2) {
24073             return;
24074         }
24075         
24076         this.rows.forEach(function(row) {
24077             var cols = this.normalizeRow(row);
24078             var col = cols[sel.col];
24079             if (col.colspan > 1) {
24080                 col.colspan --;
24081             } else {
24082                 row.remove(col);
24083             }
24084             
24085         }, this);
24086         this.no_col--;
24087         
24088     },
24089     removeColumn : function()
24090     {
24091         this.deleteColumn({
24092             type: 'col',
24093             col : this.no_col-1
24094         });
24095         this.updateElement();
24096     },
24097     
24098      
24099     addColumn : function()
24100     {
24101         
24102         this.rows.forEach(function(row) {
24103             row.push(this.emptyCell());
24104            
24105         }, this);
24106         this.updateElement();
24107     },
24108     
24109     deleteRow : function(sel)
24110     {
24111         if (!sel || sel.type != 'row') {
24112             return;
24113         }
24114         
24115         if (this.no_row < 2) {
24116             return;
24117         }
24118         
24119         var rows = this.normalizeRows();
24120         
24121         
24122         rows[sel.row].forEach(function(col) {
24123             if (col.rowspan > 1) {
24124                 col.rowspan--;
24125             } else {
24126                 col.remove = 1; // flage it as removed.
24127             }
24128             
24129         }, this);
24130         var newrows = [];
24131         this.rows.forEach(function(row) {
24132             newrow = [];
24133             row.forEach(function(c) {
24134                 if (typeof(c.remove) == 'undefined') {
24135                     newrow.push(c);
24136                 }
24137                 
24138             });
24139             if (newrow.length > 0) {
24140                 newrows.push(row);
24141             }
24142         });
24143         this.rows =  newrows;
24144         
24145         
24146         
24147         this.no_row--;
24148         this.updateElement();
24149         
24150     },
24151     removeRow : function()
24152     {
24153         this.deleteRow({
24154             type: 'row',
24155             row : this.no_row-1
24156         });
24157         
24158     },
24159     
24160      
24161     addRow : function()
24162     {
24163         
24164         var row = [];
24165         for (var i = 0; i < this.no_col; i++ ) {
24166             
24167             row.push(this.emptyCell());
24168            
24169         }
24170         this.rows.push(row);
24171         this.updateElement();
24172         
24173     },
24174      
24175     // the default cell object... at present...
24176     emptyCell : function() {
24177         return (new Roo.htmleditor.BlockTd({})).toObject();
24178         
24179      
24180     },
24181     
24182     removeNode : function()
24183     {
24184         return this.node;
24185     },
24186     
24187     
24188     
24189     resetWidths : function()
24190     {
24191         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
24192             var nn = Roo.htmleditor.Block.factory(n);
24193             nn.width = '';
24194             nn.updateElement(n);
24195         });
24196     }
24197     
24198     
24199     
24200     
24201 })
24202
24203 /**
24204  *
24205  * editing a TD?
24206  *
24207  * since selections really work on the table cell, then editing really should work from there
24208  *
24209  * The original plan was to support merging etc... - but that may not be needed yet..
24210  *
24211  * So this simple version will support:
24212  *   add/remove cols
24213  *   adjust the width +/-
24214  *   reset the width...
24215  *   
24216  *
24217  */
24218
24219
24220  
24221
24222 /**
24223  * @class Roo.htmleditor.BlockTable
24224  * Block that manages a table
24225  * 
24226  * @constructor
24227  * Create a new Filter.
24228  * @param {Object} config Configuration options
24229  */
24230
24231 Roo.htmleditor.BlockTd = function(cfg)
24232 {
24233     if (cfg.node) {
24234         this.readElement(cfg.node);
24235         this.updateElement(cfg.node);
24236     }
24237     Roo.apply(this, cfg);
24238      
24239     
24240     
24241 }
24242 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
24243  
24244     node : false,
24245     
24246     width: '',
24247     textAlign : 'left',
24248     valign : 'top',
24249     
24250     colspan : 1,
24251     rowspan : 1,
24252     
24253     
24254     // used by context menu
24255     friendly_name : 'Table Cell',
24256     deleteTitle : false, // use our customer delete
24257     
24258     // context menu is drawn once..
24259     
24260     contextMenu : function(toolbar)
24261     {
24262         
24263         var cell = function() {
24264             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
24265         };
24266         
24267         var table = function() {
24268             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
24269         };
24270         
24271         var lr = false;
24272         var saveSel = function()
24273         {
24274             lr = toolbar.editorcore.getSelection().getRangeAt(0);
24275         }
24276         var restoreSel = function()
24277         {
24278             if (lr) {
24279                 (function() {
24280                     toolbar.editorcore.focus();
24281                     var cr = toolbar.editorcore.getSelection();
24282                     cr.removeAllRanges();
24283                     cr.addRange(lr);
24284                     toolbar.editorcore.onEditorEvent();
24285                 }).defer(10, this);
24286                 
24287                 
24288             }
24289         }
24290         
24291         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
24292         
24293         var syncValue = toolbar.editorcore.syncValue;
24294         
24295         var fields = {};
24296         
24297         return [
24298             {
24299                 xtype : 'Button',
24300                 text : 'Edit Table',
24301                 listeners : {
24302                     click : function() {
24303                         var t = toolbar.tb.selectedNode.closest('table');
24304                         toolbar.editorcore.selectNode(t);
24305                         toolbar.editorcore.onEditorEvent();                        
24306                     }
24307                 }
24308                 
24309             },
24310               
24311            
24312              
24313             {
24314                 xtype : 'TextItem',
24315                 text : "Column Width: ",
24316                  xns : rooui.Toolbar 
24317                
24318             },
24319             {
24320                 xtype : 'Button',
24321                 text: '-',
24322                 listeners : {
24323                     click : function (_self, e)
24324                     {
24325                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24326                         cell().shrinkColumn();
24327                         syncValue();
24328                          toolbar.editorcore.onEditorEvent();
24329                     }
24330                 },
24331                 xns : rooui.Toolbar
24332             },
24333             {
24334                 xtype : 'Button',
24335                 text: '+',
24336                 listeners : {
24337                     click : function (_self, e)
24338                     {
24339                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24340                         cell().growColumn();
24341                         syncValue();
24342                         toolbar.editorcore.onEditorEvent();
24343                     }
24344                 },
24345                 xns : rooui.Toolbar
24346             },
24347             
24348             {
24349                 xtype : 'TextItem',
24350                 text : "Vertical Align: ",
24351                 xns : rooui.Toolbar  //Boostrap?
24352             },
24353             {
24354                 xtype : 'ComboBox',
24355                 allowBlank : false,
24356                 displayField : 'val',
24357                 editable : true,
24358                 listWidth : 100,
24359                 triggerAction : 'all',
24360                 typeAhead : true,
24361                 valueField : 'val',
24362                 width : 100,
24363                 name : 'valign',
24364                 listeners : {
24365                     select : function (combo, r, index)
24366                     {
24367                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24368                         var b = cell();
24369                         b.valign = r.get('val');
24370                         b.updateElement();
24371                         syncValue();
24372                         toolbar.editorcore.onEditorEvent();
24373                     }
24374                 },
24375                 xns : rooui.form,
24376                 store : {
24377                     xtype : 'SimpleStore',
24378                     data : [
24379                         ['top'],
24380                         ['middle'],
24381                         ['bottom'] // there are afew more... 
24382                     ],
24383                     fields : [ 'val'],
24384                     xns : Roo.data
24385                 }
24386             },
24387             
24388             {
24389                 xtype : 'TextItem',
24390                 text : "Merge Cells: ",
24391                  xns : rooui.Toolbar 
24392                
24393             },
24394             
24395             
24396             {
24397                 xtype : 'Button',
24398                 text: 'Right',
24399                 listeners : {
24400                     click : function (_self, e)
24401                     {
24402                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24403                         cell().mergeRight();
24404                         //block().growColumn();
24405                         syncValue();
24406                         toolbar.editorcore.onEditorEvent();
24407                     }
24408                 },
24409                 xns : rooui.Toolbar
24410             },
24411              
24412             {
24413                 xtype : 'Button',
24414                 text: 'Below',
24415                 listeners : {
24416                     click : function (_self, e)
24417                     {
24418                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24419                         cell().mergeBelow();
24420                         //block().growColumn();
24421                         syncValue();
24422                         toolbar.editorcore.onEditorEvent();
24423                     }
24424                 },
24425                 xns : rooui.Toolbar
24426             },
24427             {
24428                 xtype : 'TextItem',
24429                 text : "| ",
24430                  xns : rooui.Toolbar 
24431                
24432             },
24433             
24434             {
24435                 xtype : 'Button',
24436                 text: 'Split',
24437                 listeners : {
24438                     click : function (_self, e)
24439                     {
24440                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24441                         cell().split();
24442                         syncValue();
24443                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
24444                         toolbar.editorcore.onEditorEvent();
24445                                              
24446                     }
24447                 },
24448                 xns : rooui.Toolbar
24449             },
24450             {
24451                 xtype : 'Fill',
24452                 xns : rooui.Toolbar 
24453                
24454             },
24455         
24456           
24457             {
24458                 xtype : 'Button',
24459                 text: 'Delete',
24460                  
24461                 xns : rooui.Toolbar,
24462                 menu : {
24463                     xtype : 'Menu',
24464                     xns : rooui.menu,
24465                     items : [
24466                         {
24467                             xtype : 'Item',
24468                             html: 'Column',
24469                             listeners : {
24470                                 click : function (_self, e)
24471                                 {
24472                                     var t = table();
24473                                     
24474                                     cell().deleteColumn();
24475                                     syncValue();
24476                                     toolbar.editorcore.selectNode(t.node);
24477                                     toolbar.editorcore.onEditorEvent();   
24478                                 }
24479                             },
24480                             xns : rooui.menu
24481                         },
24482                         {
24483                             xtype : 'Item',
24484                             html: 'Row',
24485                             listeners : {
24486                                 click : function (_self, e)
24487                                 {
24488                                     var t = table();
24489                                     cell().deleteRow();
24490                                     syncValue();
24491                                     
24492                                     toolbar.editorcore.selectNode(t.node);
24493                                     toolbar.editorcore.onEditorEvent();   
24494                                                          
24495                                 }
24496                             },
24497                             xns : rooui.menu
24498                         },
24499                        {
24500                             xtype : 'Separator',
24501                             xns : rooui.menu
24502                         },
24503                         {
24504                             xtype : 'Item',
24505                             html: 'Table',
24506                             listeners : {
24507                                 click : function (_self, e)
24508                                 {
24509                                     var t = table();
24510                                     var nn = t.node.nextSibling || t.node.previousSibling;
24511                                     t.node.parentNode.removeChild(t.node);
24512                                     if (nn) { 
24513                                         toolbar.editorcore.selectNode(nn, true);
24514                                     }
24515                                     toolbar.editorcore.onEditorEvent();   
24516                                                          
24517                                 }
24518                             },
24519                             xns : rooui.menu
24520                         }
24521                     ]
24522                 }
24523             }
24524             
24525             // align... << fixme
24526             
24527         ];
24528         
24529     },
24530     
24531     
24532   /**
24533      * create a DomHelper friendly object - for use with
24534      * Roo.DomHelper.markup / overwrite / etc..
24535      * ?? should it be called with option to hide all editing features?
24536      */
24537  /**
24538      * create a DomHelper friendly object - for use with
24539      * Roo.DomHelper.markup / overwrite / etc..
24540      * ?? should it be called with option to hide all editing features?
24541      */
24542     toObject : function()
24543     {
24544         
24545         var ret = {
24546             tag : 'td',
24547             contenteditable : 'true', // this stops cell selection from picking the table.
24548             'data-block' : 'Td',
24549             valign : this.valign,
24550             style : {  
24551                 'text-align' :  this.textAlign,
24552                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
24553                 'border-collapse' : 'collapse',
24554                 padding : '6px', // 8 for desktop / 4 for mobile
24555                 'vertical-align': this.valign
24556             },
24557             html : this.html
24558         };
24559         if (this.width != '') {
24560             ret.width = this.width;
24561             ret.style.width = this.width;
24562         }
24563         
24564         
24565         if (this.colspan > 1) {
24566             ret.colspan = this.colspan ;
24567         } 
24568         if (this.rowspan > 1) {
24569             ret.rowspan = this.rowspan ;
24570         }
24571         
24572            
24573         
24574         return ret;
24575          
24576     },
24577     
24578     readElement : function(node)
24579     {
24580         node  = node ? node : this.node ;
24581         this.width = node.style.width;
24582         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
24583         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
24584         this.html = node.innerHTML;
24585         
24586         
24587     },
24588      
24589     // the default cell object... at present...
24590     emptyCell : function() {
24591         return {
24592             colspan :  1,
24593             rowspan :  1,
24594             textAlign : 'left',
24595             html : "&nbsp;" // is this going to be editable now?
24596         };
24597      
24598     },
24599     
24600     removeNode : function()
24601     {
24602         return this.node.closest('table');
24603          
24604     },
24605     
24606     cellData : false,
24607     
24608     colWidths : false,
24609     
24610     toTableArray  : function()
24611     {
24612         var ret = [];
24613         var tab = this.node.closest('tr').closest('table');
24614         Array.from(tab.rows).forEach(function(r, ri){
24615             ret[ri] = [];
24616         });
24617         var rn = 0;
24618         this.colWidths = [];
24619         var all_auto = true;
24620         Array.from(tab.rows).forEach(function(r, ri){
24621             
24622             var cn = 0;
24623             Array.from(r.cells).forEach(function(ce, ci){
24624                 var c =  {
24625                     cell : ce,
24626                     row : rn,
24627                     col: cn,
24628                     colspan : ce.colSpan,
24629                     rowspan : ce.rowSpan
24630                 };
24631                 if (ce.isEqualNode(this.node)) {
24632                     this.cellData = c;
24633                 }
24634                 // if we have been filled up by a row?
24635                 if (typeof(ret[rn][cn]) != 'undefined') {
24636                     while(typeof(ret[rn][cn]) != 'undefined') {
24637                         cn++;
24638                     }
24639                     c.col = cn;
24640                 }
24641                 
24642                 if (typeof(this.colWidths[cn]) == 'undefined') {
24643                     this.colWidths[cn] =   ce.style.width;
24644                     if (this.colWidths[cn] != '') {
24645                         all_auto = false;
24646                     }
24647                 }
24648                 
24649                 
24650                 if (c.colspan < 2 && c.rowspan < 2 ) {
24651                     ret[rn][cn] = c;
24652                     cn++;
24653                     return;
24654                 }
24655                 for(var j = 0; j < c.rowspan; j++) {
24656                     if (typeof(ret[rn+j]) == 'undefined') {
24657                         continue; // we have a problem..
24658                     }
24659                     ret[rn+j][cn] = c;
24660                     for(var i = 0; i < c.colspan; i++) {
24661                         ret[rn+j][cn+i] = c;
24662                     }
24663                 }
24664                 
24665                 cn += c.colspan;
24666             }, this);
24667             rn++;
24668         }, this);
24669         
24670         // initalize widths.?
24671         // either all widths or no widths..
24672         if (all_auto) {
24673             this.colWidths[0] = false; // no widths flag.
24674         }
24675         
24676         
24677         return ret;
24678         
24679     },
24680     
24681     
24682     
24683     
24684     mergeRight: function()
24685     {
24686          
24687         // get the contents of the next cell along..
24688         var tr = this.node.closest('tr');
24689         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
24690         if (i >= tr.childNodes.length - 1) {
24691             return; // no cells on right to merge with.
24692         }
24693         var table = this.toTableArray();
24694         
24695         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
24696             return; // nothing right?
24697         }
24698         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
24699         // right cell - must be same rowspan and on the same row.
24700         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
24701             return; // right hand side is not same rowspan.
24702         }
24703         
24704         
24705         
24706         this.node.innerHTML += ' ' + rc.cell.innerHTML;
24707         tr.removeChild(rc.cell);
24708         this.colspan += rc.colspan;
24709         this.node.setAttribute('colspan', this.colspan);
24710
24711     },
24712     
24713     
24714     mergeBelow : function()
24715     {
24716         var table = this.toTableArray();
24717         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
24718             return; // no row below
24719         }
24720         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
24721             return; // nothing right?
24722         }
24723         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
24724         
24725         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
24726             return; // right hand side is not same rowspan.
24727         }
24728         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
24729         rc.cell.parentNode.removeChild(rc.cell);
24730         this.rowspan += rc.rowspan;
24731         this.node.setAttribute('rowspan', this.rowspan);
24732     },
24733     
24734     split: function()
24735     {
24736         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
24737             return;
24738         }
24739         var table = this.toTableArray();
24740         var cd = this.cellData;
24741         this.rowspan = 1;
24742         this.colspan = 1;
24743         
24744         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
24745             
24746             
24747             
24748             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
24749                 if (r == cd.row && c == cd.col) {
24750                     this.node.removeAttribute('rowspan');
24751                     this.node.removeAttribute('colspan');
24752                     continue;
24753                 }
24754                  
24755                 var ntd = this.node.cloneNode(); // which col/row should be 0..
24756                 ntd.removeAttribute('id'); //
24757                 //ntd.style.width  = '';
24758                 ntd.innerHTML = '';
24759                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
24760             }
24761             
24762         }
24763         this.redrawAllCells(table);
24764         
24765          
24766         
24767     },
24768     
24769     
24770     
24771     redrawAllCells: function(table)
24772     {
24773         
24774          
24775         var tab = this.node.closest('tr').closest('table');
24776         var ctr = tab.rows[0].parentNode;
24777         Array.from(tab.rows).forEach(function(r, ri){
24778             
24779             Array.from(r.cells).forEach(function(ce, ci){
24780                 ce.parentNode.removeChild(ce);
24781             });
24782             r.parentNode.removeChild(r);
24783         });
24784         for(var r = 0 ; r < table.length; r++) {
24785             var re = tab.rows[r];
24786             
24787             var re = tab.ownerDocument.createElement('tr');
24788             ctr.appendChild(re);
24789             for(var c = 0 ; c < table[r].length; c++) {
24790                 if (table[r][c].cell === false) {
24791                     continue;
24792                 }
24793                 
24794                 re.appendChild(table[r][c].cell);
24795                  
24796                 table[r][c].cell = false;
24797             }
24798         }
24799         
24800     },
24801     updateWidths : function(table)
24802     {
24803         for(var r = 0 ; r < table.length; r++) {
24804            
24805             for(var c = 0 ; c < table[r].length; c++) {
24806                 if (table[r][c].cell === false) {
24807                     continue;
24808                 }
24809                 
24810                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
24811                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
24812                     el.width = Math.floor(this.colWidths[c])  +'%';
24813                     el.updateElement(el.node);
24814                 }
24815                 table[r][c].cell = false; // done
24816             }
24817         }
24818     },
24819     normalizeWidths : function(table)
24820     {
24821     
24822         if (this.colWidths[0] === false) {
24823             var nw = 100.0 / this.colWidths.length;
24824             this.colWidths.forEach(function(w,i) {
24825                 this.colWidths[i] = nw;
24826             },this);
24827             return;
24828         }
24829     
24830         var t = 0, missing = [];
24831         
24832         this.colWidths.forEach(function(w,i) {
24833             //if you mix % and
24834             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
24835             var add =  this.colWidths[i];
24836             if (add > 0) {
24837                 t+=add;
24838                 return;
24839             }
24840             missing.push(i);
24841             
24842             
24843         },this);
24844         var nc = this.colWidths.length;
24845         if (missing.length) {
24846             var mult = (nc - missing.length) / (1.0 * nc);
24847             var t = mult * t;
24848             var ew = (100 -t) / (1.0 * missing.length);
24849             this.colWidths.forEach(function(w,i) {
24850                 if (w > 0) {
24851                     this.colWidths[i] = w * mult;
24852                     return;
24853                 }
24854                 
24855                 this.colWidths[i] = ew;
24856             }, this);
24857             // have to make up numbers..
24858              
24859         }
24860         // now we should have all the widths..
24861         
24862     
24863     },
24864     
24865     shrinkColumn : function()
24866     {
24867         var table = this.toTableArray();
24868         this.normalizeWidths(table);
24869         var col = this.cellData.col;
24870         var nw = this.colWidths[col] * 0.8;
24871         if (nw < 5) {
24872             return;
24873         }
24874         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
24875         this.colWidths.forEach(function(w,i) {
24876             if (i == col) {
24877                  this.colWidths[i] = nw;
24878                 return;
24879             }
24880             this.colWidths[i] += otherAdd
24881         }, this);
24882         this.updateWidths(table);
24883          
24884     },
24885     growColumn : function()
24886     {
24887         var table = this.toTableArray();
24888         this.normalizeWidths(table);
24889         var col = this.cellData.col;
24890         var nw = this.colWidths[col] * 1.2;
24891         if (nw > 90) {
24892             return;
24893         }
24894         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
24895         this.colWidths.forEach(function(w,i) {
24896             if (i == col) {
24897                 this.colWidths[i] = nw;
24898                 return;
24899             }
24900             this.colWidths[i] -= otherSub
24901         }, this);
24902         this.updateWidths(table);
24903          
24904     },
24905     deleteRow : function()
24906     {
24907         // delete this rows 'tr'
24908         // if any of the cells in this row have a rowspan > 1 && row!= this row..
24909         // then reduce the rowspan.
24910         var table = this.toTableArray();
24911         // this.cellData.row;
24912         for (var i =0;i< table[this.cellData.row].length ; i++) {
24913             var c = table[this.cellData.row][i];
24914             if (c.row != this.cellData.row) {
24915                 
24916                 c.rowspan--;
24917                 c.cell.setAttribute('rowspan', c.rowspan);
24918                 continue;
24919             }
24920             if (c.rowspan > 1) {
24921                 c.rowspan--;
24922                 c.cell.setAttribute('rowspan', c.rowspan);
24923             }
24924         }
24925         table.splice(this.cellData.row,1);
24926         this.redrawAllCells(table);
24927         
24928     },
24929     deleteColumn : function()
24930     {
24931         var table = this.toTableArray();
24932         
24933         for (var i =0;i< table.length ; i++) {
24934             var c = table[i][this.cellData.col];
24935             if (c.col != this.cellData.col) {
24936                 table[i][this.cellData.col].colspan--;
24937             } else if (c.colspan > 1) {
24938                 c.colspan--;
24939                 c.cell.setAttribute('colspan', c.colspan);
24940             }
24941             table[i].splice(this.cellData.col,1);
24942         }
24943         
24944         this.redrawAllCells(table);
24945     }
24946     
24947     
24948     
24949     
24950 })
24951
24952 //<script type="text/javascript">
24953
24954 /*
24955  * Based  Ext JS Library 1.1.1
24956  * Copyright(c) 2006-2007, Ext JS, LLC.
24957  * LGPL
24958  *
24959  */
24960  
24961 /**
24962  * @class Roo.HtmlEditorCore
24963  * @extends Roo.Component
24964  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
24965  *
24966  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
24967  */
24968
24969 Roo.HtmlEditorCore = function(config){
24970     
24971     
24972     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
24973     
24974     
24975     this.addEvents({
24976         /**
24977          * @event initialize
24978          * Fires when the editor is fully initialized (including the iframe)
24979          * @param {Roo.HtmlEditorCore} this
24980          */
24981         initialize: true,
24982         /**
24983          * @event activate
24984          * Fires when the editor is first receives the focus. Any insertion must wait
24985          * until after this event.
24986          * @param {Roo.HtmlEditorCore} this
24987          */
24988         activate: true,
24989          /**
24990          * @event beforesync
24991          * Fires before the textarea is updated with content from the editor iframe. Return false
24992          * to cancel the sync.
24993          * @param {Roo.HtmlEditorCore} this
24994          * @param {String} html
24995          */
24996         beforesync: true,
24997          /**
24998          * @event beforepush
24999          * Fires before the iframe editor is updated with content from the textarea. Return false
25000          * to cancel the push.
25001          * @param {Roo.HtmlEditorCore} this
25002          * @param {String} html
25003          */
25004         beforepush: true,
25005          /**
25006          * @event sync
25007          * Fires when the textarea is updated with content from the editor iframe.
25008          * @param {Roo.HtmlEditorCore} this
25009          * @param {String} html
25010          */
25011         sync: true,
25012          /**
25013          * @event push
25014          * Fires when the iframe editor is updated with content from the textarea.
25015          * @param {Roo.HtmlEditorCore} this
25016          * @param {String} html
25017          */
25018         push: true,
25019         
25020         /**
25021          * @event editorevent
25022          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
25023          * @param {Roo.HtmlEditorCore} this
25024          */
25025         editorevent: true 
25026          
25027         
25028     });
25029     
25030     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
25031     
25032     // defaults : white / black...
25033     this.applyBlacklists();
25034     
25035     
25036     
25037 };
25038
25039
25040 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
25041
25042
25043      /**
25044      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
25045      */
25046     
25047     owner : false,
25048     
25049      /**
25050      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
25051      *                        Roo.resizable.
25052      */
25053     resizable : false,
25054      /**
25055      * @cfg {Number} height (in pixels)
25056      */   
25057     height: 300,
25058    /**
25059      * @cfg {Number} width (in pixels)
25060      */   
25061     width: 500,
25062      /**
25063      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
25064      *         if you are doing an email editor, this probably needs disabling, it's designed
25065      */
25066     autoClean: true,
25067     
25068     /**
25069      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
25070      */
25071     enableBlocks : true,
25072     /**
25073      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
25074      * 
25075      */
25076     stylesheets: false,
25077      /**
25078      * @cfg {String} language default en - language of text (usefull for rtl languages)
25079      * 
25080      */
25081     language: 'en',
25082     
25083     /**
25084      * @cfg {boolean} allowComments - default false - allow comments in HTML source
25085      *          - by default they are stripped - if you are editing email you may need this.
25086      */
25087     allowComments: false,
25088     // id of frame..
25089     frameId: false,
25090     
25091     // private properties
25092     validationEvent : false,
25093     deferHeight: true,
25094     initialized : false,
25095     activated : false,
25096     sourceEditMode : false,
25097     onFocus : Roo.emptyFn,
25098     iframePad:3,
25099     hideMode:'offsets',
25100     
25101     clearUp: true,
25102     
25103     // blacklist + whitelisted elements..
25104     black: false,
25105     white: false,
25106      
25107     bodyCls : '',
25108
25109     
25110     undoManager : false,
25111     /**
25112      * Protected method that will not generally be called directly. It
25113      * is called when the editor initializes the iframe with HTML contents. Override this method if you
25114      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
25115      */
25116     getDocMarkup : function(){
25117         // body styles..
25118         var st = '';
25119         
25120         // inherit styels from page...?? 
25121         if (this.stylesheets === false) {
25122             
25123             Roo.get(document.head).select('style').each(function(node) {
25124                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
25125             });
25126             
25127             Roo.get(document.head).select('link').each(function(node) { 
25128                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
25129             });
25130             
25131         } else if (!this.stylesheets.length) {
25132                 // simple..
25133                 st = '<style type="text/css">' +
25134                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
25135                    '</style>';
25136         } else {
25137             for (var i in this.stylesheets) {
25138                 if (typeof(this.stylesheets[i]) != 'string') {
25139                     continue;
25140                 }
25141                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
25142             }
25143             
25144         }
25145         
25146         st +=  '<style type="text/css">' +
25147             'IMG { cursor: pointer } ' +
25148         '</style>';
25149         
25150         st += '<meta name="google" content="notranslate">';
25151         
25152         var cls = 'notranslate roo-htmleditor-body';
25153         
25154         if(this.bodyCls.length){
25155             cls += ' ' + this.bodyCls;
25156         }
25157         
25158         return '<html  class="notranslate" translate="no"><head>' + st  +
25159             //<style type="text/css">' +
25160             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
25161             //'</style>' +
25162             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
25163     },
25164
25165     // private
25166     onRender : function(ct, position)
25167     {
25168         var _t = this;
25169         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
25170         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
25171         
25172         
25173         this.el.dom.style.border = '0 none';
25174         this.el.dom.setAttribute('tabIndex', -1);
25175         this.el.addClass('x-hidden hide');
25176         
25177         
25178         
25179         if(Roo.isIE){ // fix IE 1px bogus margin
25180             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
25181         }
25182        
25183         
25184         this.frameId = Roo.id();
25185         
25186          
25187         
25188         var iframe = this.owner.wrap.createChild({
25189             tag: 'iframe',
25190             cls: 'form-control', // bootstrap..
25191             id: this.frameId,
25192             name: this.frameId,
25193             frameBorder : 'no',
25194             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
25195         }, this.el
25196         );
25197         
25198         
25199         this.iframe = iframe.dom;
25200
25201         this.assignDocWin();
25202         
25203         this.doc.designMode = 'on';
25204        
25205         this.doc.open();
25206         this.doc.write(this.getDocMarkup());
25207         this.doc.close();
25208
25209         
25210         var task = { // must defer to wait for browser to be ready
25211             run : function(){
25212                 //console.log("run task?" + this.doc.readyState);
25213                 this.assignDocWin();
25214                 if(this.doc.body || this.doc.readyState == 'complete'){
25215                     try {
25216                         this.doc.designMode="on";
25217                         
25218                     } catch (e) {
25219                         return;
25220                     }
25221                     Roo.TaskMgr.stop(task);
25222                     this.initEditor.defer(10, this);
25223                 }
25224             },
25225             interval : 10,
25226             duration: 10000,
25227             scope: this
25228         };
25229         Roo.TaskMgr.start(task);
25230
25231     },
25232
25233     // private
25234     onResize : function(w, h)
25235     {
25236          Roo.log('resize: ' +w + ',' + h );
25237         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
25238         if(!this.iframe){
25239             return;
25240         }
25241         if(typeof w == 'number'){
25242             
25243             this.iframe.style.width = w + 'px';
25244         }
25245         if(typeof h == 'number'){
25246             
25247             this.iframe.style.height = h + 'px';
25248             if(this.doc){
25249                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
25250             }
25251         }
25252         
25253     },
25254
25255     /**
25256      * Toggles the editor between standard and source edit mode.
25257      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
25258      */
25259     toggleSourceEdit : function(sourceEditMode){
25260         
25261         this.sourceEditMode = sourceEditMode === true;
25262         
25263         if(this.sourceEditMode){
25264  
25265             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
25266             
25267         }else{
25268             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
25269             //this.iframe.className = '';
25270             this.deferFocus();
25271         }
25272         //this.setSize(this.owner.wrap.getSize());
25273         //this.fireEvent('editmodechange', this, this.sourceEditMode);
25274     },
25275
25276     
25277   
25278
25279     /**
25280      * Protected method that will not generally be called directly. If you need/want
25281      * custom HTML cleanup, this is the method you should override.
25282      * @param {String} html The HTML to be cleaned
25283      * return {String} The cleaned HTML
25284      */
25285     cleanHtml : function(html)
25286     {
25287         html = String(html);
25288         if(html.length > 5){
25289             if(Roo.isSafari){ // strip safari nonsense
25290                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
25291             }
25292         }
25293         if(html == '&nbsp;'){
25294             html = '';
25295         }
25296         return html;
25297     },
25298
25299     /**
25300      * HTML Editor -> Textarea
25301      * Protected method that will not generally be called directly. Syncs the contents
25302      * of the editor iframe with the textarea.
25303      */
25304     syncValue : function()
25305     {
25306         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
25307         if(this.initialized){
25308             
25309             this.undoManager.addEvent();
25310
25311             
25312             var bd = (this.doc.body || this.doc.documentElement);
25313            
25314             
25315             var sel = this.win.getSelection();
25316             
25317             var div = document.createElement('div');
25318             div.innerHTML = bd.innerHTML;
25319             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
25320             if (gtx.length > 0) {
25321                 var rm = gtx.item(0).parentNode;
25322                 rm.parentNode.removeChild(rm);
25323             }
25324             
25325            
25326             if (this.enableBlocks) {
25327                 new Roo.htmleditor.FilterBlock({ node : div });
25328             }
25329             //?? tidy?
25330             var tidy = new Roo.htmleditor.TidySerializer({
25331                 inner:  true
25332             });
25333             var html  = tidy.serialize(div);
25334             
25335             
25336             if(Roo.isSafari){
25337                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
25338                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
25339                 if(m && m[1]){
25340                     html = '<div style="'+m[0]+'">' + html + '</div>';
25341                 }
25342             }
25343             html = this.cleanHtml(html);
25344             // fix up the special chars.. normaly like back quotes in word...
25345             // however we do not want to do this with chinese..
25346             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
25347                 
25348                 var cc = match.charCodeAt();
25349
25350                 // Get the character value, handling surrogate pairs
25351                 if (match.length == 2) {
25352                     // It's a surrogate pair, calculate the Unicode code point
25353                     var high = match.charCodeAt(0) - 0xD800;
25354                     var low  = match.charCodeAt(1) - 0xDC00;
25355                     cc = (high * 0x400) + low + 0x10000;
25356                 }  else if (
25357                     (cc >= 0x4E00 && cc < 0xA000 ) ||
25358                     (cc >= 0x3400 && cc < 0x4E00 ) ||
25359                     (cc >= 0xf900 && cc < 0xfb00 )
25360                 ) {
25361                         return match;
25362                 }  
25363          
25364                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
25365                 return "&#" + cc + ";";
25366                 
25367                 
25368             });
25369             
25370             
25371              
25372             if(this.owner.fireEvent('beforesync', this, html) !== false){
25373                 this.el.dom.value = html;
25374                 this.owner.fireEvent('sync', this, html);
25375             }
25376         }
25377     },
25378
25379     /**
25380      * TEXTAREA -> EDITABLE
25381      * Protected method that will not generally be called directly. Pushes the value of the textarea
25382      * into the iframe editor.
25383      */
25384     pushValue : function()
25385     {
25386         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
25387         if(this.initialized){
25388             var v = this.el.dom.value.trim();
25389             
25390             
25391             if(this.owner.fireEvent('beforepush', this, v) !== false){
25392                 var d = (this.doc.body || this.doc.documentElement);
25393                 d.innerHTML = v;
25394                  
25395                 this.el.dom.value = d.innerHTML;
25396                 this.owner.fireEvent('push', this, v);
25397             }
25398             if (this.autoClean) {
25399                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
25400                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
25401             }
25402             
25403             Roo.htmleditor.Block.initAll(this.doc.body);
25404             this.updateLanguage();
25405             
25406             var lc = this.doc.body.lastChild;
25407             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
25408                 // add an extra line at the end.
25409                 this.doc.body.appendChild(this.doc.createElement('br'));
25410             }
25411             
25412             
25413         }
25414     },
25415
25416     // private
25417     deferFocus : function(){
25418         this.focus.defer(10, this);
25419     },
25420
25421     // doc'ed in Field
25422     focus : function(){
25423         if(this.win && !this.sourceEditMode){
25424             this.win.focus();
25425         }else{
25426             this.el.focus();
25427         }
25428     },
25429     
25430     assignDocWin: function()
25431     {
25432         var iframe = this.iframe;
25433         
25434          if(Roo.isIE){
25435             this.doc = iframe.contentWindow.document;
25436             this.win = iframe.contentWindow;
25437         } else {
25438 //            if (!Roo.get(this.frameId)) {
25439 //                return;
25440 //            }
25441 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
25442 //            this.win = Roo.get(this.frameId).dom.contentWindow;
25443             
25444             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
25445                 return;
25446             }
25447             
25448             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
25449             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
25450         }
25451     },
25452     
25453     // private
25454     initEditor : function(){
25455         //console.log("INIT EDITOR");
25456         this.assignDocWin();
25457         
25458         
25459         
25460         this.doc.designMode="on";
25461         this.doc.open();
25462         this.doc.write(this.getDocMarkup());
25463         this.doc.close();
25464         
25465         var dbody = (this.doc.body || this.doc.documentElement);
25466         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
25467         // this copies styles from the containing element into thsi one..
25468         // not sure why we need all of this..
25469         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
25470         
25471         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
25472         //ss['background-attachment'] = 'fixed'; // w3c
25473         dbody.bgProperties = 'fixed'; // ie
25474         dbody.setAttribute("translate", "no");
25475         
25476         //Roo.DomHelper.applyStyles(dbody, ss);
25477         Roo.EventManager.on(this.doc, {
25478              
25479             'mouseup': this.onEditorEvent,
25480             'dblclick': this.onEditorEvent,
25481             'click': this.onEditorEvent,
25482             'keyup': this.onEditorEvent,
25483             
25484             buffer:100,
25485             scope: this
25486         });
25487         Roo.EventManager.on(this.doc, {
25488             'paste': this.onPasteEvent,
25489             scope : this
25490         });
25491         if(Roo.isGecko){
25492             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
25493         }
25494         //??? needed???
25495         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
25496             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
25497         }
25498         this.initialized = true;
25499
25500         
25501         // initialize special key events - enter
25502         new Roo.htmleditor.KeyEnter({core : this});
25503         
25504          
25505         
25506         this.owner.fireEvent('initialize', this);
25507         this.pushValue();
25508     },
25509     // this is to prevent a href clicks resulting in a redirect?
25510    
25511     onPasteEvent : function(e,v)
25512     {
25513         // I think we better assume paste is going to be a dirty load of rubish from word..
25514         
25515         // even pasting into a 'email version' of this widget will have to clean up that mess.
25516         var cd = (e.browserEvent.clipboardData || window.clipboardData);
25517         
25518         // check what type of paste - if it's an image, then handle it differently.
25519         if (cd.files.length > 0) {
25520             // pasting images?
25521             var urlAPI = (window.createObjectURL && window) || 
25522                 (window.URL && URL.revokeObjectURL && URL) || 
25523                 (window.webkitURL && webkitURL);
25524     
25525             var url = urlAPI.createObjectURL( cd.files[0]);
25526             this.insertAtCursor('<img src=" + url + ">');
25527             return false;
25528         }
25529         
25530         var html = cd.getData('text/html'); // clipboard event
25531         var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
25532         var images = parser.doc ? parser.doc.getElementsByType('pict') : [];
25533         Roo.log(images);
25534         //Roo.log(imgs);
25535         // fixme..
25536         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable)/); }) // ignore headers
25537                        .map(function(g) { return g.toDataURL(); });
25538         
25539         
25540         html = this.cleanWordChars(html);
25541         
25542         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
25543         
25544         
25545         var sn = this.getParentElement();
25546         // check if d contains a table, and prevent nesting??
25547         //Roo.log(d.getElementsByTagName('table'));
25548         //Roo.log(sn);
25549         //Roo.log(sn.closest('table'));
25550         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
25551             e.preventDefault();
25552             this.insertAtCursor("You can not nest tables");
25553             //Roo.log("prevent?"); // fixme - 
25554             return false;
25555         }
25556         
25557         if (images.length > 0) {
25558             Roo.each(d.getElementsByTagName('img'), function(img, i) {
25559                 img.setAttribute('src', images[i]);
25560             });
25561         }
25562         if (this.autoClean) {
25563             new Roo.htmleditor.FilterStyleToTag({ node : d });
25564             new Roo.htmleditor.FilterAttributes({
25565                 node : d,
25566                 attrib_white : ['href', 'src', 'name', 'align'],
25567                 attrib_clean : ['href', 'src' ] 
25568             });
25569             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
25570             // should be fonts..
25571             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT' ]} );
25572             new Roo.htmleditor.FilterParagraph({ node : d });
25573             new Roo.htmleditor.FilterSpan({ node : d });
25574             new Roo.htmleditor.FilterLongBr({ node : d });
25575         }
25576         if (this.enableBlocks) {
25577                 
25578             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
25579                 if (img.closest('figure')) { // assume!! that it's aready
25580                     return;
25581                 }
25582                 var fig  = new Roo.htmleditor.BlockFigure({
25583                     image_src  : img.src
25584                 });
25585                 fig.updateElement(img); // replace it..
25586                 
25587             });
25588         }
25589         
25590         
25591         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
25592         if (this.enableBlocks) {
25593             Roo.htmleditor.Block.initAll(this.doc.body);
25594         }
25595         
25596         
25597         e.preventDefault();
25598         return false;
25599         // default behaveiour should be our local cleanup paste? (optional?)
25600         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
25601         //this.owner.fireEvent('paste', e, v);
25602     },
25603     // private
25604     onDestroy : function(){
25605         
25606         
25607         
25608         if(this.rendered){
25609             
25610             //for (var i =0; i < this.toolbars.length;i++) {
25611             //    // fixme - ask toolbars for heights?
25612             //    this.toolbars[i].onDestroy();
25613            // }
25614             
25615             //this.wrap.dom.innerHTML = '';
25616             //this.wrap.remove();
25617         }
25618     },
25619
25620     // private
25621     onFirstFocus : function(){
25622         
25623         this.assignDocWin();
25624         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
25625         
25626         this.activated = true;
25627          
25628     
25629         if(Roo.isGecko){ // prevent silly gecko errors
25630             this.win.focus();
25631             var s = this.win.getSelection();
25632             if(!s.focusNode || s.focusNode.nodeType != 3){
25633                 var r = s.getRangeAt(0);
25634                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
25635                 r.collapse(true);
25636                 this.deferFocus();
25637             }
25638             try{
25639                 this.execCmd('useCSS', true);
25640                 this.execCmd('styleWithCSS', false);
25641             }catch(e){}
25642         }
25643         this.owner.fireEvent('activate', this);
25644     },
25645
25646     // private
25647     adjustFont: function(btn){
25648         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
25649         //if(Roo.isSafari){ // safari
25650         //    adjust *= 2;
25651        // }
25652         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
25653         if(Roo.isSafari){ // safari
25654             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
25655             v =  (v < 10) ? 10 : v;
25656             v =  (v > 48) ? 48 : v;
25657             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
25658             
25659         }
25660         
25661         
25662         v = Math.max(1, v+adjust);
25663         
25664         this.execCmd('FontSize', v  );
25665     },
25666
25667     onEditorEvent : function(e)
25668     {
25669          
25670         
25671         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
25672             return; // we do not handle this.. (undo manager does..)
25673         }
25674         // in theory this detects if the last element is not a br, then we try and do that.
25675         // its so clicking in space at bottom triggers adding a br and moving the cursor.
25676         if (e &&
25677             e.target.nodeName == 'BODY' &&
25678             e.type == "mouseup" &&
25679             this.doc.body.lastChild
25680            ) {
25681             var lc = this.doc.body.lastChild;
25682             // gtx-trans is google translate plugin adding crap.
25683             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
25684                 lc = lc.previousSibling;
25685             }
25686             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
25687             // if last element is <BR> - then dont do anything.
25688             
25689                 var ns = this.doc.createElement('br');
25690                 this.doc.body.appendChild(ns);
25691                 range = this.doc.createRange();
25692                 range.setStartAfter(ns);
25693                 range.collapse(true);
25694                 var sel = this.win.getSelection();
25695                 sel.removeAllRanges();
25696                 sel.addRange(range);
25697             }
25698         }
25699         
25700         
25701         
25702         this.fireEditorEvent(e);
25703       //  this.updateToolbar();
25704         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
25705     },
25706     
25707     fireEditorEvent: function(e)
25708     {
25709         this.owner.fireEvent('editorevent', this, e);
25710     },
25711
25712     insertTag : function(tg)
25713     {
25714         // could be a bit smarter... -> wrap the current selected tRoo..
25715         if (tg.toLowerCase() == 'span' ||
25716             tg.toLowerCase() == 'code' ||
25717             tg.toLowerCase() == 'sup' ||
25718             tg.toLowerCase() == 'sub' 
25719             ) {
25720             
25721             range = this.createRange(this.getSelection());
25722             var wrappingNode = this.doc.createElement(tg.toLowerCase());
25723             wrappingNode.appendChild(range.extractContents());
25724             range.insertNode(wrappingNode);
25725
25726             return;
25727             
25728             
25729             
25730         }
25731         this.execCmd("formatblock",   tg);
25732         this.undoManager.addEvent(); 
25733     },
25734     
25735     insertText : function(txt)
25736     {
25737         
25738         
25739         var range = this.createRange();
25740         range.deleteContents();
25741                //alert(Sender.getAttribute('label'));
25742                
25743         range.insertNode(this.doc.createTextNode(txt));
25744         this.undoManager.addEvent();
25745     } ,
25746     
25747      
25748
25749     /**
25750      * Executes a Midas editor command on the editor document and performs necessary focus and
25751      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
25752      * @param {String} cmd The Midas command
25753      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25754      */
25755     relayCmd : function(cmd, value)
25756     {
25757         
25758         switch (cmd) {
25759             case 'justifyleft':
25760             case 'justifyright':
25761             case 'justifycenter':
25762                 // if we are in a cell, then we will adjust the
25763                 var n = this.getParentElement();
25764                 var td = n.closest('td');
25765                 if (td) {
25766                     var bl = Roo.htmleditor.Block.factory(td);
25767                     bl.textAlign = cmd.replace('justify','');
25768                     bl.updateElement();
25769                     this.owner.fireEvent('editorevent', this);
25770                     return;
25771                 }
25772                 this.execCmd('styleWithCSS', true); // 
25773                 break;
25774             case 'bold':
25775             case 'italic':
25776                 // if there is no selection, then we insert, and set the curson inside it..
25777                 this.execCmd('styleWithCSS', false); 
25778                 break;
25779                 
25780         
25781             default:
25782                 break;
25783         }
25784         
25785         
25786         this.win.focus();
25787         this.execCmd(cmd, value);
25788         this.owner.fireEvent('editorevent', this);
25789         //this.updateToolbar();
25790         this.owner.deferFocus();
25791     },
25792
25793     /**
25794      * Executes a Midas editor command directly on the editor document.
25795      * For visual commands, you should use {@link #relayCmd} instead.
25796      * <b>This should only be called after the editor is initialized.</b>
25797      * @param {String} cmd The Midas command
25798      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25799      */
25800     execCmd : function(cmd, value){
25801         this.doc.execCommand(cmd, false, value === undefined ? null : value);
25802         this.syncValue();
25803     },
25804  
25805  
25806    
25807     /**
25808      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
25809      * to insert tRoo.
25810      * @param {String} text | dom node.. 
25811      */
25812     insertAtCursor : function(text)
25813     {
25814         
25815         if(!this.activated){
25816             return;
25817         }
25818          
25819         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
25820             this.win.focus();
25821             
25822             
25823             // from jquery ui (MIT licenced)
25824             var range, node;
25825             var win = this.win;
25826             
25827             if (win.getSelection && win.getSelection().getRangeAt) {
25828                 
25829                 // delete the existing?
25830                 
25831                 this.createRange(this.getSelection()).deleteContents();
25832                 range = win.getSelection().getRangeAt(0);
25833                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
25834                 range.insertNode(node);
25835                 range = range.cloneRange();
25836                 range.collapse(false);
25837                  
25838                 win.getSelection().removeAllRanges();
25839                 win.getSelection().addRange(range);
25840                 
25841                 
25842                 
25843             } else if (win.document.selection && win.document.selection.createRange) {
25844                 // no firefox support
25845                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25846                 win.document.selection.createRange().pasteHTML(txt);
25847             
25848             } else {
25849                 // no firefox support
25850                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25851                 this.execCmd('InsertHTML', txt);
25852             } 
25853             this.syncValue();
25854             
25855             this.deferFocus();
25856         }
25857     },
25858  // private
25859     mozKeyPress : function(e){
25860         if(e.ctrlKey){
25861             var c = e.getCharCode(), cmd;
25862           
25863             if(c > 0){
25864                 c = String.fromCharCode(c).toLowerCase();
25865                 switch(c){
25866                     case 'b':
25867                         cmd = 'bold';
25868                         break;
25869                     case 'i':
25870                         cmd = 'italic';
25871                         break;
25872                     
25873                     case 'u':
25874                         cmd = 'underline';
25875                         break;
25876                     
25877                     //case 'v':
25878                       //  this.cleanUpPaste.defer(100, this);
25879                       //  return;
25880                         
25881                 }
25882                 if(cmd){
25883                     
25884                     this.relayCmd(cmd);
25885                     //this.win.focus();
25886                     //this.execCmd(cmd);
25887                     //this.deferFocus();
25888                     e.preventDefault();
25889                 }
25890                 
25891             }
25892         }
25893     },
25894
25895     // private
25896     fixKeys : function(){ // load time branching for fastest keydown performance
25897         
25898         
25899         if(Roo.isIE){
25900             return function(e){
25901                 var k = e.getKey(), r;
25902                 if(k == e.TAB){
25903                     e.stopEvent();
25904                     r = this.doc.selection.createRange();
25905                     if(r){
25906                         r.collapse(true);
25907                         r.pasteHTML('&#160;&#160;&#160;&#160;');
25908                         this.deferFocus();
25909                     }
25910                     return;
25911                 }
25912                 /// this is handled by Roo.htmleditor.KeyEnter
25913                  /*
25914                 if(k == e.ENTER){
25915                     r = this.doc.selection.createRange();
25916                     if(r){
25917                         var target = r.parentElement();
25918                         if(!target || target.tagName.toLowerCase() != 'li'){
25919                             e.stopEvent();
25920                             r.pasteHTML('<br/>');
25921                             r.collapse(false);
25922                             r.select();
25923                         }
25924                     }
25925                 }
25926                 */
25927                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25928                 //    this.cleanUpPaste.defer(100, this);
25929                 //    return;
25930                 //}
25931                 
25932                 
25933             };
25934         }else if(Roo.isOpera){
25935             return function(e){
25936                 var k = e.getKey();
25937                 if(k == e.TAB){
25938                     e.stopEvent();
25939                     this.win.focus();
25940                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
25941                     this.deferFocus();
25942                 }
25943                
25944                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25945                 //    this.cleanUpPaste.defer(100, this);
25946                  //   return;
25947                 //}
25948                 
25949             };
25950         }else if(Roo.isSafari){
25951             return function(e){
25952                 var k = e.getKey();
25953                 
25954                 if(k == e.TAB){
25955                     e.stopEvent();
25956                     this.execCmd('InsertText','\t');
25957                     this.deferFocus();
25958                     return;
25959                 }
25960                  this.mozKeyPress(e);
25961                 
25962                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25963                  //   this.cleanUpPaste.defer(100, this);
25964                  //   return;
25965                // }
25966                 
25967              };
25968         }
25969     }(),
25970     
25971     getAllAncestors: function()
25972     {
25973         var p = this.getSelectedNode();
25974         var a = [];
25975         if (!p) {
25976             a.push(p); // push blank onto stack..
25977             p = this.getParentElement();
25978         }
25979         
25980         
25981         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
25982             a.push(p);
25983             p = p.parentNode;
25984         }
25985         a.push(this.doc.body);
25986         return a;
25987     },
25988     lastSel : false,
25989     lastSelNode : false,
25990     
25991     
25992     getSelection : function() 
25993     {
25994         this.assignDocWin();
25995         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
25996     },
25997     /**
25998      * Select a dom node
25999      * @param {DomElement} node the node to select
26000      */
26001     selectNode : function(node, collapse)
26002     {
26003         var nodeRange = node.ownerDocument.createRange();
26004         try {
26005             nodeRange.selectNode(node);
26006         } catch (e) {
26007             nodeRange.selectNodeContents(node);
26008         }
26009         if (collapse === true) {
26010             nodeRange.collapse(true);
26011         }
26012         //
26013         var s = this.win.getSelection();
26014         s.removeAllRanges();
26015         s.addRange(nodeRange);
26016     },
26017     
26018     getSelectedNode: function() 
26019     {
26020         // this may only work on Gecko!!!
26021         
26022         // should we cache this!!!!
26023         
26024          
26025          
26026         var range = this.createRange(this.getSelection()).cloneRange();
26027         
26028         if (Roo.isIE) {
26029             var parent = range.parentElement();
26030             while (true) {
26031                 var testRange = range.duplicate();
26032                 testRange.moveToElementText(parent);
26033                 if (testRange.inRange(range)) {
26034                     break;
26035                 }
26036                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
26037                     break;
26038                 }
26039                 parent = parent.parentElement;
26040             }
26041             return parent;
26042         }
26043         
26044         // is ancestor a text element.
26045         var ac =  range.commonAncestorContainer;
26046         if (ac.nodeType == 3) {
26047             ac = ac.parentNode;
26048         }
26049         
26050         var ar = ac.childNodes;
26051          
26052         var nodes = [];
26053         var other_nodes = [];
26054         var has_other_nodes = false;
26055         for (var i=0;i<ar.length;i++) {
26056             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
26057                 continue;
26058             }
26059             // fullly contained node.
26060             
26061             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
26062                 nodes.push(ar[i]);
26063                 continue;
26064             }
26065             
26066             // probably selected..
26067             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
26068                 other_nodes.push(ar[i]);
26069                 continue;
26070             }
26071             // outer..
26072             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
26073                 continue;
26074             }
26075             
26076             
26077             has_other_nodes = true;
26078         }
26079         if (!nodes.length && other_nodes.length) {
26080             nodes= other_nodes;
26081         }
26082         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
26083             return false;
26084         }
26085         
26086         return nodes[0];
26087     },
26088     
26089     
26090     createRange: function(sel)
26091     {
26092         // this has strange effects when using with 
26093         // top toolbar - not sure if it's a great idea.
26094         //this.editor.contentWindow.focus();
26095         if (typeof sel != "undefined") {
26096             try {
26097                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
26098             } catch(e) {
26099                 return this.doc.createRange();
26100             }
26101         } else {
26102             return this.doc.createRange();
26103         }
26104     },
26105     getParentElement: function()
26106     {
26107         
26108         this.assignDocWin();
26109         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
26110         
26111         var range = this.createRange(sel);
26112          
26113         try {
26114             var p = range.commonAncestorContainer;
26115             while (p.nodeType == 3) { // text node
26116                 p = p.parentNode;
26117             }
26118             return p;
26119         } catch (e) {
26120             return null;
26121         }
26122     
26123     },
26124     /***
26125      *
26126      * Range intersection.. the hard stuff...
26127      *  '-1' = before
26128      *  '0' = hits..
26129      *  '1' = after.
26130      *         [ -- selected range --- ]
26131      *   [fail]                        [fail]
26132      *
26133      *    basically..
26134      *      if end is before start or  hits it. fail.
26135      *      if start is after end or hits it fail.
26136      *
26137      *   if either hits (but other is outside. - then it's not 
26138      *   
26139      *    
26140      **/
26141     
26142     
26143     // @see http://www.thismuchiknow.co.uk/?p=64.
26144     rangeIntersectsNode : function(range, node)
26145     {
26146         var nodeRange = node.ownerDocument.createRange();
26147         try {
26148             nodeRange.selectNode(node);
26149         } catch (e) {
26150             nodeRange.selectNodeContents(node);
26151         }
26152     
26153         var rangeStartRange = range.cloneRange();
26154         rangeStartRange.collapse(true);
26155     
26156         var rangeEndRange = range.cloneRange();
26157         rangeEndRange.collapse(false);
26158     
26159         var nodeStartRange = nodeRange.cloneRange();
26160         nodeStartRange.collapse(true);
26161     
26162         var nodeEndRange = nodeRange.cloneRange();
26163         nodeEndRange.collapse(false);
26164     
26165         return rangeStartRange.compareBoundaryPoints(
26166                  Range.START_TO_START, nodeEndRange) == -1 &&
26167                rangeEndRange.compareBoundaryPoints(
26168                  Range.START_TO_START, nodeStartRange) == 1;
26169         
26170          
26171     },
26172     rangeCompareNode : function(range, node)
26173     {
26174         var nodeRange = node.ownerDocument.createRange();
26175         try {
26176             nodeRange.selectNode(node);
26177         } catch (e) {
26178             nodeRange.selectNodeContents(node);
26179         }
26180         
26181         
26182         range.collapse(true);
26183     
26184         nodeRange.collapse(true);
26185      
26186         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
26187         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
26188          
26189         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
26190         
26191         var nodeIsBefore   =  ss == 1;
26192         var nodeIsAfter    = ee == -1;
26193         
26194         if (nodeIsBefore && nodeIsAfter) {
26195             return 0; // outer
26196         }
26197         if (!nodeIsBefore && nodeIsAfter) {
26198             return 1; //right trailed.
26199         }
26200         
26201         if (nodeIsBefore && !nodeIsAfter) {
26202             return 2;  // left trailed.
26203         }
26204         // fully contined.
26205         return 3;
26206     },
26207  
26208     cleanWordChars : function(input) {// change the chars to hex code
26209         
26210        var swapCodes  = [ 
26211             [    8211, "&#8211;" ], 
26212             [    8212, "&#8212;" ], 
26213             [    8216,  "'" ],  
26214             [    8217, "'" ],  
26215             [    8220, '"' ],  
26216             [    8221, '"' ],  
26217             [    8226, "*" ],  
26218             [    8230, "..." ]
26219         ]; 
26220         var output = input;
26221         Roo.each(swapCodes, function(sw) { 
26222             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
26223             
26224             output = output.replace(swapper, sw[1]);
26225         });
26226         
26227         return output;
26228     },
26229     
26230      
26231     
26232         
26233     
26234     cleanUpChild : function (node)
26235     {
26236         
26237         new Roo.htmleditor.FilterComment({node : node});
26238         new Roo.htmleditor.FilterAttributes({
26239                 node : node,
26240                 attrib_black : this.ablack,
26241                 attrib_clean : this.aclean,
26242                 style_white : this.cwhite,
26243                 style_black : this.cblack
26244         });
26245         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
26246         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
26247          
26248         
26249     },
26250     
26251     /**
26252      * Clean up MS wordisms...
26253      * @deprecated - use filter directly
26254      */
26255     cleanWord : function(node)
26256     {
26257         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
26258         
26259     },
26260    
26261     
26262     /**
26263
26264      * @deprecated - use filters
26265      */
26266     cleanTableWidths : function(node)
26267     {
26268         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
26269         
26270  
26271     },
26272     
26273      
26274         
26275     applyBlacklists : function()
26276     {
26277         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
26278         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
26279         
26280         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
26281         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
26282         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
26283         
26284         this.white = [];
26285         this.black = [];
26286         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
26287             if (b.indexOf(tag) > -1) {
26288                 return;
26289             }
26290             this.white.push(tag);
26291             
26292         }, this);
26293         
26294         Roo.each(w, function(tag) {
26295             if (b.indexOf(tag) > -1) {
26296                 return;
26297             }
26298             if (this.white.indexOf(tag) > -1) {
26299                 return;
26300             }
26301             this.white.push(tag);
26302             
26303         }, this);
26304         
26305         
26306         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
26307             if (w.indexOf(tag) > -1) {
26308                 return;
26309             }
26310             this.black.push(tag);
26311             
26312         }, this);
26313         
26314         Roo.each(b, function(tag) {
26315             if (w.indexOf(tag) > -1) {
26316                 return;
26317             }
26318             if (this.black.indexOf(tag) > -1) {
26319                 return;
26320             }
26321             this.black.push(tag);
26322             
26323         }, this);
26324         
26325         
26326         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
26327         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
26328         
26329         this.cwhite = [];
26330         this.cblack = [];
26331         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
26332             if (b.indexOf(tag) > -1) {
26333                 return;
26334             }
26335             this.cwhite.push(tag);
26336             
26337         }, this);
26338         
26339         Roo.each(w, function(tag) {
26340             if (b.indexOf(tag) > -1) {
26341                 return;
26342             }
26343             if (this.cwhite.indexOf(tag) > -1) {
26344                 return;
26345             }
26346             this.cwhite.push(tag);
26347             
26348         }, this);
26349         
26350         
26351         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
26352             if (w.indexOf(tag) > -1) {
26353                 return;
26354             }
26355             this.cblack.push(tag);
26356             
26357         }, this);
26358         
26359         Roo.each(b, function(tag) {
26360             if (w.indexOf(tag) > -1) {
26361                 return;
26362             }
26363             if (this.cblack.indexOf(tag) > -1) {
26364                 return;
26365             }
26366             this.cblack.push(tag);
26367             
26368         }, this);
26369     },
26370     
26371     setStylesheets : function(stylesheets)
26372     {
26373         if(typeof(stylesheets) == 'string'){
26374             Roo.get(this.iframe.contentDocument.head).createChild({
26375                 tag : 'link',
26376                 rel : 'stylesheet',
26377                 type : 'text/css',
26378                 href : stylesheets
26379             });
26380             
26381             return;
26382         }
26383         var _this = this;
26384      
26385         Roo.each(stylesheets, function(s) {
26386             if(!s.length){
26387                 return;
26388             }
26389             
26390             Roo.get(_this.iframe.contentDocument.head).createChild({
26391                 tag : 'link',
26392                 rel : 'stylesheet',
26393                 type : 'text/css',
26394                 href : s
26395             });
26396         });
26397
26398         
26399     },
26400     
26401     
26402     updateLanguage : function()
26403     {
26404         if (!this.iframe || !this.iframe.contentDocument) {
26405             return;
26406         }
26407         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
26408     },
26409     
26410     
26411     removeStylesheets : function()
26412     {
26413         var _this = this;
26414         
26415         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
26416             s.remove();
26417         });
26418     },
26419     
26420     setStyle : function(style)
26421     {
26422         Roo.get(this.iframe.contentDocument.head).createChild({
26423             tag : 'style',
26424             type : 'text/css',
26425             html : style
26426         });
26427
26428         return;
26429     }
26430     
26431     // hide stuff that is not compatible
26432     /**
26433      * @event blur
26434      * @hide
26435      */
26436     /**
26437      * @event change
26438      * @hide
26439      */
26440     /**
26441      * @event focus
26442      * @hide
26443      */
26444     /**
26445      * @event specialkey
26446      * @hide
26447      */
26448     /**
26449      * @cfg {String} fieldClass @hide
26450      */
26451     /**
26452      * @cfg {String} focusClass @hide
26453      */
26454     /**
26455      * @cfg {String} autoCreate @hide
26456      */
26457     /**
26458      * @cfg {String} inputType @hide
26459      */
26460     /**
26461      * @cfg {String} invalidClass @hide
26462      */
26463     /**
26464      * @cfg {String} invalidText @hide
26465      */
26466     /**
26467      * @cfg {String} msgFx @hide
26468      */
26469     /**
26470      * @cfg {String} validateOnBlur @hide
26471      */
26472 });
26473
26474 Roo.HtmlEditorCore.white = [
26475         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
26476         
26477        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
26478        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
26479        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
26480        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
26481        'TABLE',   'UL',         'XMP', 
26482        
26483        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
26484       'THEAD',   'TR', 
26485      
26486       'DIR', 'MENU', 'OL', 'UL', 'DL',
26487        
26488       'EMBED',  'OBJECT'
26489 ];
26490
26491
26492 Roo.HtmlEditorCore.black = [
26493     //    'embed',  'object', // enable - backend responsiblity to clean thiese
26494         'APPLET', // 
26495         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
26496         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
26497         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
26498         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
26499         //'FONT' // CLEAN LATER..
26500         'COLGROUP', 'COL'  // messy tables.
26501         
26502 ];
26503 Roo.HtmlEditorCore.clean = [ // ?? needed???
26504      'SCRIPT', 'STYLE', 'TITLE', 'XML'
26505 ];
26506 Roo.HtmlEditorCore.tag_remove = [
26507     'FONT', 'TBODY'  
26508 ];
26509 // attributes..
26510
26511 Roo.HtmlEditorCore.ablack = [
26512     'on'
26513 ];
26514     
26515 Roo.HtmlEditorCore.aclean = [ 
26516     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
26517 ];
26518
26519 // protocols..
26520 Roo.HtmlEditorCore.pwhite= [
26521         'http',  'https',  'mailto'
26522 ];
26523
26524 // white listed style attributes.
26525 Roo.HtmlEditorCore.cwhite= [
26526       //  'text-align', /// default is to allow most things..
26527       
26528          
26529 //        'font-size'//??
26530 ];
26531
26532 // black listed style attributes.
26533 Roo.HtmlEditorCore.cblack= [
26534       //  'font-size' -- this can be set by the project 
26535 ];
26536
26537
26538
26539
26540     //<script type="text/javascript">
26541
26542 /*
26543  * Ext JS Library 1.1.1
26544  * Copyright(c) 2006-2007, Ext JS, LLC.
26545  * Licence LGPL
26546  * 
26547  */
26548  
26549  
26550 Roo.form.HtmlEditor = function(config){
26551     
26552     
26553     
26554     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
26555     
26556     if (!this.toolbars) {
26557         this.toolbars = [];
26558     }
26559     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
26560     
26561     
26562 };
26563
26564 /**
26565  * @class Roo.form.HtmlEditor
26566  * @extends Roo.form.Field
26567  * Provides a lightweight HTML Editor component.
26568  *
26569  * This has been tested on Fireforx / Chrome.. IE may not be so great..
26570  * 
26571  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
26572  * supported by this editor.</b><br/><br/>
26573  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
26574  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
26575  */
26576 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
26577     /**
26578      * @cfg {Boolean} clearUp
26579      */
26580     clearUp : true,
26581       /**
26582      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
26583      */
26584     toolbars : false,
26585    
26586      /**
26587      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
26588      *                        Roo.resizable.
26589      */
26590     resizable : false,
26591      /**
26592      * @cfg {Number} height (in pixels)
26593      */   
26594     height: 300,
26595    /**
26596      * @cfg {Number} width (in pixels)
26597      */   
26598     width: 500,
26599     
26600     /**
26601      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets - this is usally a good idea  rootURL + '/roojs1/css/undoreset.css',   .
26602      * 
26603      */
26604     stylesheets: false,
26605     
26606     
26607      /**
26608      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
26609      * 
26610      */
26611     cblack: false,
26612     /**
26613      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
26614      * 
26615      */
26616     cwhite: false,
26617     
26618      /**
26619      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
26620      * 
26621      */
26622     black: false,
26623     /**
26624      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
26625      * 
26626      */
26627     white: false,
26628     /**
26629      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
26630      */
26631     allowComments: false,
26632     /**
26633      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
26634      */
26635     enableBlocks : true,
26636     
26637     /**
26638      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
26639      *         if you are doing an email editor, this probably needs disabling, it's designed
26640      */
26641     autoClean: true,
26642     /**
26643      * @cfg {string} bodyCls- default '' default classes to add to body of editable area - usually undoreset is a good start..
26644      */
26645     bodyCls : '',
26646     /**
26647      * @cfg {String} language default en - language of text (usefull for rtl languages)
26648      * 
26649      */
26650     language: 'en',
26651     
26652      
26653     // id of frame..
26654     frameId: false,
26655     
26656     // private properties
26657     validationEvent : false,
26658     deferHeight: true,
26659     initialized : false,
26660     activated : false,
26661     
26662     onFocus : Roo.emptyFn,
26663     iframePad:3,
26664     hideMode:'offsets',
26665     
26666     actionMode : 'container', // defaults to hiding it...
26667     
26668     defaultAutoCreate : { // modified by initCompnoent..
26669         tag: "textarea",
26670         style:"width:500px;height:300px;",
26671         autocomplete: "new-password"
26672     },
26673
26674     // private
26675     initComponent : function(){
26676         this.addEvents({
26677             /**
26678              * @event initialize
26679              * Fires when the editor is fully initialized (including the iframe)
26680              * @param {HtmlEditor} this
26681              */
26682             initialize: true,
26683             /**
26684              * @event activate
26685              * Fires when the editor is first receives the focus. Any insertion must wait
26686              * until after this event.
26687              * @param {HtmlEditor} this
26688              */
26689             activate: true,
26690              /**
26691              * @event beforesync
26692              * Fires before the textarea is updated with content from the editor iframe. Return false
26693              * to cancel the sync.
26694              * @param {HtmlEditor} this
26695              * @param {String} html
26696              */
26697             beforesync: true,
26698              /**
26699              * @event beforepush
26700              * Fires before the iframe editor is updated with content from the textarea. Return false
26701              * to cancel the push.
26702              * @param {HtmlEditor} this
26703              * @param {String} html
26704              */
26705             beforepush: true,
26706              /**
26707              * @event sync
26708              * Fires when the textarea is updated with content from the editor iframe.
26709              * @param {HtmlEditor} this
26710              * @param {String} html
26711              */
26712             sync: true,
26713              /**
26714              * @event push
26715              * Fires when the iframe editor is updated with content from the textarea.
26716              * @param {HtmlEditor} this
26717              * @param {String} html
26718              */
26719             push: true,
26720              /**
26721              * @event editmodechange
26722              * Fires when the editor switches edit modes
26723              * @param {HtmlEditor} this
26724              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
26725              */
26726             editmodechange: true,
26727             /**
26728              * @event editorevent
26729              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
26730              * @param {HtmlEditor} this
26731              */
26732             editorevent: true,
26733             /**
26734              * @event firstfocus
26735              * Fires when on first focus - needed by toolbars..
26736              * @param {HtmlEditor} this
26737              */
26738             firstfocus: true,
26739             /**
26740              * @event autosave
26741              * Auto save the htmlEditor value as a file into Events
26742              * @param {HtmlEditor} this
26743              */
26744             autosave: true,
26745             /**
26746              * @event savedpreview
26747              * preview the saved version of htmlEditor
26748              * @param {HtmlEditor} this
26749              */
26750             savedpreview: true,
26751             
26752             /**
26753             * @event stylesheetsclick
26754             * Fires when press the Sytlesheets button
26755             * @param {Roo.HtmlEditorCore} this
26756             */
26757             stylesheetsclick: true,
26758             /**
26759             * @event paste
26760             * Fires when press user pastes into the editor
26761             * @param {Roo.HtmlEditorCore} this
26762             */
26763             paste: true 
26764         });
26765         this.defaultAutoCreate =  {
26766             tag: "textarea",
26767             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
26768             autocomplete: "new-password"
26769         };
26770     },
26771
26772     /**
26773      * Protected method that will not generally be called directly. It
26774      * is called when the editor creates its toolbar. Override this method if you need to
26775      * add custom toolbar buttons.
26776      * @param {HtmlEditor} editor
26777      */
26778     createToolbar : function(editor){
26779         Roo.log("create toolbars");
26780         if (!editor.toolbars || !editor.toolbars.length) {
26781             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
26782         }
26783         
26784         for (var i =0 ; i < editor.toolbars.length;i++) {
26785             editor.toolbars[i] = Roo.factory(
26786                     typeof(editor.toolbars[i]) == 'string' ?
26787                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
26788                 Roo.form.HtmlEditor);
26789             editor.toolbars[i].init(editor);
26790         }
26791          
26792         
26793     },
26794     /**
26795      * get the Context selected node
26796      * @returns {DomElement|boolean} selected node if active or false if none
26797      * 
26798      */
26799     getSelectedNode : function()
26800     {
26801         if (this.toolbars.length < 2 || !this.toolbars[1].tb) {
26802             return false;
26803         }
26804         return this.toolbars[1].tb.selectedNode;
26805     
26806     },
26807     // private
26808     onRender : function(ct, position)
26809     {
26810         var _t = this;
26811         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
26812         
26813         this.wrap = this.el.wrap({
26814             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
26815         });
26816         
26817         this.editorcore.onRender(ct, position);
26818          
26819         if (this.resizable) {
26820             this.resizeEl = new Roo.Resizable(this.wrap, {
26821                 pinned : true,
26822                 wrap: true,
26823                 dynamic : true,
26824                 minHeight : this.height,
26825                 height: this.height,
26826                 handles : this.resizable,
26827                 width: this.width,
26828                 listeners : {
26829                     resize : function(r, w, h) {
26830                         _t.onResize(w,h); // -something
26831                     }
26832                 }
26833             });
26834             
26835         }
26836         this.createToolbar(this);
26837        
26838         
26839         if(!this.width){
26840             this.setSize(this.wrap.getSize());
26841         }
26842         if (this.resizeEl) {
26843             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
26844             // should trigger onReize..
26845         }
26846         
26847         this.keyNav = new Roo.KeyNav(this.el, {
26848             
26849             "tab" : function(e){
26850                 e.preventDefault();
26851                 
26852                 var value = this.getValue();
26853                 
26854                 var start = this.el.dom.selectionStart;
26855                 var end = this.el.dom.selectionEnd;
26856                 
26857                 if(!e.shiftKey){
26858                     
26859                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
26860                     this.el.dom.setSelectionRange(end + 1, end + 1);
26861                     return;
26862                 }
26863                 
26864                 var f = value.substring(0, start).split("\t");
26865                 
26866                 if(f.pop().length != 0){
26867                     return;
26868                 }
26869                 
26870                 this.setValue(f.join("\t") + value.substring(end));
26871                 this.el.dom.setSelectionRange(start - 1, start - 1);
26872                 
26873             },
26874             
26875             "home" : function(e){
26876                 e.preventDefault();
26877                 
26878                 var curr = this.el.dom.selectionStart;
26879                 var lines = this.getValue().split("\n");
26880                 
26881                 if(!lines.length){
26882                     return;
26883                 }
26884                 
26885                 if(e.ctrlKey){
26886                     this.el.dom.setSelectionRange(0, 0);
26887                     return;
26888                 }
26889                 
26890                 var pos = 0;
26891                 
26892                 for (var i = 0; i < lines.length;i++) {
26893                     pos += lines[i].length;
26894                     
26895                     if(i != 0){
26896                         pos += 1;
26897                     }
26898                     
26899                     if(pos < curr){
26900                         continue;
26901                     }
26902                     
26903                     pos -= lines[i].length;
26904                     
26905                     break;
26906                 }
26907                 
26908                 if(!e.shiftKey){
26909                     this.el.dom.setSelectionRange(pos, pos);
26910                     return;
26911                 }
26912                 
26913                 this.el.dom.selectionStart = pos;
26914                 this.el.dom.selectionEnd = curr;
26915             },
26916             
26917             "end" : function(e){
26918                 e.preventDefault();
26919                 
26920                 var curr = this.el.dom.selectionStart;
26921                 var lines = this.getValue().split("\n");
26922                 
26923                 if(!lines.length){
26924                     return;
26925                 }
26926                 
26927                 if(e.ctrlKey){
26928                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
26929                     return;
26930                 }
26931                 
26932                 var pos = 0;
26933                 
26934                 for (var i = 0; i < lines.length;i++) {
26935                     
26936                     pos += lines[i].length;
26937                     
26938                     if(i != 0){
26939                         pos += 1;
26940                     }
26941                     
26942                     if(pos < curr){
26943                         continue;
26944                     }
26945                     
26946                     break;
26947                 }
26948                 
26949                 if(!e.shiftKey){
26950                     this.el.dom.setSelectionRange(pos, pos);
26951                     return;
26952                 }
26953                 
26954                 this.el.dom.selectionStart = curr;
26955                 this.el.dom.selectionEnd = pos;
26956             },
26957
26958             scope : this,
26959
26960             doRelay : function(foo, bar, hname){
26961                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
26962             },
26963
26964             forceKeyDown: true
26965         });
26966         
26967 //        if(this.autosave && this.w){
26968 //            this.autoSaveFn = setInterval(this.autosave, 1000);
26969 //        }
26970     },
26971
26972     // private
26973     onResize : function(w, h)
26974     {
26975         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
26976         var ew = false;
26977         var eh = false;
26978         
26979         if(this.el ){
26980             if(typeof w == 'number'){
26981                 var aw = w - this.wrap.getFrameWidth('lr');
26982                 this.el.setWidth(this.adjustWidth('textarea', aw));
26983                 ew = aw;
26984             }
26985             if(typeof h == 'number'){
26986                 var tbh = 0;
26987                 for (var i =0; i < this.toolbars.length;i++) {
26988                     // fixme - ask toolbars for heights?
26989                     tbh += this.toolbars[i].tb.el.getHeight();
26990                     if (this.toolbars[i].footer) {
26991                         tbh += this.toolbars[i].footer.el.getHeight();
26992                     }
26993                 }
26994                 
26995                 
26996                 
26997                 
26998                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
26999                 ah -= 5; // knock a few pixes off for look..
27000 //                Roo.log(ah);
27001                 this.el.setHeight(this.adjustWidth('textarea', ah));
27002                 var eh = ah;
27003             }
27004         }
27005         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
27006         this.editorcore.onResize(ew,eh);
27007         
27008     },
27009
27010     /**
27011      * Toggles the editor between standard and source edit mode.
27012      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
27013      */
27014     toggleSourceEdit : function(sourceEditMode)
27015     {
27016         this.editorcore.toggleSourceEdit(sourceEditMode);
27017         
27018         if(this.editorcore.sourceEditMode){
27019             Roo.log('editor - showing textarea');
27020             
27021 //            Roo.log('in');
27022 //            Roo.log(this.syncValue());
27023             this.editorcore.syncValue();
27024             this.el.removeClass('x-hidden');
27025             this.el.dom.removeAttribute('tabIndex');
27026             this.el.focus();
27027             this.el.dom.scrollTop = 0;
27028             
27029             
27030             for (var i = 0; i < this.toolbars.length; i++) {
27031                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
27032                     this.toolbars[i].tb.hide();
27033                     this.toolbars[i].footer.hide();
27034                 }
27035             }
27036             
27037         }else{
27038             Roo.log('editor - hiding textarea');
27039 //            Roo.log('out')
27040 //            Roo.log(this.pushValue()); 
27041             this.editorcore.pushValue();
27042             
27043             this.el.addClass('x-hidden');
27044             this.el.dom.setAttribute('tabIndex', -1);
27045             
27046             for (var i = 0; i < this.toolbars.length; i++) {
27047                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
27048                     this.toolbars[i].tb.show();
27049                     this.toolbars[i].footer.show();
27050                 }
27051             }
27052             
27053             //this.deferFocus();
27054         }
27055         
27056         this.setSize(this.wrap.getSize());
27057         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
27058         
27059         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
27060     },
27061  
27062     // private (for BoxComponent)
27063     adjustSize : Roo.BoxComponent.prototype.adjustSize,
27064
27065     // private (for BoxComponent)
27066     getResizeEl : function(){
27067         return this.wrap;
27068     },
27069
27070     // private (for BoxComponent)
27071     getPositionEl : function(){
27072         return this.wrap;
27073     },
27074
27075     // private
27076     initEvents : function(){
27077         this.originalValue = this.getValue();
27078     },
27079
27080     /**
27081      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
27082      * @method
27083      */
27084     markInvalid : Roo.emptyFn,
27085     /**
27086      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
27087      * @method
27088      */
27089     clearInvalid : Roo.emptyFn,
27090
27091     setValue : function(v){
27092         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
27093         this.editorcore.pushValue();
27094     },
27095
27096     /**
27097      * update the language in the body - really done by core
27098      * @param {String} language - eg. en / ar / zh-CN etc..
27099      */
27100     updateLanguage : function(lang)
27101     {
27102         this.language = lang;
27103         this.editorcore.language = lang;
27104         this.editorcore.updateLanguage();
27105      
27106     },
27107     // private
27108     deferFocus : function(){
27109         this.focus.defer(10, this);
27110     },
27111
27112     // doc'ed in Field
27113     focus : function(){
27114         this.editorcore.focus();
27115         
27116     },
27117       
27118
27119     // private
27120     onDestroy : function(){
27121         
27122         
27123         
27124         if(this.rendered){
27125             
27126             for (var i =0; i < this.toolbars.length;i++) {
27127                 // fixme - ask toolbars for heights?
27128                 this.toolbars[i].onDestroy();
27129             }
27130             
27131             this.wrap.dom.innerHTML = '';
27132             this.wrap.remove();
27133         }
27134     },
27135
27136     // private
27137     onFirstFocus : function(){
27138         //Roo.log("onFirstFocus");
27139         this.editorcore.onFirstFocus();
27140          for (var i =0; i < this.toolbars.length;i++) {
27141             this.toolbars[i].onFirstFocus();
27142         }
27143         
27144     },
27145     
27146     // private
27147     syncValue : function()
27148     {
27149         this.editorcore.syncValue();
27150     },
27151     
27152     pushValue : function()
27153     {
27154         this.editorcore.pushValue();
27155     },
27156     
27157     setStylesheets : function(stylesheets)
27158     {
27159         this.editorcore.setStylesheets(stylesheets);
27160     },
27161     
27162     removeStylesheets : function()
27163     {
27164         this.editorcore.removeStylesheets();
27165     }
27166      
27167     
27168     // hide stuff that is not compatible
27169     /**
27170      * @event blur
27171      * @hide
27172      */
27173     /**
27174      * @event change
27175      * @hide
27176      */
27177     /**
27178      * @event focus
27179      * @hide
27180      */
27181     /**
27182      * @event specialkey
27183      * @hide
27184      */
27185     /**
27186      * @cfg {String} fieldClass @hide
27187      */
27188     /**
27189      * @cfg {String} focusClass @hide
27190      */
27191     /**
27192      * @cfg {String} autoCreate @hide
27193      */
27194     /**
27195      * @cfg {String} inputType @hide
27196      */
27197     /**
27198      * @cfg {String} invalidClass @hide
27199      */
27200     /**
27201      * @cfg {String} invalidText @hide
27202      */
27203     /**
27204      * @cfg {String} msgFx @hide
27205      */
27206     /**
27207      * @cfg {String} validateOnBlur @hide
27208      */
27209 });
27210  
27211     // <script type="text/javascript">
27212 /*
27213  * Based on
27214  * Ext JS Library 1.1.1
27215  * Copyright(c) 2006-2007, Ext JS, LLC.
27216  *  
27217  
27218  */
27219
27220 /**
27221  * @class Roo.form.HtmlEditorToolbar1
27222  * Basic Toolbar
27223  * 
27224  * Usage:
27225  *
27226  new Roo.form.HtmlEditor({
27227     ....
27228     toolbars : [
27229         new Roo.form.HtmlEditorToolbar1({
27230             disable : { fonts: 1 , format: 1, ..., ... , ...],
27231             btns : [ .... ]
27232         })
27233     }
27234      
27235  * 
27236  * @cfg {Object} disable List of elements to disable..
27237  * @cfg {Array} btns List of additional buttons.
27238  * 
27239  * 
27240  * NEEDS Extra CSS? 
27241  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
27242  */
27243  
27244 Roo.form.HtmlEditor.ToolbarStandard = function(config)
27245 {
27246     
27247     Roo.apply(this, config);
27248     
27249     // default disabled, based on 'good practice'..
27250     this.disable = this.disable || {};
27251     Roo.applyIf(this.disable, {
27252         fontSize : true,
27253         colors : true,
27254         specialElements : true
27255     });
27256     
27257     
27258     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
27259     // dont call parent... till later.
27260 }
27261
27262 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
27263     
27264     tb: false,
27265     
27266     rendered: false,
27267     
27268     editor : false,
27269     editorcore : false,
27270     /**
27271      * @cfg {Object} disable  List of toolbar elements to disable
27272          
27273      */
27274     disable : false,
27275     
27276     
27277      /**
27278      * @cfg {String} createLinkText The default text for the create link prompt
27279      */
27280     createLinkText : 'Please enter the URL for the link:',
27281     /**
27282      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
27283      */
27284     defaultLinkValue : 'http:/'+'/',
27285    
27286     
27287       /**
27288      * @cfg {Array} fontFamilies An array of available font families
27289      */
27290     fontFamilies : [
27291         'Arial',
27292         'Courier New',
27293         'Tahoma',
27294         'Times New Roman',
27295         'Verdana'
27296     ],
27297     
27298     specialChars : [
27299            "&#169;",
27300           "&#174;",     
27301           "&#8482;",    
27302           "&#163;" ,    
27303          // "&#8212;",    
27304           "&#8230;",    
27305           "&#247;" ,    
27306         //  "&#225;" ,     ?? a acute?
27307            "&#8364;"    , //Euro
27308        //   "&#8220;"    ,
27309         //  "&#8221;"    ,
27310         //  "&#8226;"    ,
27311           "&#176;"  //   , // degrees
27312
27313          // "&#233;"     , // e ecute
27314          // "&#250;"     , // u ecute?
27315     ],
27316     
27317     specialElements : [
27318         {
27319             text: "Insert Table",
27320             xtype: 'MenuItem',
27321             xns : Roo.Menu,
27322             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
27323                 
27324         },
27325         {    
27326             text: "Insert Image",
27327             xtype: 'MenuItem',
27328             xns : Roo.Menu,
27329             ihtml : '<img src="about:blank"/>'
27330             
27331         }
27332         
27333          
27334     ],
27335     
27336     
27337     inputElements : [ 
27338             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
27339             "input:submit", "input:button", "select", "textarea", "label" ],
27340     formats : [
27341         ["p"] ,  
27342         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
27343         ["pre"],[ "code"], 
27344         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
27345         ['div'],['span'],
27346         ['sup'],['sub']
27347     ],
27348     
27349     cleanStyles : [
27350         "font-size"
27351     ],
27352      /**
27353      * @cfg {String} defaultFont default font to use.
27354      */
27355     defaultFont: 'tahoma',
27356    
27357     fontSelect : false,
27358     
27359     
27360     formatCombo : false,
27361     
27362     init : function(editor)
27363     {
27364         this.editor = editor;
27365         this.editorcore = editor.editorcore ? editor.editorcore : editor;
27366         var editorcore = this.editorcore;
27367         
27368         var _t = this;
27369         
27370         var fid = editorcore.frameId;
27371         var etb = this;
27372         function btn(id, toggle, handler){
27373             var xid = fid + '-'+ id ;
27374             return {
27375                 id : xid,
27376                 cmd : id,
27377                 cls : 'x-btn-icon x-edit-'+id,
27378                 enableToggle:toggle !== false,
27379                 scope: _t, // was editor...
27380                 handler:handler||_t.relayBtnCmd,
27381                 clickEvent:'mousedown',
27382                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
27383                 tabIndex:-1
27384             };
27385         }
27386         
27387         
27388         
27389         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
27390         this.tb = tb;
27391          // stop form submits
27392         tb.el.on('click', function(e){
27393             e.preventDefault(); // what does this do?
27394         });
27395
27396         if(!this.disable.font) { // && !Roo.isSafari){
27397             /* why no safari for fonts 
27398             editor.fontSelect = tb.el.createChild({
27399                 tag:'select',
27400                 tabIndex: -1,
27401                 cls:'x-font-select',
27402                 html: this.createFontOptions()
27403             });
27404             
27405             editor.fontSelect.on('change', function(){
27406                 var font = editor.fontSelect.dom.value;
27407                 editor.relayCmd('fontname', font);
27408                 editor.deferFocus();
27409             }, editor);
27410             
27411             tb.add(
27412                 editor.fontSelect.dom,
27413                 '-'
27414             );
27415             */
27416             
27417         };
27418         if(!this.disable.formats){
27419             this.formatCombo = new Roo.form.ComboBox({
27420                 store: new Roo.data.SimpleStore({
27421                     id : 'tag',
27422                     fields: ['tag'],
27423                     data : this.formats // from states.js
27424                 }),
27425                 blockFocus : true,
27426                 name : '',
27427                 //autoCreate : {tag: "div",  size: "20"},
27428                 displayField:'tag',
27429                 typeAhead: false,
27430                 mode: 'local',
27431                 editable : false,
27432                 triggerAction: 'all',
27433                 emptyText:'Add tag',
27434                 selectOnFocus:true,
27435                 width:135,
27436                 listeners : {
27437                     'select': function(c, r, i) {
27438                         editorcore.insertTag(r.get('tag'));
27439                         editor.focus();
27440                     }
27441                 }
27442
27443             });
27444             tb.addField(this.formatCombo);
27445             
27446         }
27447         
27448         if(!this.disable.format){
27449             tb.add(
27450                 btn('bold'),
27451                 btn('italic'),
27452                 btn('underline'),
27453                 btn('strikethrough')
27454             );
27455         };
27456         if(!this.disable.fontSize){
27457             tb.add(
27458                 '-',
27459                 
27460                 
27461                 btn('increasefontsize', false, editorcore.adjustFont),
27462                 btn('decreasefontsize', false, editorcore.adjustFont)
27463             );
27464         };
27465         
27466         
27467         if(!this.disable.colors){
27468             tb.add(
27469                 '-', {
27470                     id:editorcore.frameId +'-forecolor',
27471                     cls:'x-btn-icon x-edit-forecolor',
27472                     clickEvent:'mousedown',
27473                     tooltip: this.buttonTips['forecolor'] || undefined,
27474                     tabIndex:-1,
27475                     menu : new Roo.menu.ColorMenu({
27476                         allowReselect: true,
27477                         focus: Roo.emptyFn,
27478                         value:'000000',
27479                         plain:true,
27480                         selectHandler: function(cp, color){
27481                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
27482                             editor.deferFocus();
27483                         },
27484                         scope: editorcore,
27485                         clickEvent:'mousedown'
27486                     })
27487                 }, {
27488                     id:editorcore.frameId +'backcolor',
27489                     cls:'x-btn-icon x-edit-backcolor',
27490                     clickEvent:'mousedown',
27491                     tooltip: this.buttonTips['backcolor'] || undefined,
27492                     tabIndex:-1,
27493                     menu : new Roo.menu.ColorMenu({
27494                         focus: Roo.emptyFn,
27495                         value:'FFFFFF',
27496                         plain:true,
27497                         allowReselect: true,
27498                         selectHandler: function(cp, color){
27499                             if(Roo.isGecko){
27500                                 editorcore.execCmd('useCSS', false);
27501                                 editorcore.execCmd('hilitecolor', color);
27502                                 editorcore.execCmd('useCSS', true);
27503                                 editor.deferFocus();
27504                             }else{
27505                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
27506                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
27507                                 editor.deferFocus();
27508                             }
27509                         },
27510                         scope:editorcore,
27511                         clickEvent:'mousedown'
27512                     })
27513                 }
27514             );
27515         };
27516         // now add all the items...
27517         
27518
27519         if(!this.disable.alignments){
27520             tb.add(
27521                 '-',
27522                 btn('justifyleft'),
27523                 btn('justifycenter'),
27524                 btn('justifyright')
27525             );
27526         };
27527
27528         //if(!Roo.isSafari){
27529             if(!this.disable.links){
27530                 tb.add(
27531                     '-',
27532                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
27533                 );
27534             };
27535
27536             if(!this.disable.lists){
27537                 tb.add(
27538                     '-',
27539                     btn('insertorderedlist'),
27540                     btn('insertunorderedlist')
27541                 );
27542             }
27543             if(!this.disable.sourceEdit){
27544                 tb.add(
27545                     '-',
27546                     btn('sourceedit', true, function(btn){
27547                         this.toggleSourceEdit(btn.pressed);
27548                     })
27549                 );
27550             }
27551         //}
27552         
27553         var smenu = { };
27554         // special menu.. - needs to be tidied up..
27555         if (!this.disable.special) {
27556             smenu = {
27557                 text: "&#169;",
27558                 cls: 'x-edit-none',
27559                 
27560                 menu : {
27561                     items : []
27562                 }
27563             };
27564             for (var i =0; i < this.specialChars.length; i++) {
27565                 smenu.menu.items.push({
27566                     
27567                     html: this.specialChars[i],
27568                     handler: function(a,b) {
27569                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
27570                         //editor.insertAtCursor(a.html);
27571                         
27572                     },
27573                     tabIndex:-1
27574                 });
27575             }
27576             
27577             
27578             tb.add(smenu);
27579             
27580             
27581         }
27582         
27583         var cmenu = { };
27584         if (!this.disable.cleanStyles) {
27585             cmenu = {
27586                 cls: 'x-btn-icon x-btn-clear',
27587                 
27588                 menu : {
27589                     items : []
27590                 }
27591             };
27592             for (var i =0; i < this.cleanStyles.length; i++) {
27593                 cmenu.menu.items.push({
27594                     actiontype : this.cleanStyles[i],
27595                     html: 'Remove ' + this.cleanStyles[i],
27596                     handler: function(a,b) {
27597 //                        Roo.log(a);
27598 //                        Roo.log(b);
27599                         var c = Roo.get(editorcore.doc.body);
27600                         c.select('[style]').each(function(s) {
27601                             s.dom.style.removeProperty(a.actiontype);
27602                         });
27603                         editorcore.syncValue();
27604                     },
27605                     tabIndex:-1
27606                 });
27607             }
27608             cmenu.menu.items.push({
27609                 actiontype : 'tablewidths',
27610                 html: 'Remove Table Widths',
27611                 handler: function(a,b) {
27612                     editorcore.cleanTableWidths();
27613                     editorcore.syncValue();
27614                 },
27615                 tabIndex:-1
27616             });
27617             cmenu.menu.items.push({
27618                 actiontype : 'word',
27619                 html: 'Remove MS Word Formating',
27620                 handler: function(a,b) {
27621                     editorcore.cleanWord();
27622                     editorcore.syncValue();
27623                 },
27624                 tabIndex:-1
27625             });
27626             
27627             cmenu.menu.items.push({
27628                 actiontype : 'all',
27629                 html: 'Remove All Styles',
27630                 handler: function(a,b) {
27631                     
27632                     var c = Roo.get(editorcore.doc.body);
27633                     c.select('[style]').each(function(s) {
27634                         s.dom.removeAttribute('style');
27635                     });
27636                     editorcore.syncValue();
27637                 },
27638                 tabIndex:-1
27639             });
27640             
27641             cmenu.menu.items.push({
27642                 actiontype : 'all',
27643                 html: 'Remove All CSS Classes',
27644                 handler: function(a,b) {
27645                     
27646                     var c = Roo.get(editorcore.doc.body);
27647                     c.select('[class]').each(function(s) {
27648                         s.dom.removeAttribute('class');
27649                     });
27650                     editorcore.cleanWord();
27651                     editorcore.syncValue();
27652                 },
27653                 tabIndex:-1
27654             });
27655             
27656              cmenu.menu.items.push({
27657                 actiontype : 'tidy',
27658                 html: 'Tidy HTML Source',
27659                 handler: function(a,b) {
27660                     new Roo.htmleditor.Tidy(editorcore.doc.body);
27661                     editorcore.syncValue();
27662                 },
27663                 tabIndex:-1
27664             });
27665             
27666             
27667             tb.add(cmenu);
27668         }
27669          
27670         if (!this.disable.specialElements) {
27671             var semenu = {
27672                 text: "Other;",
27673                 cls: 'x-edit-none',
27674                 menu : {
27675                     items : []
27676                 }
27677             };
27678             for (var i =0; i < this.specialElements.length; i++) {
27679                 semenu.menu.items.push(
27680                     Roo.apply({ 
27681                         handler: function(a,b) {
27682                             editor.insertAtCursor(this.ihtml);
27683                         }
27684                     }, this.specialElements[i])
27685                 );
27686                     
27687             }
27688             
27689             tb.add(semenu);
27690             
27691             
27692         }
27693          
27694         
27695         if (this.btns) {
27696             for(var i =0; i< this.btns.length;i++) {
27697                 var b = Roo.factory(this.btns[i],this.btns[i].xns || Roo.form);
27698                 b.cls =  'x-edit-none';
27699                 
27700                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
27701                     b.cls += ' x-init-enable';
27702                 }
27703                 
27704                 b.scope = editorcore;
27705                 tb.add(b);
27706             }
27707         
27708         }
27709         
27710         
27711         
27712         // disable everything...
27713         
27714         this.tb.items.each(function(item){
27715             
27716            if(
27717                 item.id != editorcore.frameId+ '-sourceedit' && 
27718                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
27719             ){
27720                 
27721                 item.disable();
27722             }
27723         });
27724         this.rendered = true;
27725         
27726         // the all the btns;
27727         editor.on('editorevent', this.updateToolbar, this);
27728         // other toolbars need to implement this..
27729         //editor.on('editmodechange', this.updateToolbar, this);
27730     },
27731     
27732     
27733     relayBtnCmd : function(btn) {
27734         this.editorcore.relayCmd(btn.cmd);
27735     },
27736     // private used internally
27737     createLink : function(){
27738         Roo.log("create link?");
27739         var ec = this.editorcore;
27740         Roo.MessageBox.prompt("Add Link URL",this.createLinkText, function(url) {
27741             if(url && url != 'http:/'+'/'){
27742                 ec.relayCmd('createlink', url);
27743             }
27744         });
27745         
27746     },
27747
27748     
27749     /**
27750      * Protected method that will not generally be called directly. It triggers
27751      * a toolbar update by reading the markup state of the current selection in the editor.
27752      */
27753     updateToolbar: function(){
27754
27755         if(!this.editorcore.activated){
27756             this.editor.onFirstFocus();
27757             return;
27758         }
27759
27760         var btns = this.tb.items.map, 
27761             doc = this.editorcore.doc,
27762             frameId = this.editorcore.frameId;
27763
27764         if(!this.disable.font && !Roo.isSafari){
27765             /*
27766             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
27767             if(name != this.fontSelect.dom.value){
27768                 this.fontSelect.dom.value = name;
27769             }
27770             */
27771         }
27772         if(!this.disable.format){
27773             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
27774             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
27775             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
27776             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
27777         }
27778         if(!this.disable.alignments){
27779             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
27780             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
27781             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
27782         }
27783         if(!Roo.isSafari && !this.disable.lists){
27784             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
27785             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
27786         }
27787         
27788         var ans = this.editorcore.getAllAncestors();
27789         if (this.formatCombo) {
27790             
27791             
27792             var store = this.formatCombo.store;
27793             this.formatCombo.setValue("");
27794             for (var i =0; i < ans.length;i++) {
27795                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
27796                     // select it..
27797                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
27798                     break;
27799                 }
27800             }
27801         }
27802         
27803         
27804         
27805         // hides menus... - so this cant be on a menu...
27806         Roo.menu.MenuMgr.hideAll();
27807
27808         //this.editorsyncValue();
27809     },
27810    
27811     
27812     createFontOptions : function(){
27813         var buf = [], fs = this.fontFamilies, ff, lc;
27814         
27815         
27816         
27817         for(var i = 0, len = fs.length; i< len; i++){
27818             ff = fs[i];
27819             lc = ff.toLowerCase();
27820             buf.push(
27821                 '<option value="',lc,'" style="font-family:',ff,';"',
27822                     (this.defaultFont == lc ? ' selected="true">' : '>'),
27823                     ff,
27824                 '</option>'
27825             );
27826         }
27827         return buf.join('');
27828     },
27829     
27830     toggleSourceEdit : function(sourceEditMode){
27831         
27832         Roo.log("toolbar toogle");
27833         if(sourceEditMode === undefined){
27834             sourceEditMode = !this.sourceEditMode;
27835         }
27836         this.sourceEditMode = sourceEditMode === true;
27837         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
27838         // just toggle the button?
27839         if(btn.pressed !== this.sourceEditMode){
27840             btn.toggle(this.sourceEditMode);
27841             return;
27842         }
27843         
27844         if(sourceEditMode){
27845             Roo.log("disabling buttons");
27846             this.tb.items.each(function(item){
27847                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
27848                     item.disable();
27849                 }
27850             });
27851           
27852         }else{
27853             Roo.log("enabling buttons");
27854             if(this.editorcore.initialized){
27855                 this.tb.items.each(function(item){
27856                     item.enable();
27857                 });
27858                 // initialize 'blocks'
27859                 Roo.each(Roo.get(this.editorcore.doc.body).query('*[data-block]'), function(e) {
27860                     Roo.htmleditor.Block.factory(e).updateElement(e);
27861                 },this);
27862             
27863             }
27864             
27865         }
27866         Roo.log("calling toggole on editor");
27867         // tell the editor that it's been pressed..
27868         this.editor.toggleSourceEdit(sourceEditMode);
27869        
27870     },
27871      /**
27872      * Object collection of toolbar tooltips for the buttons in the editor. The key
27873      * is the command id associated with that button and the value is a valid QuickTips object.
27874      * For example:
27875 <pre><code>
27876 {
27877     bold : {
27878         title: 'Bold (Ctrl+B)',
27879         text: 'Make the selected text bold.',
27880         cls: 'x-html-editor-tip'
27881     },
27882     italic : {
27883         title: 'Italic (Ctrl+I)',
27884         text: 'Make the selected text italic.',
27885         cls: 'x-html-editor-tip'
27886     },
27887     ...
27888 </code></pre>
27889     * @type Object
27890      */
27891     buttonTips : {
27892         bold : {
27893             title: 'Bold (Ctrl+B)',
27894             text: 'Make the selected text bold.',
27895             cls: 'x-html-editor-tip'
27896         },
27897         italic : {
27898             title: 'Italic (Ctrl+I)',
27899             text: 'Make the selected text italic.',
27900             cls: 'x-html-editor-tip'
27901         },
27902         underline : {
27903             title: 'Underline (Ctrl+U)',
27904             text: 'Underline the selected text.',
27905             cls: 'x-html-editor-tip'
27906         },
27907         strikethrough : {
27908             title: 'Strikethrough',
27909             text: 'Strikethrough the selected text.',
27910             cls: 'x-html-editor-tip'
27911         },
27912         increasefontsize : {
27913             title: 'Grow Text',
27914             text: 'Increase the font size.',
27915             cls: 'x-html-editor-tip'
27916         },
27917         decreasefontsize : {
27918             title: 'Shrink Text',
27919             text: 'Decrease the font size.',
27920             cls: 'x-html-editor-tip'
27921         },
27922         backcolor : {
27923             title: 'Text Highlight Color',
27924             text: 'Change the background color of the selected text.',
27925             cls: 'x-html-editor-tip'
27926         },
27927         forecolor : {
27928             title: 'Font Color',
27929             text: 'Change the color of the selected text.',
27930             cls: 'x-html-editor-tip'
27931         },
27932         justifyleft : {
27933             title: 'Align Text Left',
27934             text: 'Align text to the left.',
27935             cls: 'x-html-editor-tip'
27936         },
27937         justifycenter : {
27938             title: 'Center Text',
27939             text: 'Center text in the editor.',
27940             cls: 'x-html-editor-tip'
27941         },
27942         justifyright : {
27943             title: 'Align Text Right',
27944             text: 'Align text to the right.',
27945             cls: 'x-html-editor-tip'
27946         },
27947         insertunorderedlist : {
27948             title: 'Bullet List',
27949             text: 'Start a bulleted list.',
27950             cls: 'x-html-editor-tip'
27951         },
27952         insertorderedlist : {
27953             title: 'Numbered List',
27954             text: 'Start a numbered list.',
27955             cls: 'x-html-editor-tip'
27956         },
27957         createlink : {
27958             title: 'Hyperlink',
27959             text: 'Make the selected text a hyperlink.',
27960             cls: 'x-html-editor-tip'
27961         },
27962         sourceedit : {
27963             title: 'Source Edit',
27964             text: 'Switch to source editing mode.',
27965             cls: 'x-html-editor-tip'
27966         }
27967     },
27968     // private
27969     onDestroy : function(){
27970         if(this.rendered){
27971             
27972             this.tb.items.each(function(item){
27973                 if(item.menu){
27974                     item.menu.removeAll();
27975                     if(item.menu.el){
27976                         item.menu.el.destroy();
27977                     }
27978                 }
27979                 item.destroy();
27980             });
27981              
27982         }
27983     },
27984     onFirstFocus: function() {
27985         this.tb.items.each(function(item){
27986            item.enable();
27987         });
27988     }
27989 });
27990
27991
27992
27993
27994 // <script type="text/javascript">
27995 /*
27996  * Based on
27997  * Ext JS Library 1.1.1
27998  * Copyright(c) 2006-2007, Ext JS, LLC.
27999  *  
28000  
28001  */
28002
28003  
28004 /**
28005  * @class Roo.form.HtmlEditor.ToolbarContext
28006  * Context Toolbar
28007  * 
28008  * Usage:
28009  *
28010  new Roo.form.HtmlEditor({
28011     ....
28012     toolbars : [
28013         { xtype: 'ToolbarStandard', styles : {} }
28014         { xtype: 'ToolbarContext', disable : {} }
28015     ]
28016 })
28017
28018      
28019  * 
28020  * @config : {Object} disable List of elements to disable.. (not done yet.)
28021  * @config : {Object} styles  Map of styles available.
28022  * 
28023  */
28024
28025 Roo.form.HtmlEditor.ToolbarContext = function(config)
28026 {
28027     
28028     Roo.apply(this, config);
28029     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
28030     // dont call parent... till later.
28031     this.styles = this.styles || {};
28032 }
28033
28034  
28035
28036 Roo.form.HtmlEditor.ToolbarContext.types = {
28037     'IMG' : [
28038         {
28039             name : 'width',
28040             title: "Width",
28041             width: 40
28042         },
28043         {
28044             name : 'height',
28045             title: "Height",
28046             width: 40
28047         },
28048         {
28049             name : 'align',
28050             title: "Align",
28051             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
28052             width : 80
28053             
28054         },
28055         {
28056             name : 'border',
28057             title: "Border",
28058             width: 40
28059         },
28060         {
28061             name : 'alt',
28062             title: "Alt",
28063             width: 120
28064         },
28065         {
28066             name : 'src',
28067             title: "Src",
28068             width: 220
28069         }
28070         
28071     ],
28072     
28073     'FIGURE' : [
28074         {
28075             name : 'align',
28076             title: "Align",
28077             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
28078             width : 80  
28079         }
28080     ],
28081     'A' : [
28082         {
28083             name : 'name',
28084             title: "Name",
28085             width: 50
28086         },
28087         {
28088             name : 'target',
28089             title: "Target",
28090             width: 120
28091         },
28092         {
28093             name : 'href',
28094             title: "Href",
28095             width: 220
28096         } // border?
28097         
28098     ],
28099     
28100     'INPUT' : [
28101         {
28102             name : 'name',
28103             title: "name",
28104             width: 120
28105         },
28106         {
28107             name : 'value',
28108             title: "Value",
28109             width: 120
28110         },
28111         {
28112             name : 'width',
28113             title: "Width",
28114             width: 40
28115         }
28116     ],
28117     'LABEL' : [
28118          {
28119             name : 'for',
28120             title: "For",
28121             width: 120
28122         }
28123     ],
28124     'TEXTAREA' : [
28125         {
28126             name : 'name',
28127             title: "name",
28128             width: 120
28129         },
28130         {
28131             name : 'rows',
28132             title: "Rows",
28133             width: 20
28134         },
28135         {
28136             name : 'cols',
28137             title: "Cols",
28138             width: 20
28139         }
28140     ],
28141     'SELECT' : [
28142         {
28143             name : 'name',
28144             title: "name",
28145             width: 120
28146         },
28147         {
28148             name : 'selectoptions',
28149             title: "Options",
28150             width: 200
28151         }
28152     ],
28153     
28154     // should we really allow this??
28155     // should this just be 
28156     'BODY' : [
28157         
28158         {
28159             name : 'title',
28160             title: "Title",
28161             width: 200,
28162             disabled : true
28163         }
28164     ],
28165  
28166     '*' : [
28167         // empty.
28168     ]
28169
28170 };
28171
28172 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
28173 Roo.form.HtmlEditor.ToolbarContext.stores = false;
28174
28175 Roo.form.HtmlEditor.ToolbarContext.options = {
28176         'font-family'  : [ 
28177                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
28178                 [ 'Courier New', 'Courier New'],
28179                 [ 'Tahoma', 'Tahoma'],
28180                 [ 'Times New Roman,serif', 'Times'],
28181                 [ 'Verdana','Verdana' ]
28182         ]
28183 };
28184
28185 // fixme - these need to be configurable..
28186  
28187
28188 //Roo.form.HtmlEditor.ToolbarContext.types
28189
28190
28191 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
28192     
28193     tb: false,
28194     
28195     rendered: false,
28196     
28197     editor : false,
28198     editorcore : false,
28199     /**
28200      * @cfg {Object} disable  List of toolbar elements to disable
28201          
28202      */
28203     disable : false,
28204     /**
28205      * @cfg {Object} styles List of styles 
28206      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
28207      *
28208      * These must be defined in the page, so they get rendered correctly..
28209      * .headline { }
28210      * TD.underline { }
28211      * 
28212      */
28213     styles : false,
28214     
28215     options: false,
28216     
28217     toolbars : false,
28218     
28219     init : function(editor)
28220     {
28221         this.editor = editor;
28222         this.editorcore = editor.editorcore ? editor.editorcore : editor;
28223         var editorcore = this.editorcore;
28224         
28225         var fid = editorcore.frameId;
28226         var etb = this;
28227         function btn(id, toggle, handler){
28228             var xid = fid + '-'+ id ;
28229             return {
28230                 id : xid,
28231                 cmd : id,
28232                 cls : 'x-btn-icon x-edit-'+id,
28233                 enableToggle:toggle !== false,
28234                 scope: editorcore, // was editor...
28235                 handler:handler||editorcore.relayBtnCmd,
28236                 clickEvent:'mousedown',
28237                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
28238                 tabIndex:-1
28239             };
28240         }
28241         // create a new element.
28242         var wdiv = editor.wrap.createChild({
28243                 tag: 'div'
28244             }, editor.wrap.dom.firstChild.nextSibling, true);
28245         
28246         // can we do this more than once??
28247         
28248          // stop form submits
28249       
28250  
28251         // disable everything...
28252         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
28253         this.toolbars = {};
28254         // block toolbars are built in updateToolbar when needed.
28255         for (var i in  ty) {
28256             
28257             this.toolbars[i] = this.buildToolbar(ty[i],i);
28258         }
28259         this.tb = this.toolbars.BODY;
28260         this.tb.el.show();
28261         this.buildFooter();
28262         this.footer.show();
28263         editor.on('hide', function( ) { this.footer.hide() }, this);
28264         editor.on('show', function( ) { this.footer.show() }, this);
28265         
28266          
28267         this.rendered = true;
28268         
28269         // the all the btns;
28270         editor.on('editorevent', this.updateToolbar, this);
28271         // other toolbars need to implement this..
28272         //editor.on('editmodechange', this.updateToolbar, this);
28273     },
28274     
28275     
28276     
28277     /**
28278      * Protected method that will not generally be called directly. It triggers
28279      * a toolbar update by reading the markup state of the current selection in the editor.
28280      *
28281      * Note you can force an update by calling on('editorevent', scope, false)
28282      */
28283     updateToolbar: function(editor ,ev, sel)
28284     {
28285         
28286         if (ev) {
28287             ev.stopEvent(); // se if we can stop this looping with mutiple events.
28288         }
28289         
28290         //Roo.log(ev);
28291         // capture mouse up - this is handy for selecting images..
28292         // perhaps should go somewhere else...
28293         if(!this.editorcore.activated){
28294              this.editor.onFirstFocus();
28295             return;
28296         }
28297         //Roo.log(ev ? ev.target : 'NOTARGET');
28298         
28299         
28300         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
28301         // selectNode - might want to handle IE?
28302         
28303         
28304         
28305         if (ev &&
28306             (ev.type == 'mouseup' || ev.type == 'click' ) &&
28307             ev.target && ev.target.tagName != 'BODY' ) { // && ev.target.tagName == 'IMG') {
28308             // they have click on an image...
28309             // let's see if we can change the selection...
28310             sel = ev.target;
28311             
28312             // this triggers looping?
28313             //this.editorcore.selectNode(sel);
28314              
28315         }
28316         
28317         // this forces an id..
28318         Array.from(this.editorcore.doc.body.querySelectorAll('.roo-ed-selection')).forEach(function(e) {
28319              e.classList.remove('roo-ed-selection');
28320         });
28321         //Roo.select('.roo-ed-selection', false, this.editorcore.doc).removeClass('roo-ed-selection');
28322         //Roo.get(node).addClass('roo-ed-selection');
28323       
28324         //var updateFooter = sel ? false : true; 
28325         
28326         
28327         var ans = this.editorcore.getAllAncestors();
28328         
28329         // pick
28330         var ty = Roo.form.HtmlEditor.ToolbarContext.types;
28331         
28332         if (!sel) { 
28333             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
28334             sel = sel ? sel : this.editorcore.doc.body;
28335             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
28336             
28337         }
28338         
28339         var tn = sel.tagName.toUpperCase();
28340         var lastSel = this.tb.selectedNode;
28341         this.tb.selectedNode = sel;
28342         var left_label = tn;
28343         
28344         // ok see if we are editing a block?
28345         
28346         var db = false;
28347         // you are not actually selecting the block.
28348         if (sel && sel.hasAttribute('data-block')) {
28349             db = sel;
28350         } else if (sel && sel.closest('[data-block]')) {
28351             
28352             db = sel.closest('[data-block]');
28353             //var cepar = sel.closest('[contenteditable=true]');
28354             //if (db && cepar && cepar.tagName != 'BODY') {
28355             //   db = false; // we are inside an editable block.. = not sure how we are going to handle nested blocks!?
28356             //}   
28357         }
28358         
28359         
28360         var block = false;
28361         //if (db && !sel.hasAttribute('contenteditable') && sel.getAttribute('contenteditable') != 'true' ) {
28362         if (db && this.editorcore.enableBlocks) {
28363             block = Roo.htmleditor.Block.factory(db);
28364             
28365             
28366             if (block) {
28367                  db.className = (
28368                         db.classList.length > 0  ? db.className + ' ' : ''
28369                     )  + 'roo-ed-selection';
28370                  
28371                  // since we removed it earlier... its not there..
28372                 tn = 'BLOCK.' + db.getAttribute('data-block');
28373                 
28374                 //this.editorcore.selectNode(db);
28375                 if (typeof(this.toolbars[tn]) == 'undefined') {
28376                    this.toolbars[tn] = this.buildToolbar( false  ,tn ,block.friendly_name, block);
28377                 }
28378                 this.toolbars[tn].selectedNode = db;
28379                 left_label = block.friendly_name;
28380                 ans = this.editorcore.getAllAncestors();
28381             }
28382             
28383                 
28384             
28385         }
28386         
28387         
28388         if (this.tb.name == tn && lastSel == this.tb.selectedNode && ev !== false) {
28389             return; // no change?
28390         }
28391         
28392         
28393           
28394         this.tb.el.hide();
28395         ///console.log("show: " + tn);
28396         this.tb =  typeof(this.toolbars[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
28397         
28398         this.tb.el.show();
28399         // update name
28400         this.tb.items.first().el.innerHTML = left_label + ':&nbsp;';
28401         
28402         
28403         // update attributes
28404         if (block && this.tb.fields) {
28405              
28406             this.tb.fields.each(function(e) {
28407                 e.setValue(block[e.name]);
28408             });
28409             
28410             
28411         } else  if (this.tb.fields && this.tb.selectedNode) {
28412             this.tb.fields.each( function(e) {
28413                 if (e.stylename) {
28414                     e.setValue(this.tb.selectedNode.style[e.stylename]);
28415                     return;
28416                 } 
28417                 e.setValue(this.tb.selectedNode.getAttribute(e.attrname));
28418             }, this);
28419             this.updateToolbarStyles(this.tb.selectedNode);  
28420         }
28421         
28422         
28423        
28424         Roo.menu.MenuMgr.hideAll();
28425
28426         
28427         
28428     
28429         // update the footer
28430         //
28431         this.updateFooter(ans);
28432              
28433     },
28434     
28435     updateToolbarStyles : function(sel)
28436     {
28437         var hasStyles = false;
28438         for(var i in this.styles) {
28439             hasStyles = true;
28440             break;
28441         }
28442         
28443         // update styles
28444         if (hasStyles && this.tb.hasStyles) { 
28445             var st = this.tb.fields.item(0);
28446             
28447             st.store.removeAll();
28448             var cn = sel.className.split(/\s+/);
28449             
28450             var avs = [];
28451             if (this.styles['*']) {
28452                 
28453                 Roo.each(this.styles['*'], function(v) {
28454                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
28455                 });
28456             }
28457             if (this.styles[tn]) { 
28458                 Roo.each(this.styles[tn], function(v) {
28459                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
28460                 });
28461             }
28462             
28463             st.store.loadData(avs);
28464             st.collapse();
28465             st.setValue(cn);
28466         }
28467     },
28468     
28469      
28470     updateFooter : function(ans)
28471     {
28472         var html = '';
28473         if (ans === false) {
28474             this.footDisp.dom.innerHTML = '';
28475             return;
28476         }
28477         
28478         this.footerEls = ans.reverse();
28479         Roo.each(this.footerEls, function(a,i) {
28480             if (!a) { return; }
28481             html += html.length ? ' &gt; '  :  '';
28482             
28483             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
28484             
28485         });
28486        
28487         // 
28488         var sz = this.footDisp.up('td').getSize();
28489         this.footDisp.dom.style.width = (sz.width -10) + 'px';
28490         this.footDisp.dom.style.marginLeft = '5px';
28491         
28492         this.footDisp.dom.style.overflow = 'hidden';
28493         
28494         this.footDisp.dom.innerHTML = html;
28495             
28496         
28497     },
28498    
28499        
28500     // private
28501     onDestroy : function(){
28502         if(this.rendered){
28503             
28504             this.tb.items.each(function(item){
28505                 if(item.menu){
28506                     item.menu.removeAll();
28507                     if(item.menu.el){
28508                         item.menu.el.destroy();
28509                     }
28510                 }
28511                 item.destroy();
28512             });
28513              
28514         }
28515     },
28516     onFirstFocus: function() {
28517         // need to do this for all the toolbars..
28518         this.tb.items.each(function(item){
28519            item.enable();
28520         });
28521     },
28522     buildToolbar: function(tlist, nm, friendly_name, block)
28523     {
28524         var editor = this.editor;
28525         var editorcore = this.editorcore;
28526          // create a new element.
28527         var wdiv = editor.wrap.createChild({
28528                 tag: 'div'
28529             }, editor.wrap.dom.firstChild.nextSibling, true);
28530         
28531        
28532         var tb = new Roo.Toolbar(wdiv);
28533         ///this.tb = tb; // << this sets the active toolbar..
28534         if (tlist === false && block) {
28535             tlist = block.contextMenu(this);
28536         }
28537         
28538         tb.hasStyles = false;
28539         tb.name = nm;
28540         
28541         tb.add((typeof(friendly_name) == 'undefined' ? nm : friendly_name) + ":&nbsp;");
28542         
28543         var styles = Array.from(this.styles);
28544         
28545         
28546         // styles...
28547         if (styles && styles.length) {
28548             tb.hasStyles = true;
28549             // this needs a multi-select checkbox...
28550             tb.addField( new Roo.form.ComboBox({
28551                 store: new Roo.data.SimpleStore({
28552                     id : 'val',
28553                     fields: ['val', 'selected'],
28554                     data : [] 
28555                 }),
28556                 name : '-roo-edit-className',
28557                 attrname : 'className',
28558                 displayField: 'val',
28559                 typeAhead: false,
28560                 mode: 'local',
28561                 editable : false,
28562                 triggerAction: 'all',
28563                 emptyText:'Select Style',
28564                 selectOnFocus:true,
28565                 width: 130,
28566                 listeners : {
28567                     'select': function(c, r, i) {
28568                         // initial support only for on class per el..
28569                         tb.selectedNode.className =  r ? r.get('val') : '';
28570                         editorcore.syncValue();
28571                     }
28572                 }
28573     
28574             }));
28575         }
28576         
28577         var tbc = Roo.form.HtmlEditor.ToolbarContext;
28578         
28579         
28580         for (var i = 0; i < tlist.length; i++) {
28581             
28582             // newer versions will use xtype cfg to create menus.
28583             if (typeof(tlist[i].xtype) != 'undefined') {
28584                 
28585                 tb[typeof(tlist[i].name)== 'undefined' ? 'add' : 'addField'](Roo.factory(tlist[i]));
28586                 
28587                 
28588                 continue;
28589             }
28590             
28591             var item = tlist[i];
28592             tb.add(item.title + ":&nbsp;");
28593             
28594             
28595             //optname == used so you can configure the options available..
28596             var opts = item.opts ? item.opts : false;
28597             if (item.optname) { // use the b
28598                 opts = Roo.form.HtmlEditor.ToolbarContext.options[item.optname];
28599            
28600             }
28601             
28602             if (opts) {
28603                 // opts == pulldown..
28604                 tb.addField( new Roo.form.ComboBox({
28605                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
28606                         id : 'val',
28607                         fields: ['val', 'display'],
28608                         data : opts  
28609                     }),
28610                     name : '-roo-edit-' + tlist[i].name,
28611                     
28612                     attrname : tlist[i].name,
28613                     stylename : item.style ? item.style : false,
28614                     
28615                     displayField: item.displayField ? item.displayField : 'val',
28616                     valueField :  'val',
28617                     typeAhead: false,
28618                     mode: typeof(tbc.stores[tlist[i].name]) != 'undefined'  ? 'remote' : 'local',
28619                     editable : false,
28620                     triggerAction: 'all',
28621                     emptyText:'Select',
28622                     selectOnFocus:true,
28623                     width: item.width ? item.width  : 130,
28624                     listeners : {
28625                         'select': function(c, r, i) {
28626                              
28627                             
28628                             if (c.stylename) {
28629                                 tb.selectedNode.style[c.stylename] =  r.get('val');
28630                                 editorcore.syncValue();
28631                                 return;
28632                             }
28633                             if (r === false) {
28634                                 tb.selectedNode.removeAttribute(c.attrname);
28635                                 editorcore.syncValue();
28636                                 return;
28637                             }
28638                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
28639                             editorcore.syncValue();
28640                         }
28641                     }
28642
28643                 }));
28644                 continue;
28645                     
28646                  
28647                 /*
28648                 tb.addField( new Roo.form.TextField({
28649                     name: i,
28650                     width: 100,
28651                     //allowBlank:false,
28652                     value: ''
28653                 }));
28654                 continue;
28655                 */
28656             }
28657             tb.addField( new Roo.form.TextField({
28658                 name: '-roo-edit-' + tlist[i].name,
28659                 attrname : tlist[i].name,
28660                 
28661                 width: item.width,
28662                 //allowBlank:true,
28663                 value: '',
28664                 listeners: {
28665                     'change' : function(f, nv, ov) {
28666                         
28667                          
28668                         tb.selectedNode.setAttribute(f.attrname, nv);
28669                         editorcore.syncValue();
28670                     }
28671                 }
28672             }));
28673              
28674         }
28675         
28676         var _this = this;
28677         var show_delete = !block || block.deleteTitle !== false;
28678         if(nm == 'BODY'){
28679             show_delete = false;
28680             tb.addSeparator();
28681         
28682             tb.addButton( {
28683                 text: 'Stylesheets',
28684
28685                 listeners : {
28686                     click : function ()
28687                     {
28688                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
28689                     }
28690                 }
28691             });
28692         }
28693         
28694         tb.addFill();
28695         if (show_delete) {
28696             tb.addButton({
28697                 text: block && block.deleteTitle ? block.deleteTitle  : 'Remove Block or Formating', // remove the tag, and puts the children outside...
28698         
28699                 listeners : {
28700                     click : function ()
28701                     {
28702                         var sn = tb.selectedNode;
28703                         if (block) {
28704                             sn = Roo.htmleditor.Block.factory(tb.selectedNode).removeNode();
28705                             
28706                         }
28707                         if (!sn) {
28708                             return;
28709                         }
28710                         var stn =  sn.childNodes[0] || sn.nextSibling || sn.previousSibling || sn.parentNode;
28711                         if (sn.hasAttribute('data-block')) {
28712                             stn =  sn.nextSibling || sn.previousSibling || sn.parentNode;
28713                             sn.parentNode.removeChild(sn);
28714                             
28715                         } else if (sn && sn.tagName != 'BODY') {
28716                             // remove and keep parents.
28717                             a = new Roo.htmleditor.FilterKeepChildren({tag : false});
28718                             a.replaceTag(sn);
28719                         }
28720                         
28721                         
28722                         var range = editorcore.createRange();
28723             
28724                         range.setStart(stn,0);
28725                         range.setEnd(stn,0); 
28726                         var selection = editorcore.getSelection();
28727                         selection.removeAllRanges();
28728                         selection.addRange(range);
28729                         
28730                         
28731                         //_this.updateToolbar(null, null, pn);
28732                         _this.updateToolbar(null, null, null);
28733                         _this.updateFooter(false);
28734                         
28735                     }
28736                 }
28737                 
28738                         
28739                     
28740                 
28741             });
28742         }    
28743         
28744         tb.el.on('click', function(e){
28745             e.preventDefault(); // what does this do?
28746         });
28747         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
28748         tb.el.hide();
28749         
28750         // dont need to disable them... as they will get hidden
28751         return tb;
28752          
28753         
28754     },
28755     buildFooter : function()
28756     {
28757         
28758         var fel = this.editor.wrap.createChild();
28759         this.footer = new Roo.Toolbar(fel);
28760         // toolbar has scrolly on left / right?
28761         var footDisp= new Roo.Toolbar.Fill();
28762         var _t = this;
28763         this.footer.add(
28764             {
28765                 text : '&lt;',
28766                 xtype: 'Button',
28767                 handler : function() {
28768                     _t.footDisp.scrollTo('left',0,true)
28769                 }
28770             }
28771         );
28772         this.footer.add( footDisp );
28773         this.footer.add( 
28774             {
28775                 text : '&gt;',
28776                 xtype: 'Button',
28777                 handler : function() {
28778                     // no animation..
28779                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
28780                 }
28781             }
28782         );
28783         var fel = Roo.get(footDisp.el);
28784         fel.addClass('x-editor-context');
28785         this.footDispWrap = fel; 
28786         this.footDispWrap.overflow  = 'hidden';
28787         
28788         this.footDisp = fel.createChild();
28789         this.footDispWrap.on('click', this.onContextClick, this)
28790         
28791         
28792     },
28793     // when the footer contect changes
28794     onContextClick : function (ev,dom)
28795     {
28796         ev.preventDefault();
28797         var  cn = dom.className;
28798         //Roo.log(cn);
28799         if (!cn.match(/x-ed-loc-/)) {
28800             return;
28801         }
28802         var n = cn.split('-').pop();
28803         var ans = this.footerEls;
28804         var sel = ans[n];
28805         
28806         this.editorcore.selectNode(sel);
28807         
28808         
28809         this.updateToolbar(null, null, sel);
28810         
28811         
28812     }
28813     
28814     
28815     
28816     
28817     
28818 });
28819
28820
28821
28822
28823
28824 /*
28825  * Based on:
28826  * Ext JS Library 1.1.1
28827  * Copyright(c) 2006-2007, Ext JS, LLC.
28828  *
28829  * Originally Released Under LGPL - original licence link has changed is not relivant.
28830  *
28831  * Fork - LGPL
28832  * <script type="text/javascript">
28833  */
28834  
28835 /**
28836  * @class Roo.form.BasicForm
28837  * @extends Roo.util.Observable
28838  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
28839  * @constructor
28840  * @param {String/HTMLElement/Roo.Element} el The form element or its id
28841  * @param {Object} config Configuration options
28842  */
28843 Roo.form.BasicForm = function(el, config){
28844     this.allItems = [];
28845     this.childForms = [];
28846     Roo.apply(this, config);
28847     /*
28848      * The Roo.form.Field items in this form.
28849      * @type MixedCollection
28850      */
28851      
28852      
28853     this.items = new Roo.util.MixedCollection(false, function(o){
28854         return o.id || (o.id = Roo.id());
28855     });
28856     this.addEvents({
28857         /**
28858          * @event beforeaction
28859          * Fires before any action is performed. Return false to cancel the action.
28860          * @param {Form} this
28861          * @param {Action} action The action to be performed
28862          */
28863         beforeaction: true,
28864         /**
28865          * @event actionfailed
28866          * Fires when an action fails.
28867          * @param {Form} this
28868          * @param {Action} action The action that failed
28869          */
28870         actionfailed : true,
28871         /**
28872          * @event actioncomplete
28873          * Fires when an action is completed.
28874          * @param {Form} this
28875          * @param {Action} action The action that completed
28876          */
28877         actioncomplete : true
28878     });
28879     if(el){
28880         this.initEl(el);
28881     }
28882     Roo.form.BasicForm.superclass.constructor.call(this);
28883     
28884     Roo.form.BasicForm.popover.apply();
28885 };
28886
28887 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
28888     /**
28889      * @cfg {String} method
28890      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
28891      */
28892     /**
28893      * @cfg {DataReader} reader
28894      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
28895      * This is optional as there is built-in support for processing JSON.
28896      */
28897     /**
28898      * @cfg {DataReader} errorReader
28899      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
28900      * This is completely optional as there is built-in support for processing JSON.
28901      */
28902     /**
28903      * @cfg {String} url
28904      * The URL to use for form actions if one isn't supplied in the action options.
28905      */
28906     /**
28907      * @cfg {Boolean} fileUpload
28908      * Set to true if this form is a file upload.
28909      */
28910      
28911     /**
28912      * @cfg {Object} baseParams
28913      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
28914      */
28915      /**
28916      
28917     /**
28918      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
28919      */
28920     timeout: 30,
28921
28922     // private
28923     activeAction : null,
28924
28925     /**
28926      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
28927      * or setValues() data instead of when the form was first created.
28928      */
28929     trackResetOnLoad : false,
28930     
28931     
28932     /**
28933      * childForms - used for multi-tab forms
28934      * @type {Array}
28935      */
28936     childForms : false,
28937     
28938     /**
28939      * allItems - full list of fields.
28940      * @type {Array}
28941      */
28942     allItems : false,
28943     
28944     /**
28945      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
28946      * element by passing it or its id or mask the form itself by passing in true.
28947      * @type Mixed
28948      */
28949     waitMsgTarget : false,
28950     
28951     /**
28952      * @type Boolean
28953      */
28954     disableMask : false,
28955     
28956     /**
28957      * @cfg {Boolean} errorMask (true|false) default false
28958      */
28959     errorMask : false,
28960     
28961     /**
28962      * @cfg {Number} maskOffset Default 100
28963      */
28964     maskOffset : 100,
28965
28966     // private
28967     initEl : function(el){
28968         this.el = Roo.get(el);
28969         this.id = this.el.id || Roo.id();
28970         this.el.on('submit', this.onSubmit, this);
28971         this.el.addClass('x-form');
28972     },
28973
28974     // private
28975     onSubmit : function(e){
28976         e.stopEvent();
28977     },
28978
28979     /**
28980      * Returns true if client-side validation on the form is successful.
28981      * @return Boolean
28982      */
28983     isValid : function(){
28984         var valid = true;
28985         var target = false;
28986         this.items.each(function(f){
28987             if(f.validate()){
28988                 return;
28989             }
28990             
28991             valid = false;
28992                 
28993             if(!target && f.el.isVisible(true)){
28994                 target = f;
28995             }
28996         });
28997         
28998         if(this.errorMask && !valid){
28999             Roo.form.BasicForm.popover.mask(this, target);
29000         }
29001         
29002         return valid;
29003     },
29004     /**
29005      * Returns array of invalid form fields.
29006      * @return Array
29007      */
29008     
29009     invalidFields : function()
29010     {
29011         var ret = [];
29012         this.items.each(function(f){
29013             if(f.validate()){
29014                 return;
29015             }
29016             ret.push(f);
29017             
29018         });
29019         
29020         return ret;
29021     },
29022     
29023     
29024     /**
29025      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
29026      * @return Boolean
29027      */
29028     isDirty : function(){
29029         var dirty = false;
29030         this.items.each(function(f){
29031            if(f.isDirty()){
29032                dirty = true;
29033                return false;
29034            }
29035         });
29036         return dirty;
29037     },
29038     
29039     /**
29040      * Returns true if any fields in this form have changed since their original load. (New version)
29041      * @return Boolean
29042      */
29043     
29044     hasChanged : function()
29045     {
29046         var dirty = false;
29047         this.items.each(function(f){
29048            if(f.hasChanged()){
29049                dirty = true;
29050                return false;
29051            }
29052         });
29053         return dirty;
29054         
29055     },
29056     /**
29057      * Resets all hasChanged to 'false' -
29058      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
29059      * So hasChanged storage is only to be used for this purpose
29060      * @return Boolean
29061      */
29062     resetHasChanged : function()
29063     {
29064         this.items.each(function(f){
29065            f.resetHasChanged();
29066         });
29067         
29068     },
29069     
29070     
29071     /**
29072      * Performs a predefined action (submit or load) or custom actions you define on this form.
29073      * @param {String} actionName The name of the action type
29074      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
29075      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
29076      * accept other config options):
29077      * <pre>
29078 Property          Type             Description
29079 ----------------  ---------------  ----------------------------------------------------------------------------------
29080 url               String           The url for the action (defaults to the form's url)
29081 method            String           The form method to use (defaults to the form's method, or POST if not defined)
29082 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
29083 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
29084                                    validate the form on the client (defaults to false)
29085      * </pre>
29086      * @return {BasicForm} this
29087      */
29088     doAction : function(action, options){
29089         if(typeof action == 'string'){
29090             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
29091         }
29092         if(this.fireEvent('beforeaction', this, action) !== false){
29093             this.beforeAction(action);
29094             action.run.defer(100, action);
29095         }
29096         return this;
29097     },
29098
29099     /**
29100      * Shortcut to do a submit action.
29101      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
29102      * @return {BasicForm} this
29103      */
29104     submit : function(options){
29105         this.doAction('submit', options);
29106         return this;
29107     },
29108
29109     /**
29110      * Shortcut to do a load action.
29111      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
29112      * @return {BasicForm} this
29113      */
29114     load : function(options){
29115         this.doAction('load', options);
29116         return this;
29117     },
29118
29119     /**
29120      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
29121      * @param {Record} record The record to edit
29122      * @return {BasicForm} this
29123      */
29124     updateRecord : function(record){
29125         record.beginEdit();
29126         var fs = record.fields;
29127         fs.each(function(f){
29128             var field = this.findField(f.name);
29129             if(field){
29130                 record.set(f.name, field.getValue());
29131             }
29132         }, this);
29133         record.endEdit();
29134         return this;
29135     },
29136
29137     /**
29138      * Loads an Roo.data.Record into this form.
29139      * @param {Record} record The record to load
29140      * @return {BasicForm} this
29141      */
29142     loadRecord : function(record){
29143         this.setValues(record.data);
29144         return this;
29145     },
29146
29147     // private
29148     beforeAction : function(action){
29149         var o = action.options;
29150         
29151         if(!this.disableMask) {
29152             if(this.waitMsgTarget === true){
29153                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
29154             }else if(this.waitMsgTarget){
29155                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
29156                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
29157             }else {
29158                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
29159             }
29160         }
29161         
29162          
29163     },
29164
29165     // private
29166     afterAction : function(action, success){
29167         this.activeAction = null;
29168         var o = action.options;
29169         
29170         if(!this.disableMask) {
29171             if(this.waitMsgTarget === true){
29172                 this.el.unmask();
29173             }else if(this.waitMsgTarget){
29174                 this.waitMsgTarget.unmask();
29175             }else{
29176                 Roo.MessageBox.updateProgress(1);
29177                 Roo.MessageBox.hide();
29178             }
29179         }
29180         
29181         if(success){
29182             if(o.reset){
29183                 this.reset();
29184             }
29185             Roo.callback(o.success, o.scope, [this, action]);
29186             this.fireEvent('actioncomplete', this, action);
29187             
29188         }else{
29189             
29190             // failure condition..
29191             // we have a scenario where updates need confirming.
29192             // eg. if a locking scenario exists..
29193             // we look for { errors : { needs_confirm : true }} in the response.
29194             if (
29195                 (typeof(action.result) != 'undefined')  &&
29196                 (typeof(action.result.errors) != 'undefined')  &&
29197                 (typeof(action.result.errors.needs_confirm) != 'undefined')
29198            ){
29199                 var _t = this;
29200                 Roo.MessageBox.confirm(
29201                     "Change requires confirmation",
29202                     action.result.errorMsg,
29203                     function(r) {
29204                         if (r != 'yes') {
29205                             return;
29206                         }
29207                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
29208                     }
29209                     
29210                 );
29211                 
29212                 
29213                 
29214                 return;
29215             }
29216             
29217             Roo.callback(o.failure, o.scope, [this, action]);
29218             // show an error message if no failed handler is set..
29219             if (!this.hasListener('actionfailed')) {
29220                 Roo.MessageBox.alert("Error",
29221                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
29222                         action.result.errorMsg :
29223                         "Saving Failed, please check your entries or try again"
29224                 );
29225             }
29226             
29227             this.fireEvent('actionfailed', this, action);
29228         }
29229         
29230     },
29231
29232     /**
29233      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
29234      * @param {String} id The value to search for
29235      * @return Field
29236      */
29237     findField : function(id){
29238         var field = this.items.get(id);
29239         if(!field){
29240             this.items.each(function(f){
29241                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
29242                     field = f;
29243                     return false;
29244                 }
29245             });
29246         }
29247         return field || null;
29248     },
29249
29250     /**
29251      * Add a secondary form to this one, 
29252      * Used to provide tabbed forms. One form is primary, with hidden values 
29253      * which mirror the elements from the other forms.
29254      * 
29255      * @param {Roo.form.Form} form to add.
29256      * 
29257      */
29258     addForm : function(form)
29259     {
29260        
29261         if (this.childForms.indexOf(form) > -1) {
29262             // already added..
29263             return;
29264         }
29265         this.childForms.push(form);
29266         var n = '';
29267         Roo.each(form.allItems, function (fe) {
29268             
29269             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
29270             if (this.findField(n)) { // already added..
29271                 return;
29272             }
29273             var add = new Roo.form.Hidden({
29274                 name : n
29275             });
29276             add.render(this.el);
29277             
29278             this.add( add );
29279         }, this);
29280         
29281     },
29282     /**
29283      * Mark fields in this form invalid in bulk.
29284      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
29285      * @return {BasicForm} this
29286      */
29287     markInvalid : function(errors){
29288         if(errors instanceof Array){
29289             for(var i = 0, len = errors.length; i < len; i++){
29290                 var fieldError = errors[i];
29291                 var f = this.findField(fieldError.id);
29292                 if(f){
29293                     f.markInvalid(fieldError.msg);
29294                 }
29295             }
29296         }else{
29297             var field, id;
29298             for(id in errors){
29299                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
29300                     field.markInvalid(errors[id]);
29301                 }
29302             }
29303         }
29304         Roo.each(this.childForms || [], function (f) {
29305             f.markInvalid(errors);
29306         });
29307         
29308         return this;
29309     },
29310
29311     /**
29312      * Set values for fields in this form in bulk.
29313      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
29314      * @return {BasicForm} this
29315      */
29316     setValues : function(values){
29317         if(values instanceof Array){ // array of objects
29318             for(var i = 0, len = values.length; i < len; i++){
29319                 var v = values[i];
29320                 var f = this.findField(v.id);
29321                 if(f){
29322                     f.setValue(v.value);
29323                     if(this.trackResetOnLoad){
29324                         f.originalValue = f.getValue();
29325                     }
29326                 }
29327             }
29328         }else{ // object hash
29329             var field, id;
29330             for(id in values){
29331                 if(typeof values[id] != 'function' && (field = this.findField(id))){
29332                     
29333                     if (field.setFromData && 
29334                         field.valueField && 
29335                         field.displayField &&
29336                         // combos' with local stores can 
29337                         // be queried via setValue()
29338                         // to set their value..
29339                         (field.store && !field.store.isLocal)
29340                         ) {
29341                         // it's a combo
29342                         var sd = { };
29343                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
29344                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
29345                         field.setFromData(sd);
29346                         
29347                     } else {
29348                         field.setValue(values[id]);
29349                     }
29350                     
29351                     
29352                     if(this.trackResetOnLoad){
29353                         field.originalValue = field.getValue();
29354                     }
29355                 }
29356             }
29357         }
29358         this.resetHasChanged();
29359         
29360         
29361         Roo.each(this.childForms || [], function (f) {
29362             f.setValues(values);
29363             f.resetHasChanged();
29364         });
29365                 
29366         return this;
29367     },
29368  
29369     /**
29370      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
29371      * they are returned as an array.
29372      * @param {Boolean} asString
29373      * @return {Object}
29374      */
29375     getValues : function(asString)
29376     {
29377         if (this.childForms) {
29378             // copy values from the child forms
29379             Roo.each(this.childForms, function (f) {
29380                 this.setValues(f.getFieldValues()); // get the full set of data, as we might be copying comboboxes from external into this one.
29381             }, this);
29382         }
29383         
29384         // use formdata
29385         if (typeof(FormData) != 'undefined' && asString !== true) {
29386             // this relies on a 'recent' version of chrome apparently...
29387             try {
29388                 var fd = (new FormData(this.el.dom)).entries();
29389                 var ret = {};
29390                 var ent = fd.next();
29391                 while (!ent.done) {
29392                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
29393                     ent = fd.next();
29394                 };
29395                 return ret;
29396             } catch(e) {
29397                 
29398             }
29399             
29400         }
29401         
29402         
29403         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
29404         if(asString === true){
29405             return fs;
29406         }
29407         return Roo.urlDecode(fs);
29408     },
29409     
29410     /**
29411      * Returns the fields in this form as an object with key/value pairs. 
29412      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
29413      * Normally this will not return readOnly data 
29414      * @param {Boolean} with_readonly return readonly field data.
29415      * @return {Object}
29416      */
29417     getFieldValues : function(with_readonly)
29418     {
29419         if (this.childForms) {
29420             // copy values from the child forms
29421             // should this call getFieldValues - probably not as we do not currently copy
29422             // hidden fields when we generate..
29423             Roo.each(this.childForms, function (f) {
29424                 this.setValues(f.getFieldValues());
29425             }, this);
29426         }
29427         
29428         var ret = {};
29429         this.items.each(function(f){
29430             
29431             if (f.readOnly && with_readonly !== true) {
29432                 return; // skip read only values. - this is in theory to stop 'old' values being copied over new ones
29433                         // if a subform contains a copy of them.
29434                         // if you have subforms with the same editable data, you will need to copy the data back
29435                         // and forth.
29436             }
29437             
29438             if (!f.getName()) {
29439                 return;
29440             }
29441             var v = f.getValue();
29442             if (f.inputType =='radio') {
29443                 if (typeof(ret[f.getName()]) == 'undefined') {
29444                     ret[f.getName()] = ''; // empty..
29445                 }
29446                 
29447                 if (!f.el.dom.checked) {
29448                     return;
29449                     
29450                 }
29451                 v = f.el.dom.value;
29452                 
29453             }
29454             
29455             // not sure if this supported any more..
29456             if ((typeof(v) == 'object') && f.getRawValue) {
29457                 v = f.getRawValue() ; // dates..
29458             }
29459             // combo boxes where name != hiddenName...
29460             if (f.name != f.getName()) {
29461                 ret[f.name] = f.getRawValue();
29462             }
29463             ret[f.getName()] = v;
29464         });
29465         
29466         return ret;
29467     },
29468
29469     /**
29470      * Clears all invalid messages in this form.
29471      * @return {BasicForm} this
29472      */
29473     clearInvalid : function(){
29474         this.items.each(function(f){
29475            f.clearInvalid();
29476         });
29477         
29478         Roo.each(this.childForms || [], function (f) {
29479             f.clearInvalid();
29480         });
29481         
29482         
29483         return this;
29484     },
29485
29486     /**
29487      * Resets this form.
29488      * @return {BasicForm} this
29489      */
29490     reset : function(){
29491         this.items.each(function(f){
29492             f.reset();
29493         });
29494         
29495         Roo.each(this.childForms || [], function (f) {
29496             f.reset();
29497         });
29498         this.resetHasChanged();
29499         
29500         return this;
29501     },
29502
29503     /**
29504      * Add Roo.form components to this form.
29505      * @param {Field} field1
29506      * @param {Field} field2 (optional)
29507      * @param {Field} etc (optional)
29508      * @return {BasicForm} this
29509      */
29510     add : function(){
29511         this.items.addAll(Array.prototype.slice.call(arguments, 0));
29512         return this;
29513     },
29514
29515
29516     /**
29517      * Removes a field from the items collection (does NOT remove its markup).
29518      * @param {Field} field
29519      * @return {BasicForm} this
29520      */
29521     remove : function(field){
29522         this.items.remove(field);
29523         return this;
29524     },
29525
29526     /**
29527      * Looks at the fields in this form, checks them for an id attribute,
29528      * and calls applyTo on the existing dom element with that id.
29529      * @return {BasicForm} this
29530      */
29531     render : function(){
29532         this.items.each(function(f){
29533             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
29534                 f.applyTo(f.id);
29535             }
29536         });
29537         return this;
29538     },
29539
29540     /**
29541      * Calls {@link Ext#apply} for all fields in this form with the passed object.
29542      * @param {Object} values
29543      * @return {BasicForm} this
29544      */
29545     applyToFields : function(o){
29546         this.items.each(function(f){
29547            Roo.apply(f, o);
29548         });
29549         return this;
29550     },
29551
29552     /**
29553      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
29554      * @param {Object} values
29555      * @return {BasicForm} this
29556      */
29557     applyIfToFields : function(o){
29558         this.items.each(function(f){
29559            Roo.applyIf(f, o);
29560         });
29561         return this;
29562     }
29563 });
29564
29565 // back compat
29566 Roo.BasicForm = Roo.form.BasicForm;
29567
29568 Roo.apply(Roo.form.BasicForm, {
29569     
29570     popover : {
29571         
29572         padding : 5,
29573         
29574         isApplied : false,
29575         
29576         isMasked : false,
29577         
29578         form : false,
29579         
29580         target : false,
29581         
29582         intervalID : false,
29583         
29584         maskEl : false,
29585         
29586         apply : function()
29587         {
29588             if(this.isApplied){
29589                 return;
29590             }
29591             
29592             this.maskEl = {
29593                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
29594                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
29595                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
29596                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
29597             };
29598             
29599             this.maskEl.top.enableDisplayMode("block");
29600             this.maskEl.left.enableDisplayMode("block");
29601             this.maskEl.bottom.enableDisplayMode("block");
29602             this.maskEl.right.enableDisplayMode("block");
29603             
29604             Roo.get(document.body).on('click', function(){
29605                 this.unmask();
29606             }, this);
29607             
29608             Roo.get(document.body).on('touchstart', function(){
29609                 this.unmask();
29610             }, this);
29611             
29612             this.isApplied = true
29613         },
29614         
29615         mask : function(form, target)
29616         {
29617             this.form = form;
29618             
29619             this.target = target;
29620             
29621             if(!this.form.errorMask || !target.el){
29622                 return;
29623             }
29624             
29625             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
29626             
29627             var ot = this.target.el.calcOffsetsTo(scrollable);
29628             
29629             var scrollTo = ot[1] - this.form.maskOffset;
29630             
29631             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
29632             
29633             scrollable.scrollTo('top', scrollTo);
29634             
29635             var el = this.target.wrap || this.target.el;
29636             
29637             var box = el.getBox();
29638             
29639             this.maskEl.top.setStyle('position', 'absolute');
29640             this.maskEl.top.setStyle('z-index', 10000);
29641             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
29642             this.maskEl.top.setLeft(0);
29643             this.maskEl.top.setTop(0);
29644             this.maskEl.top.show();
29645             
29646             this.maskEl.left.setStyle('position', 'absolute');
29647             this.maskEl.left.setStyle('z-index', 10000);
29648             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
29649             this.maskEl.left.setLeft(0);
29650             this.maskEl.left.setTop(box.y - this.padding);
29651             this.maskEl.left.show();
29652
29653             this.maskEl.bottom.setStyle('position', 'absolute');
29654             this.maskEl.bottom.setStyle('z-index', 10000);
29655             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
29656             this.maskEl.bottom.setLeft(0);
29657             this.maskEl.bottom.setTop(box.bottom + this.padding);
29658             this.maskEl.bottom.show();
29659
29660             this.maskEl.right.setStyle('position', 'absolute');
29661             this.maskEl.right.setStyle('z-index', 10000);
29662             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
29663             this.maskEl.right.setLeft(box.right + this.padding);
29664             this.maskEl.right.setTop(box.y - this.padding);
29665             this.maskEl.right.show();
29666
29667             this.intervalID = window.setInterval(function() {
29668                 Roo.form.BasicForm.popover.unmask();
29669             }, 10000);
29670
29671             window.onwheel = function(){ return false;};
29672             
29673             (function(){ this.isMasked = true; }).defer(500, this);
29674             
29675         },
29676         
29677         unmask : function()
29678         {
29679             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
29680                 return;
29681             }
29682             
29683             this.maskEl.top.setStyle('position', 'absolute');
29684             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
29685             this.maskEl.top.hide();
29686
29687             this.maskEl.left.setStyle('position', 'absolute');
29688             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
29689             this.maskEl.left.hide();
29690
29691             this.maskEl.bottom.setStyle('position', 'absolute');
29692             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
29693             this.maskEl.bottom.hide();
29694
29695             this.maskEl.right.setStyle('position', 'absolute');
29696             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
29697             this.maskEl.right.hide();
29698             
29699             window.onwheel = function(){ return true;};
29700             
29701             if(this.intervalID){
29702                 window.clearInterval(this.intervalID);
29703                 this.intervalID = false;
29704             }
29705             
29706             this.isMasked = false;
29707             
29708         }
29709         
29710     }
29711     
29712 });/*
29713  * Based on:
29714  * Ext JS Library 1.1.1
29715  * Copyright(c) 2006-2007, Ext JS, LLC.
29716  *
29717  * Originally Released Under LGPL - original licence link has changed is not relivant.
29718  *
29719  * Fork - LGPL
29720  * <script type="text/javascript">
29721  */
29722
29723 /**
29724  * @class Roo.form.Form
29725  * @extends Roo.form.BasicForm
29726  * @children Roo.form.Column Roo.form.FieldSet Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
29727  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
29728  * @constructor
29729  * @param {Object} config Configuration options
29730  */
29731 Roo.form.Form = function(config){
29732     var xitems =  [];
29733     if (config.items) {
29734         xitems = config.items;
29735         delete config.items;
29736     }
29737    
29738     
29739     Roo.form.Form.superclass.constructor.call(this, null, config);
29740     this.url = this.url || this.action;
29741     if(!this.root){
29742         this.root = new Roo.form.Layout(Roo.applyIf({
29743             id: Roo.id()
29744         }, config));
29745     }
29746     this.active = this.root;
29747     /**
29748      * Array of all the buttons that have been added to this form via {@link addButton}
29749      * @type Array
29750      */
29751     this.buttons = [];
29752     this.allItems = [];
29753     this.addEvents({
29754         /**
29755          * @event clientvalidation
29756          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
29757          * @param {Form} this
29758          * @param {Boolean} valid true if the form has passed client-side validation
29759          */
29760         clientvalidation: true,
29761         /**
29762          * @event rendered
29763          * Fires when the form is rendered
29764          * @param {Roo.form.Form} form
29765          */
29766         rendered : true
29767     });
29768     
29769     if (this.progressUrl) {
29770             // push a hidden field onto the list of fields..
29771             this.addxtype( {
29772                     xns: Roo.form, 
29773                     xtype : 'Hidden', 
29774                     name : 'UPLOAD_IDENTIFIER' 
29775             });
29776         }
29777         
29778     
29779     Roo.each(xitems, this.addxtype, this);
29780     
29781 };
29782
29783 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
29784      /**
29785      * @cfg {Roo.Button} buttons[] buttons at bottom of form
29786      */
29787     
29788     /**
29789      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
29790      */
29791     /**
29792      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
29793      */
29794     /**
29795      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
29796      */
29797     buttonAlign:'center',
29798
29799     /**
29800      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
29801      */
29802     minButtonWidth:75,
29803
29804     /**
29805      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
29806      * This property cascades to child containers if not set.
29807      */
29808     labelAlign:'left',
29809
29810     /**
29811      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
29812      * fires a looping event with that state. This is required to bind buttons to the valid
29813      * state using the config value formBind:true on the button.
29814      */
29815     monitorValid : false,
29816
29817     /**
29818      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
29819      */
29820     monitorPoll : 200,
29821     
29822     /**
29823      * @cfg {String} progressUrl - Url to return progress data 
29824      */
29825     
29826     progressUrl : false,
29827     /**
29828      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
29829      * sending a formdata with extra parameters - eg uploaded elements.
29830      */
29831     
29832     formData : false,
29833     
29834     /**
29835      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
29836      * fields are added and the column is closed. If no fields are passed the column remains open
29837      * until end() is called.
29838      * @param {Object} config The config to pass to the column
29839      * @param {Field} field1 (optional)
29840      * @param {Field} field2 (optional)
29841      * @param {Field} etc (optional)
29842      * @return Column The column container object
29843      */
29844     column : function(c){
29845         var col = new Roo.form.Column(c);
29846         this.start(col);
29847         if(arguments.length > 1){ // duplicate code required because of Opera
29848             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
29849             this.end();
29850         }
29851         return col;
29852     },
29853
29854     /**
29855      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
29856      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
29857      * until end() is called.
29858      * @param {Object} config The config to pass to the fieldset
29859      * @param {Field} field1 (optional)
29860      * @param {Field} field2 (optional)
29861      * @param {Field} etc (optional)
29862      * @return FieldSet The fieldset container object
29863      */
29864     fieldset : function(c){
29865         var fs = new Roo.form.FieldSet(c);
29866         this.start(fs);
29867         if(arguments.length > 1){ // duplicate code required because of Opera
29868             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
29869             this.end();
29870         }
29871         return fs;
29872     },
29873
29874     /**
29875      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
29876      * fields are added and the container is closed. If no fields are passed the container remains open
29877      * until end() is called.
29878      * @param {Object} config The config to pass to the Layout
29879      * @param {Field} field1 (optional)
29880      * @param {Field} field2 (optional)
29881      * @param {Field} etc (optional)
29882      * @return Layout The container object
29883      */
29884     container : function(c){
29885         var l = new Roo.form.Layout(c);
29886         this.start(l);
29887         if(arguments.length > 1){ // duplicate code required because of Opera
29888             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
29889             this.end();
29890         }
29891         return l;
29892     },
29893
29894     /**
29895      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
29896      * @param {Object} container A Roo.form.Layout or subclass of Layout
29897      * @return {Form} this
29898      */
29899     start : function(c){
29900         // cascade label info
29901         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
29902         this.active.stack.push(c);
29903         c.ownerCt = this.active;
29904         this.active = c;
29905         return this;
29906     },
29907
29908     /**
29909      * Closes the current open container
29910      * @return {Form} this
29911      */
29912     end : function(){
29913         if(this.active == this.root){
29914             return this;
29915         }
29916         this.active = this.active.ownerCt;
29917         return this;
29918     },
29919
29920     /**
29921      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
29922      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
29923      * as the label of the field.
29924      * @param {Field} field1
29925      * @param {Field} field2 (optional)
29926      * @param {Field} etc. (optional)
29927      * @return {Form} this
29928      */
29929     add : function(){
29930         this.active.stack.push.apply(this.active.stack, arguments);
29931         this.allItems.push.apply(this.allItems,arguments);
29932         var r = [];
29933         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
29934             if(a[i].isFormField){
29935                 r.push(a[i]);
29936             }
29937         }
29938         if(r.length > 0){
29939             Roo.form.Form.superclass.add.apply(this, r);
29940         }
29941         return this;
29942     },
29943     
29944
29945     
29946     
29947     
29948      /**
29949      * Find any element that has been added to a form, using it's ID or name
29950      * This can include framesets, columns etc. along with regular fields..
29951      * @param {String} id - id or name to find.
29952      
29953      * @return {Element} e - or false if nothing found.
29954      */
29955     findbyId : function(id)
29956     {
29957         var ret = false;
29958         if (!id) {
29959             return ret;
29960         }
29961         Roo.each(this.allItems, function(f){
29962             if (f.id == id || f.name == id ){
29963                 ret = f;
29964                 return false;
29965             }
29966         });
29967         return ret;
29968     },
29969
29970     
29971     
29972     /**
29973      * Render this form into the passed container. This should only be called once!
29974      * @param {String/HTMLElement/Element} container The element this component should be rendered into
29975      * @return {Form} this
29976      */
29977     render : function(ct)
29978     {
29979         
29980         
29981         
29982         ct = Roo.get(ct);
29983         var o = this.autoCreate || {
29984             tag: 'form',
29985             method : this.method || 'POST',
29986             id : this.id || Roo.id()
29987         };
29988         this.initEl(ct.createChild(o));
29989
29990         this.root.render(this.el);
29991         
29992        
29993              
29994         this.items.each(function(f){
29995             f.render('x-form-el-'+f.id);
29996         });
29997
29998         if(this.buttons.length > 0){
29999             // tables are required to maintain order and for correct IE layout
30000             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
30001                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
30002                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
30003             }}, null, true);
30004             var tr = tb.getElementsByTagName('tr')[0];
30005             for(var i = 0, len = this.buttons.length; i < len; i++) {
30006                 var b = this.buttons[i];
30007                 var td = document.createElement('td');
30008                 td.className = 'x-form-btn-td';
30009                 b.render(tr.appendChild(td));
30010             }
30011         }
30012         if(this.monitorValid){ // initialize after render
30013             this.startMonitoring();
30014         }
30015         this.fireEvent('rendered', this);
30016         return this;
30017     },
30018
30019     /**
30020      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
30021      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
30022      * object or a valid Roo.DomHelper element config
30023      * @param {Function} handler The function called when the button is clicked
30024      * @param {Object} scope (optional) The scope of the handler function
30025      * @return {Roo.Button}
30026      */
30027     addButton : function(config, handler, scope){
30028         var bc = {
30029             handler: handler,
30030             scope: scope,
30031             minWidth: this.minButtonWidth,
30032             hideParent:true
30033         };
30034         if(typeof config == "string"){
30035             bc.text = config;
30036         }else{
30037             Roo.apply(bc, config);
30038         }
30039         var btn = new Roo.Button(null, bc);
30040         this.buttons.push(btn);
30041         return btn;
30042     },
30043
30044      /**
30045      * Adds a series of form elements (using the xtype property as the factory method.
30046      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
30047      * @param {Object} config 
30048      */
30049     
30050     addxtype : function()
30051     {
30052         var ar = Array.prototype.slice.call(arguments, 0);
30053         var ret = false;
30054         for(var i = 0; i < ar.length; i++) {
30055             if (!ar[i]) {
30056                 continue; // skip -- if this happends something invalid got sent, we 
30057                 // should ignore it, as basically that interface element will not show up
30058                 // and that should be pretty obvious!!
30059             }
30060             
30061             if (Roo.form[ar[i].xtype]) {
30062                 ar[i].form = this;
30063                 var fe = Roo.factory(ar[i], Roo.form);
30064                 if (!ret) {
30065                     ret = fe;
30066                 }
30067                 fe.form = this;
30068                 if (fe.store) {
30069                     fe.store.form = this;
30070                 }
30071                 if (fe.isLayout) {  
30072                          
30073                     this.start(fe);
30074                     this.allItems.push(fe);
30075                     if (fe.items && fe.addxtype) {
30076                         fe.addxtype.apply(fe, fe.items);
30077                         delete fe.items;
30078                     }
30079                      this.end();
30080                     continue;
30081                 }
30082                 
30083                 
30084                  
30085                 this.add(fe);
30086               //  console.log('adding ' + ar[i].xtype);
30087             }
30088             if (ar[i].xtype == 'Button') {  
30089                 //console.log('adding button');
30090                 //console.log(ar[i]);
30091                 this.addButton(ar[i]);
30092                 this.allItems.push(fe);
30093                 continue;
30094             }
30095             
30096             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
30097                 alert('end is not supported on xtype any more, use items');
30098             //    this.end();
30099             //    //console.log('adding end');
30100             }
30101             
30102         }
30103         return ret;
30104     },
30105     
30106     /**
30107      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
30108      * option "monitorValid"
30109      */
30110     startMonitoring : function(){
30111         if(!this.bound){
30112             this.bound = true;
30113             Roo.TaskMgr.start({
30114                 run : this.bindHandler,
30115                 interval : this.monitorPoll || 200,
30116                 scope: this
30117             });
30118         }
30119     },
30120
30121     /**
30122      * Stops monitoring of the valid state of this form
30123      */
30124     stopMonitoring : function(){
30125         this.bound = false;
30126     },
30127
30128     // private
30129     bindHandler : function(){
30130         if(!this.bound){
30131             return false; // stops binding
30132         }
30133         var valid = true;
30134         this.items.each(function(f){
30135             if(!f.isValid(true)){
30136                 valid = false;
30137                 return false;
30138             }
30139         });
30140         for(var i = 0, len = this.buttons.length; i < len; i++){
30141             var btn = this.buttons[i];
30142             if(btn.formBind === true && btn.disabled === valid){
30143                 btn.setDisabled(!valid);
30144             }
30145         }
30146         this.fireEvent('clientvalidation', this, valid);
30147     }
30148     
30149     
30150     
30151     
30152     
30153     
30154     
30155     
30156 });
30157
30158
30159 // back compat
30160 Roo.Form = Roo.form.Form;
30161 /*
30162  * Based on:
30163  * Ext JS Library 1.1.1
30164  * Copyright(c) 2006-2007, Ext JS, LLC.
30165  *
30166  * Originally Released Under LGPL - original licence link has changed is not relivant.
30167  *
30168  * Fork - LGPL
30169  * <script type="text/javascript">
30170  */
30171
30172 // as we use this in bootstrap.
30173 Roo.namespace('Roo.form');
30174  /**
30175  * @class Roo.form.Action
30176  * Internal Class used to handle form actions
30177  * @constructor
30178  * @param {Roo.form.BasicForm} el The form element or its id
30179  * @param {Object} config Configuration options
30180  */
30181
30182  
30183  
30184 // define the action interface
30185 Roo.form.Action = function(form, options){
30186     this.form = form;
30187     this.options = options || {};
30188 };
30189 /**
30190  * Client Validation Failed
30191  * @const 
30192  */
30193 Roo.form.Action.CLIENT_INVALID = 'client';
30194 /**
30195  * Server Validation Failed
30196  * @const 
30197  */
30198 Roo.form.Action.SERVER_INVALID = 'server';
30199  /**
30200  * Connect to Server Failed
30201  * @const 
30202  */
30203 Roo.form.Action.CONNECT_FAILURE = 'connect';
30204 /**
30205  * Reading Data from Server Failed
30206  * @const 
30207  */
30208 Roo.form.Action.LOAD_FAILURE = 'load';
30209
30210 Roo.form.Action.prototype = {
30211     type : 'default',
30212     failureType : undefined,
30213     response : undefined,
30214     result : undefined,
30215
30216     // interface method
30217     run : function(options){
30218
30219     },
30220
30221     // interface method
30222     success : function(response){
30223
30224     },
30225
30226     // interface method
30227     handleResponse : function(response){
30228
30229     },
30230
30231     // default connection failure
30232     failure : function(response){
30233         
30234         this.response = response;
30235         this.failureType = Roo.form.Action.CONNECT_FAILURE;
30236         this.form.afterAction(this, false);
30237     },
30238
30239     processResponse : function(response){
30240         this.response = response;
30241         if(!response.responseText){
30242             return true;
30243         }
30244         this.result = this.handleResponse(response);
30245         return this.result;
30246     },
30247
30248     // utility functions used internally
30249     getUrl : function(appendParams){
30250         var url = this.options.url || this.form.url || this.form.el.dom.action;
30251         if(appendParams){
30252             var p = this.getParams();
30253             if(p){
30254                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
30255             }
30256         }
30257         return url;
30258     },
30259
30260     getMethod : function(){
30261         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
30262     },
30263
30264     getParams : function(){
30265         var bp = this.form.baseParams;
30266         var p = this.options.params;
30267         if(p){
30268             if(typeof p == "object"){
30269                 p = Roo.urlEncode(Roo.applyIf(p, bp));
30270             }else if(typeof p == 'string' && bp){
30271                 p += '&' + Roo.urlEncode(bp);
30272             }
30273         }else if(bp){
30274             p = Roo.urlEncode(bp);
30275         }
30276         return p;
30277     },
30278
30279     createCallback : function(){
30280         return {
30281             success: this.success,
30282             failure: this.failure,
30283             scope: this,
30284             timeout: (this.form.timeout*1000),
30285             upload: this.form.fileUpload ? this.success : undefined
30286         };
30287     }
30288 };
30289
30290 Roo.form.Action.Submit = function(form, options){
30291     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
30292 };
30293
30294 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
30295     type : 'submit',
30296
30297     haveProgress : false,
30298     uploadComplete : false,
30299     
30300     // uploadProgress indicator.
30301     uploadProgress : function()
30302     {
30303         if (!this.form.progressUrl) {
30304             return;
30305         }
30306         
30307         if (!this.haveProgress) {
30308             Roo.MessageBox.progress("Uploading", "Uploading");
30309         }
30310         if (this.uploadComplete) {
30311            Roo.MessageBox.hide();
30312            return;
30313         }
30314         
30315         this.haveProgress = true;
30316    
30317         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
30318         
30319         var c = new Roo.data.Connection();
30320         c.request({
30321             url : this.form.progressUrl,
30322             params: {
30323                 id : uid
30324             },
30325             method: 'GET',
30326             success : function(req){
30327                //console.log(data);
30328                 var rdata = false;
30329                 var edata;
30330                 try  {
30331                    rdata = Roo.decode(req.responseText)
30332                 } catch (e) {
30333                     Roo.log("Invalid data from server..");
30334                     Roo.log(edata);
30335                     return;
30336                 }
30337                 if (!rdata || !rdata.success) {
30338                     Roo.log(rdata);
30339                     Roo.MessageBox.alert(Roo.encode(rdata));
30340                     return;
30341                 }
30342                 var data = rdata.data;
30343                 
30344                 if (this.uploadComplete) {
30345                    Roo.MessageBox.hide();
30346                    return;
30347                 }
30348                    
30349                 if (data){
30350                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
30351                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
30352                     );
30353                 }
30354                 this.uploadProgress.defer(2000,this);
30355             },
30356        
30357             failure: function(data) {
30358                 Roo.log('progress url failed ');
30359                 Roo.log(data);
30360             },
30361             scope : this
30362         });
30363            
30364     },
30365     
30366     
30367     run : function()
30368     {
30369         // run get Values on the form, so it syncs any secondary forms.
30370         this.form.getValues();
30371         
30372         var o = this.options;
30373         var method = this.getMethod();
30374         var isPost = method == 'POST';
30375         if(o.clientValidation === false || this.form.isValid()){
30376             
30377             if (this.form.progressUrl) {
30378                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
30379                     (new Date() * 1) + '' + Math.random());
30380                     
30381             } 
30382             
30383             
30384             Roo.Ajax.request(Roo.apply(this.createCallback(), {
30385                 form:this.form.el.dom,
30386                 url:this.getUrl(!isPost),
30387                 method: method,
30388                 params:isPost ? this.getParams() : null,
30389                 isUpload: this.form.fileUpload,
30390                 formData : this.form.formData
30391             }));
30392             
30393             this.uploadProgress();
30394
30395         }else if (o.clientValidation !== false){ // client validation failed
30396             this.failureType = Roo.form.Action.CLIENT_INVALID;
30397             this.form.afterAction(this, false);
30398         }
30399     },
30400
30401     success : function(response)
30402     {
30403         this.uploadComplete= true;
30404         if (this.haveProgress) {
30405             Roo.MessageBox.hide();
30406         }
30407         
30408         
30409         var result = this.processResponse(response);
30410         if(result === true || result.success){
30411             this.form.afterAction(this, true);
30412             return;
30413         }
30414         if(result.errors){
30415             this.form.markInvalid(result.errors);
30416             this.failureType = Roo.form.Action.SERVER_INVALID;
30417         }
30418         this.form.afterAction(this, false);
30419     },
30420     failure : function(response)
30421     {
30422         this.uploadComplete= true;
30423         if (this.haveProgress) {
30424             Roo.MessageBox.hide();
30425         }
30426         
30427         this.response = response;
30428         this.failureType = Roo.form.Action.CONNECT_FAILURE;
30429         this.form.afterAction(this, false);
30430     },
30431     
30432     handleResponse : function(response){
30433         if(this.form.errorReader){
30434             var rs = this.form.errorReader.read(response);
30435             var errors = [];
30436             if(rs.records){
30437                 for(var i = 0, len = rs.records.length; i < len; i++) {
30438                     var r = rs.records[i];
30439                     errors[i] = r.data;
30440                 }
30441             }
30442             if(errors.length < 1){
30443                 errors = null;
30444             }
30445             return {
30446                 success : rs.success,
30447                 errors : errors
30448             };
30449         }
30450         var ret = false;
30451         try {
30452             ret = Roo.decode(response.responseText);
30453         } catch (e) {
30454             ret = {
30455                 success: false,
30456                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
30457                 errors : []
30458             };
30459         }
30460         return ret;
30461         
30462     }
30463 });
30464
30465
30466 Roo.form.Action.Load = function(form, options){
30467     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
30468     this.reader = this.form.reader;
30469 };
30470
30471 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
30472     type : 'load',
30473
30474     run : function(){
30475         
30476         Roo.Ajax.request(Roo.apply(
30477                 this.createCallback(), {
30478                     method:this.getMethod(),
30479                     url:this.getUrl(false),
30480                     params:this.getParams()
30481         }));
30482     },
30483
30484     success : function(response){
30485         
30486         var result = this.processResponse(response);
30487         if(result === true || !result.success || !result.data){
30488             this.failureType = Roo.form.Action.LOAD_FAILURE;
30489             this.form.afterAction(this, false);
30490             return;
30491         }
30492         this.form.clearInvalid();
30493         this.form.setValues(result.data);
30494         this.form.afterAction(this, true);
30495     },
30496
30497     handleResponse : function(response){
30498         if(this.form.reader){
30499             var rs = this.form.reader.read(response);
30500             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
30501             return {
30502                 success : rs.success,
30503                 data : data
30504             };
30505         }
30506         return Roo.decode(response.responseText);
30507     }
30508 });
30509
30510 Roo.form.Action.ACTION_TYPES = {
30511     'load' : Roo.form.Action.Load,
30512     'submit' : Roo.form.Action.Submit
30513 };/*
30514  * Based on:
30515  * Ext JS Library 1.1.1
30516  * Copyright(c) 2006-2007, Ext JS, LLC.
30517  *
30518  * Originally Released Under LGPL - original licence link has changed is not relivant.
30519  *
30520  * Fork - LGPL
30521  * <script type="text/javascript">
30522  */
30523  
30524 /**
30525  * @class Roo.form.Layout
30526  * @extends Roo.Component
30527  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
30528  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
30529  * @constructor
30530  * @param {Object} config Configuration options
30531  */
30532 Roo.form.Layout = function(config){
30533     var xitems = [];
30534     if (config.items) {
30535         xitems = config.items;
30536         delete config.items;
30537     }
30538     Roo.form.Layout.superclass.constructor.call(this, config);
30539     this.stack = [];
30540     Roo.each(xitems, this.addxtype, this);
30541      
30542 };
30543
30544 Roo.extend(Roo.form.Layout, Roo.Component, {
30545     /**
30546      * @cfg {String/Object} autoCreate
30547      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
30548      */
30549     /**
30550      * @cfg {String/Object/Function} style
30551      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
30552      * a function which returns such a specification.
30553      */
30554     /**
30555      * @cfg {String} labelAlign
30556      * Valid values are "left," "top" and "right" (defaults to "left")
30557      */
30558     /**
30559      * @cfg {Number} labelWidth
30560      * Fixed width in pixels of all field labels (defaults to undefined)
30561      */
30562     /**
30563      * @cfg {Boolean} clear
30564      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
30565      */
30566     clear : true,
30567     /**
30568      * @cfg {String} labelSeparator
30569      * The separator to use after field labels (defaults to ':')
30570      */
30571     labelSeparator : ':',
30572     /**
30573      * @cfg {Boolean} hideLabels
30574      * True to suppress the display of field labels in this layout (defaults to false)
30575      */
30576     hideLabels : false,
30577
30578     // private
30579     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
30580     
30581     isLayout : true,
30582     
30583     // private
30584     onRender : function(ct, position){
30585         if(this.el){ // from markup
30586             this.el = Roo.get(this.el);
30587         }else {  // generate
30588             var cfg = this.getAutoCreate();
30589             this.el = ct.createChild(cfg, position);
30590         }
30591         if(this.style){
30592             this.el.applyStyles(this.style);
30593         }
30594         if(this.labelAlign){
30595             this.el.addClass('x-form-label-'+this.labelAlign);
30596         }
30597         if(this.hideLabels){
30598             this.labelStyle = "display:none";
30599             this.elementStyle = "padding-left:0;";
30600         }else{
30601             if(typeof this.labelWidth == 'number'){
30602                 this.labelStyle = "width:"+this.labelWidth+"px;";
30603                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
30604             }
30605             if(this.labelAlign == 'top'){
30606                 this.labelStyle = "width:auto;";
30607                 this.elementStyle = "padding-left:0;";
30608             }
30609         }
30610         var stack = this.stack;
30611         var slen = stack.length;
30612         if(slen > 0){
30613             if(!this.fieldTpl){
30614                 var t = new Roo.Template(
30615                     '<div class="x-form-item {5}">',
30616                         '<label for="{0}" style="{2}">{1}{4}</label>',
30617                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
30618                         '</div>',
30619                     '</div><div class="x-form-clear-left"></div>'
30620                 );
30621                 t.disableFormats = true;
30622                 t.compile();
30623                 Roo.form.Layout.prototype.fieldTpl = t;
30624             }
30625             for(var i = 0; i < slen; i++) {
30626                 if(stack[i].isFormField){
30627                     this.renderField(stack[i]);
30628                 }else{
30629                     this.renderComponent(stack[i]);
30630                 }
30631             }
30632         }
30633         if(this.clear){
30634             this.el.createChild({cls:'x-form-clear'});
30635         }
30636     },
30637
30638     // private
30639     renderField : function(f){
30640         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
30641                f.id, //0
30642                f.fieldLabel, //1
30643                f.labelStyle||this.labelStyle||'', //2
30644                this.elementStyle||'', //3
30645                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
30646                f.itemCls||this.itemCls||''  //5
30647        ], true).getPrevSibling());
30648     },
30649
30650     // private
30651     renderComponent : function(c){
30652         c.render(c.isLayout ? this.el : this.el.createChild());    
30653     },
30654     /**
30655      * Adds a object form elements (using the xtype property as the factory method.)
30656      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
30657      * @param {Object} config 
30658      */
30659     addxtype : function(o)
30660     {
30661         // create the lement.
30662         o.form = this.form;
30663         var fe = Roo.factory(o, Roo.form);
30664         this.form.allItems.push(fe);
30665         this.stack.push(fe);
30666         
30667         if (fe.isFormField) {
30668             this.form.items.add(fe);
30669         }
30670          
30671         return fe;
30672     }
30673 });
30674
30675 /**
30676  * @class Roo.form.Column
30677  * @extends Roo.form.Layout
30678  * @children Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
30679  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
30680  * @constructor
30681  * @param {Object} config Configuration options
30682  */
30683 Roo.form.Column = function(config){
30684     Roo.form.Column.superclass.constructor.call(this, config);
30685 };
30686
30687 Roo.extend(Roo.form.Column, Roo.form.Layout, {
30688     /**
30689      * @cfg {Number/String} width
30690      * The fixed width of the column in pixels or CSS value (defaults to "auto")
30691      */
30692     /**
30693      * @cfg {String/Object} autoCreate
30694      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
30695      */
30696
30697     // private
30698     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
30699
30700     // private
30701     onRender : function(ct, position){
30702         Roo.form.Column.superclass.onRender.call(this, ct, position);
30703         if(this.width){
30704             this.el.setWidth(this.width);
30705         }
30706     }
30707 });
30708
30709
30710 /**
30711  * @class Roo.form.Row
30712  * @extends Roo.form.Layout
30713  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
30714  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
30715  * @constructor
30716  * @param {Object} config Configuration options
30717  */
30718
30719  
30720 Roo.form.Row = function(config){
30721     Roo.form.Row.superclass.constructor.call(this, config);
30722 };
30723  
30724 Roo.extend(Roo.form.Row, Roo.form.Layout, {
30725       /**
30726      * @cfg {Number/String} width
30727      * The fixed width of the column in pixels or CSS value (defaults to "auto")
30728      */
30729     /**
30730      * @cfg {Number/String} height
30731      * The fixed height of the column in pixels or CSS value (defaults to "auto")
30732      */
30733     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
30734     
30735     padWidth : 20,
30736     // private
30737     onRender : function(ct, position){
30738         //console.log('row render');
30739         if(!this.rowTpl){
30740             var t = new Roo.Template(
30741                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
30742                     '<label for="{0}" style="{2}">{1}{4}</label>',
30743                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
30744                     '</div>',
30745                 '</div>'
30746             );
30747             t.disableFormats = true;
30748             t.compile();
30749             Roo.form.Layout.prototype.rowTpl = t;
30750         }
30751         this.fieldTpl = this.rowTpl;
30752         
30753         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
30754         var labelWidth = 100;
30755         
30756         if ((this.labelAlign != 'top')) {
30757             if (typeof this.labelWidth == 'number') {
30758                 labelWidth = this.labelWidth
30759             }
30760             this.padWidth =  20 + labelWidth;
30761             
30762         }
30763         
30764         Roo.form.Column.superclass.onRender.call(this, ct, position);
30765         if(this.width){
30766             this.el.setWidth(this.width);
30767         }
30768         if(this.height){
30769             this.el.setHeight(this.height);
30770         }
30771     },
30772     
30773     // private
30774     renderField : function(f){
30775         f.fieldEl = this.fieldTpl.append(this.el, [
30776                f.id, f.fieldLabel,
30777                f.labelStyle||this.labelStyle||'',
30778                this.elementStyle||'',
30779                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
30780                f.itemCls||this.itemCls||'',
30781                f.width ? f.width + this.padWidth : 160 + this.padWidth
30782        ],true);
30783     }
30784 });
30785  
30786
30787 /**
30788  * @class Roo.form.FieldSet
30789  * @extends Roo.form.Layout
30790  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
30791  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
30792  * @constructor
30793  * @param {Object} config Configuration options
30794  */
30795 Roo.form.FieldSet = function(config){
30796     Roo.form.FieldSet.superclass.constructor.call(this, config);
30797 };
30798
30799 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
30800     /**
30801      * @cfg {String} legend
30802      * The text to display as the legend for the FieldSet (defaults to '')
30803      */
30804     /**
30805      * @cfg {String/Object} autoCreate
30806      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
30807      */
30808
30809     // private
30810     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
30811
30812     // private
30813     onRender : function(ct, position){
30814         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
30815         if(this.legend){
30816             this.setLegend(this.legend);
30817         }
30818     },
30819
30820     // private
30821     setLegend : function(text){
30822         if(this.rendered){
30823             this.el.child('legend').update(text);
30824         }
30825     }
30826 });/*
30827  * Based on:
30828  * Ext JS Library 1.1.1
30829  * Copyright(c) 2006-2007, Ext JS, LLC.
30830  *
30831  * Originally Released Under LGPL - original licence link has changed is not relivant.
30832  *
30833  * Fork - LGPL
30834  * <script type="text/javascript">
30835  */
30836 /**
30837  * @class Roo.form.VTypes
30838  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
30839  * @static
30840  */
30841 Roo.form.VTypes = function(){
30842     // closure these in so they are only created once.
30843     var alpha = /^[a-zA-Z_]+$/;
30844     var alphanum = /^[a-zA-Z0-9_]+$/;
30845     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
30846     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
30847
30848     // All these messages and functions are configurable
30849     return {
30850         /**
30851          * The function used to validate email addresses
30852          * @param {String} value The email address
30853          */
30854         'email' : function(v){
30855             return email.test(v);
30856         },
30857         /**
30858          * The error text to display when the email validation function returns false
30859          * @type String
30860          */
30861         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
30862         /**
30863          * The keystroke filter mask to be applied on email input
30864          * @type RegExp
30865          */
30866         'emailMask' : /[a-z0-9_\.\-@]/i,
30867
30868         /**
30869          * The function used to validate URLs
30870          * @param {String} value The URL
30871          */
30872         'url' : function(v){
30873             return url.test(v);
30874         },
30875         /**
30876          * The error text to display when the url validation function returns false
30877          * @type String
30878          */
30879         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
30880         
30881         /**
30882          * The function used to validate alpha values
30883          * @param {String} value The value
30884          */
30885         'alpha' : function(v){
30886             return alpha.test(v);
30887         },
30888         /**
30889          * The error text to display when the alpha validation function returns false
30890          * @type String
30891          */
30892         'alphaText' : 'This field should only contain letters and _',
30893         /**
30894          * The keystroke filter mask to be applied on alpha input
30895          * @type RegExp
30896          */
30897         'alphaMask' : /[a-z_]/i,
30898
30899         /**
30900          * The function used to validate alphanumeric values
30901          * @param {String} value The value
30902          */
30903         'alphanum' : function(v){
30904             return alphanum.test(v);
30905         },
30906         /**
30907          * The error text to display when the alphanumeric validation function returns false
30908          * @type String
30909          */
30910         'alphanumText' : 'This field should only contain letters, numbers and _',
30911         /**
30912          * The keystroke filter mask to be applied on alphanumeric input
30913          * @type RegExp
30914          */
30915         'alphanumMask' : /[a-z0-9_]/i
30916     };
30917 }();//<script type="text/javascript">
30918
30919 /**
30920  * @class Roo.form.FCKeditor
30921  * @extends Roo.form.TextArea
30922  * Wrapper around the FCKEditor http://www.fckeditor.net
30923  * @constructor
30924  * Creates a new FCKeditor
30925  * @param {Object} config Configuration options
30926  */
30927 Roo.form.FCKeditor = function(config){
30928     Roo.form.FCKeditor.superclass.constructor.call(this, config);
30929     this.addEvents({
30930          /**
30931          * @event editorinit
30932          * Fired when the editor is initialized - you can add extra handlers here..
30933          * @param {FCKeditor} this
30934          * @param {Object} the FCK object.
30935          */
30936         editorinit : true
30937     });
30938     
30939     
30940 };
30941 Roo.form.FCKeditor.editors = { };
30942 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
30943 {
30944     //defaultAutoCreate : {
30945     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
30946     //},
30947     // private
30948     /**
30949      * @cfg {Object} fck options - see fck manual for details.
30950      */
30951     fckconfig : false,
30952     
30953     /**
30954      * @cfg {Object} fck toolbar set (Basic or Default)
30955      */
30956     toolbarSet : 'Basic',
30957     /**
30958      * @cfg {Object} fck BasePath
30959      */ 
30960     basePath : '/fckeditor/',
30961     
30962     
30963     frame : false,
30964     
30965     value : '',
30966     
30967    
30968     onRender : function(ct, position)
30969     {
30970         if(!this.el){
30971             this.defaultAutoCreate = {
30972                 tag: "textarea",
30973                 style:"width:300px;height:60px;",
30974                 autocomplete: "new-password"
30975             };
30976         }
30977         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
30978         /*
30979         if(this.grow){
30980             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
30981             if(this.preventScrollbars){
30982                 this.el.setStyle("overflow", "hidden");
30983             }
30984             this.el.setHeight(this.growMin);
30985         }
30986         */
30987         //console.log('onrender' + this.getId() );
30988         Roo.form.FCKeditor.editors[this.getId()] = this;
30989          
30990
30991         this.replaceTextarea() ;
30992         
30993     },
30994     
30995     getEditor : function() {
30996         return this.fckEditor;
30997     },
30998     /**
30999      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
31000      * @param {Mixed} value The value to set
31001      */
31002     
31003     
31004     setValue : function(value)
31005     {
31006         //console.log('setValue: ' + value);
31007         
31008         if(typeof(value) == 'undefined') { // not sure why this is happending...
31009             return;
31010         }
31011         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
31012         
31013         //if(!this.el || !this.getEditor()) {
31014         //    this.value = value;
31015             //this.setValue.defer(100,this,[value]);    
31016         //    return;
31017         //} 
31018         
31019         if(!this.getEditor()) {
31020             return;
31021         }
31022         
31023         this.getEditor().SetData(value);
31024         
31025         //
31026
31027     },
31028
31029     /**
31030      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
31031      * @return {Mixed} value The field value
31032      */
31033     getValue : function()
31034     {
31035         
31036         if (this.frame && this.frame.dom.style.display == 'none') {
31037             return Roo.form.FCKeditor.superclass.getValue.call(this);
31038         }
31039         
31040         if(!this.el || !this.getEditor()) {
31041            
31042            // this.getValue.defer(100,this); 
31043             return this.value;
31044         }
31045        
31046         
31047         var value=this.getEditor().GetData();
31048         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
31049         return Roo.form.FCKeditor.superclass.getValue.call(this);
31050         
31051
31052     },
31053
31054     /**
31055      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
31056      * @return {Mixed} value The field value
31057      */
31058     getRawValue : function()
31059     {
31060         if (this.frame && this.frame.dom.style.display == 'none') {
31061             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
31062         }
31063         
31064         if(!this.el || !this.getEditor()) {
31065             //this.getRawValue.defer(100,this); 
31066             return this.value;
31067             return;
31068         }
31069         
31070         
31071         
31072         var value=this.getEditor().GetData();
31073         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
31074         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
31075          
31076     },
31077     
31078     setSize : function(w,h) {
31079         
31080         
31081         
31082         //if (this.frame && this.frame.dom.style.display == 'none') {
31083         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
31084         //    return;
31085         //}
31086         //if(!this.el || !this.getEditor()) {
31087         //    this.setSize.defer(100,this, [w,h]); 
31088         //    return;
31089         //}
31090         
31091         
31092         
31093         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
31094         
31095         this.frame.dom.setAttribute('width', w);
31096         this.frame.dom.setAttribute('height', h);
31097         this.frame.setSize(w,h);
31098         
31099     },
31100     
31101     toggleSourceEdit : function(value) {
31102         
31103       
31104          
31105         this.el.dom.style.display = value ? '' : 'none';
31106         this.frame.dom.style.display = value ?  'none' : '';
31107         
31108     },
31109     
31110     
31111     focus: function(tag)
31112     {
31113         if (this.frame.dom.style.display == 'none') {
31114             return Roo.form.FCKeditor.superclass.focus.call(this);
31115         }
31116         if(!this.el || !this.getEditor()) {
31117             this.focus.defer(100,this, [tag]); 
31118             return;
31119         }
31120         
31121         
31122         
31123         
31124         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
31125         this.getEditor().Focus();
31126         if (tgs.length) {
31127             if (!this.getEditor().Selection.GetSelection()) {
31128                 this.focus.defer(100,this, [tag]); 
31129                 return;
31130             }
31131             
31132             
31133             var r = this.getEditor().EditorDocument.createRange();
31134             r.setStart(tgs[0],0);
31135             r.setEnd(tgs[0],0);
31136             this.getEditor().Selection.GetSelection().removeAllRanges();
31137             this.getEditor().Selection.GetSelection().addRange(r);
31138             this.getEditor().Focus();
31139         }
31140         
31141     },
31142     
31143     
31144     
31145     replaceTextarea : function()
31146     {
31147         if ( document.getElementById( this.getId() + '___Frame' ) ) {
31148             return ;
31149         }
31150         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
31151         //{
31152             // We must check the elements firstly using the Id and then the name.
31153         var oTextarea = document.getElementById( this.getId() );
31154         
31155         var colElementsByName = document.getElementsByName( this.getId() ) ;
31156          
31157         oTextarea.style.display = 'none' ;
31158
31159         if ( oTextarea.tabIndex ) {            
31160             this.TabIndex = oTextarea.tabIndex ;
31161         }
31162         
31163         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
31164         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
31165         this.frame = Roo.get(this.getId() + '___Frame')
31166     },
31167     
31168     _getConfigHtml : function()
31169     {
31170         var sConfig = '' ;
31171
31172         for ( var o in this.fckconfig ) {
31173             sConfig += sConfig.length > 0  ? '&amp;' : '';
31174             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
31175         }
31176
31177         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
31178     },
31179     
31180     
31181     _getIFrameHtml : function()
31182     {
31183         var sFile = 'fckeditor.html' ;
31184         /* no idea what this is about..
31185         try
31186         {
31187             if ( (/fcksource=true/i).test( window.top.location.search ) )
31188                 sFile = 'fckeditor.original.html' ;
31189         }
31190         catch (e) { 
31191         */
31192
31193         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
31194         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
31195         
31196         
31197         var html = '<iframe id="' + this.getId() +
31198             '___Frame" src="' + sLink +
31199             '" width="' + this.width +
31200             '" height="' + this.height + '"' +
31201             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
31202             ' frameborder="0" scrolling="no"></iframe>' ;
31203
31204         return html ;
31205     },
31206     
31207     _insertHtmlBefore : function( html, element )
31208     {
31209         if ( element.insertAdjacentHTML )       {
31210             // IE
31211             element.insertAdjacentHTML( 'beforeBegin', html ) ;
31212         } else { // Gecko
31213             var oRange = document.createRange() ;
31214             oRange.setStartBefore( element ) ;
31215             var oFragment = oRange.createContextualFragment( html );
31216             element.parentNode.insertBefore( oFragment, element ) ;
31217         }
31218     }
31219     
31220     
31221   
31222     
31223     
31224     
31225     
31226
31227 });
31228
31229 //Roo.reg('fckeditor', Roo.form.FCKeditor);
31230
31231 function FCKeditor_OnComplete(editorInstance){
31232     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
31233     f.fckEditor = editorInstance;
31234     //console.log("loaded");
31235     f.fireEvent('editorinit', f, editorInstance);
31236
31237   
31238
31239  
31240
31241
31242
31243
31244
31245
31246
31247
31248
31249
31250
31251
31252
31253
31254
31255 //<script type="text/javascript">
31256 /**
31257  * @class Roo.form.GridField
31258  * @extends Roo.form.Field
31259  * Embed a grid (or editable grid into a form)
31260  * STATUS ALPHA
31261  * 
31262  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
31263  * it needs 
31264  * xgrid.store = Roo.data.Store
31265  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
31266  * xgrid.store.reader = Roo.data.JsonReader 
31267  * 
31268  * 
31269  * @constructor
31270  * Creates a new GridField
31271  * @param {Object} config Configuration options
31272  */
31273 Roo.form.GridField = function(config){
31274     Roo.form.GridField.superclass.constructor.call(this, config);
31275      
31276 };
31277
31278 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
31279     /**
31280      * @cfg {Number} width  - used to restrict width of grid..
31281      */
31282     width : 100,
31283     /**
31284      * @cfg {Number} height - used to restrict height of grid..
31285      */
31286     height : 50,
31287      /**
31288      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
31289          * 
31290          *}
31291      */
31292     xgrid : false, 
31293     /**
31294      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
31295      * {tag: "input", type: "checkbox", autocomplete: "off"})
31296      */
31297    // defaultAutoCreate : { tag: 'div' },
31298     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
31299     /**
31300      * @cfg {String} addTitle Text to include for adding a title.
31301      */
31302     addTitle : false,
31303     //
31304     onResize : function(){
31305         Roo.form.Field.superclass.onResize.apply(this, arguments);
31306     },
31307
31308     initEvents : function(){
31309         // Roo.form.Checkbox.superclass.initEvents.call(this);
31310         // has no events...
31311        
31312     },
31313
31314
31315     getResizeEl : function(){
31316         return this.wrap;
31317     },
31318
31319     getPositionEl : function(){
31320         return this.wrap;
31321     },
31322
31323     // private
31324     onRender : function(ct, position){
31325         
31326         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
31327         var style = this.style;
31328         delete this.style;
31329         
31330         Roo.form.GridField.superclass.onRender.call(this, ct, position);
31331         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
31332         this.viewEl = this.wrap.createChild({ tag: 'div' });
31333         if (style) {
31334             this.viewEl.applyStyles(style);
31335         }
31336         if (this.width) {
31337             this.viewEl.setWidth(this.width);
31338         }
31339         if (this.height) {
31340             this.viewEl.setHeight(this.height);
31341         }
31342         //if(this.inputValue !== undefined){
31343         //this.setValue(this.value);
31344         
31345         
31346         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
31347         
31348         
31349         this.grid.render();
31350         this.grid.getDataSource().on('remove', this.refreshValue, this);
31351         this.grid.getDataSource().on('update', this.refreshValue, this);
31352         this.grid.on('afteredit', this.refreshValue, this);
31353  
31354     },
31355      
31356     
31357     /**
31358      * Sets the value of the item. 
31359      * @param {String} either an object  or a string..
31360      */
31361     setValue : function(v){
31362         //this.value = v;
31363         v = v || []; // empty set..
31364         // this does not seem smart - it really only affects memoryproxy grids..
31365         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
31366             var ds = this.grid.getDataSource();
31367             // assumes a json reader..
31368             var data = {}
31369             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
31370             ds.loadData( data);
31371         }
31372         // clear selection so it does not get stale.
31373         if (this.grid.sm) { 
31374             this.grid.sm.clearSelections();
31375         }
31376         
31377         Roo.form.GridField.superclass.setValue.call(this, v);
31378         this.refreshValue();
31379         // should load data in the grid really....
31380     },
31381     
31382     // private
31383     refreshValue: function() {
31384          var val = [];
31385         this.grid.getDataSource().each(function(r) {
31386             val.push(r.data);
31387         });
31388         this.el.dom.value = Roo.encode(val);
31389     }
31390     
31391      
31392     
31393     
31394 });/*
31395  * Based on:
31396  * Ext JS Library 1.1.1
31397  * Copyright(c) 2006-2007, Ext JS, LLC.
31398  *
31399  * Originally Released Under LGPL - original licence link has changed is not relivant.
31400  *
31401  * Fork - LGPL
31402  * <script type="text/javascript">
31403  */
31404 /**
31405  * @class Roo.form.DisplayField
31406  * @extends Roo.form.Field
31407  * A generic Field to display non-editable data.
31408  * @cfg {Boolean} closable (true|false) default false
31409  * @constructor
31410  * Creates a new Display Field item.
31411  * @param {Object} config Configuration options
31412  */
31413 Roo.form.DisplayField = function(config){
31414     Roo.form.DisplayField.superclass.constructor.call(this, config);
31415     
31416     this.addEvents({
31417         /**
31418          * @event close
31419          * Fires after the click the close btn
31420              * @param {Roo.form.DisplayField} this
31421              */
31422         close : true
31423     });
31424 };
31425
31426 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
31427     inputType:      'hidden',
31428     allowBlank:     true,
31429     readOnly:         true,
31430     
31431  
31432     /**
31433      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
31434      */
31435     focusClass : undefined,
31436     /**
31437      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
31438      */
31439     fieldClass: 'x-form-field',
31440     
31441      /**
31442      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
31443      */
31444     valueRenderer: undefined,
31445     
31446     width: 100,
31447     /**
31448      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
31449      * {tag: "input", type: "checkbox", autocomplete: "off"})
31450      */
31451      
31452  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
31453  
31454     closable : false,
31455     
31456     onResize : function(){
31457         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
31458         
31459     },
31460
31461     initEvents : function(){
31462         // Roo.form.Checkbox.superclass.initEvents.call(this);
31463         // has no events...
31464         
31465         if(this.closable){
31466             this.closeEl.on('click', this.onClose, this);
31467         }
31468        
31469     },
31470
31471
31472     getResizeEl : function(){
31473         return this.wrap;
31474     },
31475
31476     getPositionEl : function(){
31477         return this.wrap;
31478     },
31479
31480     // private
31481     onRender : function(ct, position){
31482         
31483         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
31484         //if(this.inputValue !== undefined){
31485         this.wrap = this.el.wrap();
31486         
31487         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
31488         
31489         if(this.closable){
31490             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
31491         }
31492         
31493         if (this.bodyStyle) {
31494             this.viewEl.applyStyles(this.bodyStyle);
31495         }
31496         //this.viewEl.setStyle('padding', '2px');
31497         
31498         this.setValue(this.value);
31499         
31500     },
31501 /*
31502     // private
31503     initValue : Roo.emptyFn,
31504
31505   */
31506
31507         // private
31508     onClick : function(){
31509         
31510     },
31511
31512     /**
31513      * Sets the checked state of the checkbox.
31514      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
31515      */
31516     setValue : function(v){
31517         this.value = v;
31518         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
31519         // this might be called before we have a dom element..
31520         if (!this.viewEl) {
31521             return;
31522         }
31523         this.viewEl.dom.innerHTML = html;
31524         Roo.form.DisplayField.superclass.setValue.call(this, v);
31525
31526     },
31527     
31528     onClose : function(e)
31529     {
31530         e.preventDefault();
31531         
31532         this.fireEvent('close', this);
31533     }
31534 });/*
31535  * 
31536  * Licence- LGPL
31537  * 
31538  */
31539
31540 /**
31541  * @class Roo.form.DayPicker
31542  * @extends Roo.form.Field
31543  * A Day picker show [M] [T] [W] ....
31544  * @constructor
31545  * Creates a new Day Picker
31546  * @param {Object} config Configuration options
31547  */
31548 Roo.form.DayPicker= function(config){
31549     Roo.form.DayPicker.superclass.constructor.call(this, config);
31550      
31551 };
31552
31553 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
31554     /**
31555      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
31556      */
31557     focusClass : undefined,
31558     /**
31559      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
31560      */
31561     fieldClass: "x-form-field",
31562    
31563     /**
31564      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
31565      * {tag: "input", type: "checkbox", autocomplete: "off"})
31566      */
31567     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
31568     
31569    
31570     actionMode : 'viewEl', 
31571     //
31572     // private
31573  
31574     inputType : 'hidden',
31575     
31576      
31577     inputElement: false, // real input element?
31578     basedOn: false, // ????
31579     
31580     isFormField: true, // not sure where this is needed!!!!
31581
31582     onResize : function(){
31583         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
31584         if(!this.boxLabel){
31585             this.el.alignTo(this.wrap, 'c-c');
31586         }
31587     },
31588
31589     initEvents : function(){
31590         Roo.form.Checkbox.superclass.initEvents.call(this);
31591         this.el.on("click", this.onClick,  this);
31592         this.el.on("change", this.onClick,  this);
31593     },
31594
31595
31596     getResizeEl : function(){
31597         return this.wrap;
31598     },
31599
31600     getPositionEl : function(){
31601         return this.wrap;
31602     },
31603
31604     
31605     // private
31606     onRender : function(ct, position){
31607         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
31608        
31609         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
31610         
31611         var r1 = '<table><tr>';
31612         var r2 = '<tr class="x-form-daypick-icons">';
31613         for (var i=0; i < 7; i++) {
31614             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
31615             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
31616         }
31617         
31618         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
31619         viewEl.select('img').on('click', this.onClick, this);
31620         this.viewEl = viewEl;   
31621         
31622         
31623         // this will not work on Chrome!!!
31624         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
31625         this.el.on('propertychange', this.setFromHidden,  this);  //ie
31626         
31627         
31628           
31629
31630     },
31631
31632     // private
31633     initValue : Roo.emptyFn,
31634
31635     /**
31636      * Returns the checked state of the checkbox.
31637      * @return {Boolean} True if checked, else false
31638      */
31639     getValue : function(){
31640         return this.el.dom.value;
31641         
31642     },
31643
31644         // private
31645     onClick : function(e){ 
31646         //this.setChecked(!this.checked);
31647         Roo.get(e.target).toggleClass('x-menu-item-checked');
31648         this.refreshValue();
31649         //if(this.el.dom.checked != this.checked){
31650         //    this.setValue(this.el.dom.checked);
31651        // }
31652     },
31653     
31654     // private
31655     refreshValue : function()
31656     {
31657         var val = '';
31658         this.viewEl.select('img',true).each(function(e,i,n)  {
31659             val += e.is(".x-menu-item-checked") ? String(n) : '';
31660         });
31661         this.setValue(val, true);
31662     },
31663
31664     /**
31665      * Sets the checked state of the checkbox.
31666      * On is always based on a string comparison between inputValue and the param.
31667      * @param {Boolean/String} value - the value to set 
31668      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
31669      */
31670     setValue : function(v,suppressEvent){
31671         if (!this.el.dom) {
31672             return;
31673         }
31674         var old = this.el.dom.value ;
31675         this.el.dom.value = v;
31676         if (suppressEvent) {
31677             return ;
31678         }
31679          
31680         // update display..
31681         this.viewEl.select('img',true).each(function(e,i,n)  {
31682             
31683             var on = e.is(".x-menu-item-checked");
31684             var newv = v.indexOf(String(n)) > -1;
31685             if (on != newv) {
31686                 e.toggleClass('x-menu-item-checked');
31687             }
31688             
31689         });
31690         
31691         
31692         this.fireEvent('change', this, v, old);
31693         
31694         
31695     },
31696    
31697     // handle setting of hidden value by some other method!!?!?
31698     setFromHidden: function()
31699     {
31700         if(!this.el){
31701             return;
31702         }
31703         //console.log("SET FROM HIDDEN");
31704         //alert('setFrom hidden');
31705         this.setValue(this.el.dom.value);
31706     },
31707     
31708     onDestroy : function()
31709     {
31710         if(this.viewEl){
31711             Roo.get(this.viewEl).remove();
31712         }
31713          
31714         Roo.form.DayPicker.superclass.onDestroy.call(this);
31715     }
31716
31717 });/*
31718  * RooJS Library 1.1.1
31719  * Copyright(c) 2008-2011  Alan Knowles
31720  *
31721  * License - LGPL
31722  */
31723  
31724
31725 /**
31726  * @class Roo.form.ComboCheck
31727  * @extends Roo.form.ComboBox
31728  * A combobox for multiple select items.
31729  *
31730  * FIXME - could do with a reset button..
31731  * 
31732  * @constructor
31733  * Create a new ComboCheck
31734  * @param {Object} config Configuration options
31735  */
31736 Roo.form.ComboCheck = function(config){
31737     Roo.form.ComboCheck.superclass.constructor.call(this, config);
31738     // should verify some data...
31739     // like
31740     // hiddenName = required..
31741     // displayField = required
31742     // valudField == required
31743     var req= [ 'hiddenName', 'displayField', 'valueField' ];
31744     var _t = this;
31745     Roo.each(req, function(e) {
31746         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
31747             throw "Roo.form.ComboCheck : missing value for: " + e;
31748         }
31749     });
31750     
31751     
31752 };
31753
31754 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
31755      
31756      
31757     editable : false,
31758      
31759     selectedClass: 'x-menu-item-checked', 
31760     
31761     // private
31762     onRender : function(ct, position){
31763         var _t = this;
31764         
31765         
31766         
31767         if(!this.tpl){
31768             var cls = 'x-combo-list';
31769
31770             
31771             this.tpl =  new Roo.Template({
31772                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
31773                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
31774                    '<span>{' + this.displayField + '}</span>' +
31775                     '</div>' 
31776                 
31777             });
31778         }
31779  
31780         
31781         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
31782         this.view.singleSelect = false;
31783         this.view.multiSelect = true;
31784         this.view.toggleSelect = true;
31785         this.pageTb.add(new Roo.Toolbar.Fill(), {
31786             
31787             text: 'Done',
31788             handler: function()
31789             {
31790                 _t.collapse();
31791             }
31792         });
31793     },
31794     
31795     onViewOver : function(e, t){
31796         // do nothing...
31797         return;
31798         
31799     },
31800     
31801     onViewClick : function(doFocus,index){
31802         return;
31803         
31804     },
31805     select: function () {
31806         //Roo.log("SELECT CALLED");
31807     },
31808      
31809     selectByValue : function(xv, scrollIntoView){
31810         var ar = this.getValueArray();
31811         var sels = [];
31812         
31813         Roo.each(ar, function(v) {
31814             if(v === undefined || v === null){
31815                 return;
31816             }
31817             var r = this.findRecord(this.valueField, v);
31818             if(r){
31819                 sels.push(this.store.indexOf(r))
31820                 
31821             }
31822         },this);
31823         this.view.select(sels);
31824         return false;
31825     },
31826     
31827     
31828     
31829     onSelect : function(record, index){
31830        // Roo.log("onselect Called");
31831        // this is only called by the clear button now..
31832         this.view.clearSelections();
31833         this.setValue('[]');
31834         if (this.value != this.valueBefore) {
31835             this.fireEvent('change', this, this.value, this.valueBefore);
31836             this.valueBefore = this.value;
31837         }
31838     },
31839     getValueArray : function()
31840     {
31841         var ar = [] ;
31842         
31843         try {
31844             //Roo.log(this.value);
31845             if (typeof(this.value) == 'undefined') {
31846                 return [];
31847             }
31848             var ar = Roo.decode(this.value);
31849             return  ar instanceof Array ? ar : []; //?? valid?
31850             
31851         } catch(e) {
31852             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
31853             return [];
31854         }
31855          
31856     },
31857     expand : function ()
31858     {
31859         
31860         Roo.form.ComboCheck.superclass.expand.call(this);
31861         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
31862         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
31863         
31864
31865     },
31866     
31867     collapse : function(){
31868         Roo.form.ComboCheck.superclass.collapse.call(this);
31869         var sl = this.view.getSelectedIndexes();
31870         var st = this.store;
31871         var nv = [];
31872         var tv = [];
31873         var r;
31874         Roo.each(sl, function(i) {
31875             r = st.getAt(i);
31876             nv.push(r.get(this.valueField));
31877         },this);
31878         this.setValue(Roo.encode(nv));
31879         if (this.value != this.valueBefore) {
31880
31881             this.fireEvent('change', this, this.value, this.valueBefore);
31882             this.valueBefore = this.value;
31883         }
31884         
31885     },
31886     
31887     setValue : function(v){
31888         // Roo.log(v);
31889         this.value = v;
31890         
31891         var vals = this.getValueArray();
31892         var tv = [];
31893         Roo.each(vals, function(k) {
31894             var r = this.findRecord(this.valueField, k);
31895             if(r){
31896                 tv.push(r.data[this.displayField]);
31897             }else if(this.valueNotFoundText !== undefined){
31898                 tv.push( this.valueNotFoundText );
31899             }
31900         },this);
31901        // Roo.log(tv);
31902         
31903         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
31904         this.hiddenField.value = v;
31905         this.value = v;
31906     }
31907     
31908 });/*
31909  * Based on:
31910  * Ext JS Library 1.1.1
31911  * Copyright(c) 2006-2007, Ext JS, LLC.
31912  *
31913  * Originally Released Under LGPL - original licence link has changed is not relivant.
31914  *
31915  * Fork - LGPL
31916  * <script type="text/javascript">
31917  */
31918  
31919 /**
31920  * @class Roo.form.Signature
31921  * @extends Roo.form.Field
31922  * Signature field.  
31923  * @constructor
31924  * 
31925  * @param {Object} config Configuration options
31926  */
31927
31928 Roo.form.Signature = function(config){
31929     Roo.form.Signature.superclass.constructor.call(this, config);
31930     
31931     this.addEvents({// not in used??
31932          /**
31933          * @event confirm
31934          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
31935              * @param {Roo.form.Signature} combo This combo box
31936              */
31937         'confirm' : true,
31938         /**
31939          * @event reset
31940          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
31941              * @param {Roo.form.ComboBox} combo This combo box
31942              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
31943              */
31944         'reset' : true
31945     });
31946 };
31947
31948 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
31949     /**
31950      * @cfg {Object} labels Label to use when rendering a form.
31951      * defaults to 
31952      * labels : { 
31953      *      clear : "Clear",
31954      *      confirm : "Confirm"
31955      *  }
31956      */
31957     labels : { 
31958         clear : "Clear",
31959         confirm : "Confirm"
31960     },
31961     /**
31962      * @cfg {Number} width The signature panel width (defaults to 300)
31963      */
31964     width: 300,
31965     /**
31966      * @cfg {Number} height The signature panel height (defaults to 100)
31967      */
31968     height : 100,
31969     /**
31970      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
31971      */
31972     allowBlank : false,
31973     
31974     //private
31975     // {Object} signPanel The signature SVG panel element (defaults to {})
31976     signPanel : {},
31977     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
31978     isMouseDown : false,
31979     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
31980     isConfirmed : false,
31981     // {String} signatureTmp SVG mapping string (defaults to empty string)
31982     signatureTmp : '',
31983     
31984     
31985     defaultAutoCreate : { // modified by initCompnoent..
31986         tag: "input",
31987         type:"hidden"
31988     },
31989
31990     // private
31991     onRender : function(ct, position){
31992         
31993         Roo.form.Signature.superclass.onRender.call(this, ct, position);
31994         
31995         this.wrap = this.el.wrap({
31996             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
31997         });
31998         
31999         this.createToolbar(this);
32000         this.signPanel = this.wrap.createChild({
32001                 tag: 'div',
32002                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
32003             }, this.el
32004         );
32005             
32006         this.svgID = Roo.id();
32007         this.svgEl = this.signPanel.createChild({
32008               xmlns : 'http://www.w3.org/2000/svg',
32009               tag : 'svg',
32010               id : this.svgID + "-svg",
32011               width: this.width,
32012               height: this.height,
32013               viewBox: '0 0 '+this.width+' '+this.height,
32014               cn : [
32015                 {
32016                     tag: "rect",
32017                     id: this.svgID + "-svg-r",
32018                     width: this.width,
32019                     height: this.height,
32020                     fill: "#ffa"
32021                 },
32022                 {
32023                     tag: "line",
32024                     id: this.svgID + "-svg-l",
32025                     x1: "0", // start
32026                     y1: (this.height*0.8), // start set the line in 80% of height
32027                     x2: this.width, // end
32028                     y2: (this.height*0.8), // end set the line in 80% of height
32029                     'stroke': "#666",
32030                     'stroke-width': "1",
32031                     'stroke-dasharray': "3",
32032                     'shape-rendering': "crispEdges",
32033                     'pointer-events': "none"
32034                 },
32035                 {
32036                     tag: "path",
32037                     id: this.svgID + "-svg-p",
32038                     'stroke': "navy",
32039                     'stroke-width': "3",
32040                     'fill': "none",
32041                     'pointer-events': 'none'
32042                 }
32043               ]
32044         });
32045         this.createSVG();
32046         this.svgBox = this.svgEl.dom.getScreenCTM();
32047     },
32048     createSVG : function(){ 
32049         var svg = this.signPanel;
32050         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
32051         var t = this;
32052
32053         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
32054         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
32055         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
32056         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
32057         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
32058         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
32059         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
32060         
32061     },
32062     isTouchEvent : function(e){
32063         return e.type.match(/^touch/);
32064     },
32065     getCoords : function (e) {
32066         var pt    = this.svgEl.dom.createSVGPoint();
32067         pt.x = e.clientX; 
32068         pt.y = e.clientY;
32069         if (this.isTouchEvent(e)) {
32070             pt.x =  e.targetTouches[0].clientX;
32071             pt.y = e.targetTouches[0].clientY;
32072         }
32073         var a = this.svgEl.dom.getScreenCTM();
32074         var b = a.inverse();
32075         var mx = pt.matrixTransform(b);
32076         return mx.x + ',' + mx.y;
32077     },
32078     //mouse event headler 
32079     down : function (e) {
32080         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
32081         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
32082         
32083         this.isMouseDown = true;
32084         
32085         e.preventDefault();
32086     },
32087     move : function (e) {
32088         if (this.isMouseDown) {
32089             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
32090             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
32091         }
32092         
32093         e.preventDefault();
32094     },
32095     up : function (e) {
32096         this.isMouseDown = false;
32097         var sp = this.signatureTmp.split(' ');
32098         
32099         if(sp.length > 1){
32100             if(!sp[sp.length-2].match(/^L/)){
32101                 sp.pop();
32102                 sp.pop();
32103                 sp.push("");
32104                 this.signatureTmp = sp.join(" ");
32105             }
32106         }
32107         if(this.getValue() != this.signatureTmp){
32108             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
32109             this.isConfirmed = false;
32110         }
32111         e.preventDefault();
32112     },
32113     
32114     /**
32115      * Protected method that will not generally be called directly. It
32116      * is called when the editor creates its toolbar. Override this method if you need to
32117      * add custom toolbar buttons.
32118      * @param {HtmlEditor} editor
32119      */
32120     createToolbar : function(editor){
32121          function btn(id, toggle, handler){
32122             var xid = fid + '-'+ id ;
32123             return {
32124                 id : xid,
32125                 cmd : id,
32126                 cls : 'x-btn-icon x-edit-'+id,
32127                 enableToggle:toggle !== false,
32128                 scope: editor, // was editor...
32129                 handler:handler||editor.relayBtnCmd,
32130                 clickEvent:'mousedown',
32131                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
32132                 tabIndex:-1
32133             };
32134         }
32135         
32136         
32137         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
32138         this.tb = tb;
32139         this.tb.add(
32140            {
32141                 cls : ' x-signature-btn x-signature-'+id,
32142                 scope: editor, // was editor...
32143                 handler: this.reset,
32144                 clickEvent:'mousedown',
32145                 text: this.labels.clear
32146             },
32147             {
32148                  xtype : 'Fill',
32149                  xns: Roo.Toolbar
32150             }, 
32151             {
32152                 cls : '  x-signature-btn x-signature-'+id,
32153                 scope: editor, // was editor...
32154                 handler: this.confirmHandler,
32155                 clickEvent:'mousedown',
32156                 text: this.labels.confirm
32157             }
32158         );
32159     
32160     },
32161     //public
32162     /**
32163      * when user is clicked confirm then show this image.....
32164      * 
32165      * @return {String} Image Data URI
32166      */
32167     getImageDataURI : function(){
32168         var svg = this.svgEl.dom.parentNode.innerHTML;
32169         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
32170         return src; 
32171     },
32172     /**
32173      * 
32174      * @return {Boolean} this.isConfirmed
32175      */
32176     getConfirmed : function(){
32177         return this.isConfirmed;
32178     },
32179     /**
32180      * 
32181      * @return {Number} this.width
32182      */
32183     getWidth : function(){
32184         return this.width;
32185     },
32186     /**
32187      * 
32188      * @return {Number} this.height
32189      */
32190     getHeight : function(){
32191         return this.height;
32192     },
32193     // private
32194     getSignature : function(){
32195         return this.signatureTmp;
32196     },
32197     // private
32198     reset : function(){
32199         this.signatureTmp = '';
32200         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
32201         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
32202         this.isConfirmed = false;
32203         Roo.form.Signature.superclass.reset.call(this);
32204     },
32205     setSignature : function(s){
32206         this.signatureTmp = s;
32207         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
32208         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
32209         this.setValue(s);
32210         this.isConfirmed = false;
32211         Roo.form.Signature.superclass.reset.call(this);
32212     }, 
32213     test : function(){
32214 //        Roo.log(this.signPanel.dom.contentWindow.up())
32215     },
32216     //private
32217     setConfirmed : function(){
32218         
32219         
32220         
32221 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
32222     },
32223     // private
32224     confirmHandler : function(){
32225         if(!this.getSignature()){
32226             return;
32227         }
32228         
32229         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
32230         this.setValue(this.getSignature());
32231         this.isConfirmed = true;
32232         
32233         this.fireEvent('confirm', this);
32234     },
32235     // private
32236     // Subclasses should provide the validation implementation by overriding this
32237     validateValue : function(value){
32238         if(this.allowBlank){
32239             return true;
32240         }
32241         
32242         if(this.isConfirmed){
32243             return true;
32244         }
32245         return false;
32246     }
32247 });/*
32248  * Based on:
32249  * Ext JS Library 1.1.1
32250  * Copyright(c) 2006-2007, Ext JS, LLC.
32251  *
32252  * Originally Released Under LGPL - original licence link has changed is not relivant.
32253  *
32254  * Fork - LGPL
32255  * <script type="text/javascript">
32256  */
32257  
32258
32259 /**
32260  * @class Roo.form.ComboBox
32261  * @extends Roo.form.TriggerField
32262  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
32263  * @constructor
32264  * Create a new ComboBox.
32265  * @param {Object} config Configuration options
32266  */
32267 Roo.form.Select = function(config){
32268     Roo.form.Select.superclass.constructor.call(this, config);
32269      
32270 };
32271
32272 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
32273     /**
32274      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
32275      */
32276     /**
32277      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
32278      * rendering into an Roo.Editor, defaults to false)
32279      */
32280     /**
32281      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
32282      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
32283      */
32284     /**
32285      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
32286      */
32287     /**
32288      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
32289      * the dropdown list (defaults to undefined, with no header element)
32290      */
32291
32292      /**
32293      * @cfg {String/Roo.Template} tpl The template to use to render the output
32294      */
32295      
32296     // private
32297     defaultAutoCreate : {tag: "select"  },
32298     /**
32299      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
32300      */
32301     listWidth: undefined,
32302     /**
32303      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
32304      * mode = 'remote' or 'text' if mode = 'local')
32305      */
32306     displayField: undefined,
32307     /**
32308      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
32309      * mode = 'remote' or 'value' if mode = 'local'). 
32310      * Note: use of a valueField requires the user make a selection
32311      * in order for a value to be mapped.
32312      */
32313     valueField: undefined,
32314     
32315     
32316     /**
32317      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
32318      * field's data value (defaults to the underlying DOM element's name)
32319      */
32320     hiddenName: undefined,
32321     /**
32322      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
32323      */
32324     listClass: '',
32325     /**
32326      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
32327      */
32328     selectedClass: 'x-combo-selected',
32329     /**
32330      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
32331      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
32332      * which displays a downward arrow icon).
32333      */
32334     triggerClass : 'x-form-arrow-trigger',
32335     /**
32336      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32337      */
32338     shadow:'sides',
32339     /**
32340      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
32341      * anchor positions (defaults to 'tl-bl')
32342      */
32343     listAlign: 'tl-bl?',
32344     /**
32345      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
32346      */
32347     maxHeight: 300,
32348     /**
32349      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
32350      * query specified by the allQuery config option (defaults to 'query')
32351      */
32352     triggerAction: 'query',
32353     /**
32354      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
32355      * (defaults to 4, does not apply if editable = false)
32356      */
32357     minChars : 4,
32358     /**
32359      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
32360      * delay (typeAheadDelay) if it matches a known value (defaults to false)
32361      */
32362     typeAhead: false,
32363     /**
32364      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
32365      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
32366      */
32367     queryDelay: 500,
32368     /**
32369      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
32370      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
32371      */
32372     pageSize: 0,
32373     /**
32374      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
32375      * when editable = true (defaults to false)
32376      */
32377     selectOnFocus:false,
32378     /**
32379      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
32380      */
32381     queryParam: 'query',
32382     /**
32383      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
32384      * when mode = 'remote' (defaults to 'Loading...')
32385      */
32386     loadingText: 'Loading...',
32387     /**
32388      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
32389      */
32390     resizable: false,
32391     /**
32392      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
32393      */
32394     handleHeight : 8,
32395     /**
32396      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
32397      * traditional select (defaults to true)
32398      */
32399     editable: true,
32400     /**
32401      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
32402      */
32403     allQuery: '',
32404     /**
32405      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
32406      */
32407     mode: 'remote',
32408     /**
32409      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
32410      * listWidth has a higher value)
32411      */
32412     minListWidth : 70,
32413     /**
32414      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
32415      * allow the user to set arbitrary text into the field (defaults to false)
32416      */
32417     forceSelection:false,
32418     /**
32419      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
32420      * if typeAhead = true (defaults to 250)
32421      */
32422     typeAheadDelay : 250,
32423     /**
32424      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
32425      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
32426      */
32427     valueNotFoundText : undefined,
32428     
32429     /**
32430      * @cfg {String} defaultValue The value displayed after loading the store.
32431      */
32432     defaultValue: '',
32433     
32434     /**
32435      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
32436      */
32437     blockFocus : false,
32438     
32439     /**
32440      * @cfg {Boolean} disableClear Disable showing of clear button.
32441      */
32442     disableClear : false,
32443     /**
32444      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
32445      */
32446     alwaysQuery : false,
32447     
32448     //private
32449     addicon : false,
32450     editicon: false,
32451     
32452     // element that contains real text value.. (when hidden is used..)
32453      
32454     // private
32455     onRender : function(ct, position){
32456         Roo.form.Field.prototype.onRender.call(this, ct, position);
32457         
32458         if(this.store){
32459             this.store.on('beforeload', this.onBeforeLoad, this);
32460             this.store.on('load', this.onLoad, this);
32461             this.store.on('loadexception', this.onLoadException, this);
32462             this.store.load({});
32463         }
32464         
32465         
32466         
32467     },
32468
32469     // private
32470     initEvents : function(){
32471         //Roo.form.ComboBox.superclass.initEvents.call(this);
32472  
32473     },
32474
32475     onDestroy : function(){
32476        
32477         if(this.store){
32478             this.store.un('beforeload', this.onBeforeLoad, this);
32479             this.store.un('load', this.onLoad, this);
32480             this.store.un('loadexception', this.onLoadException, this);
32481         }
32482         //Roo.form.ComboBox.superclass.onDestroy.call(this);
32483     },
32484
32485     // private
32486     fireKey : function(e){
32487         if(e.isNavKeyPress() && !this.list.isVisible()){
32488             this.fireEvent("specialkey", this, e);
32489         }
32490     },
32491
32492     // private
32493     onResize: function(w, h){
32494         
32495         return; 
32496     
32497         
32498     },
32499
32500     /**
32501      * Allow or prevent the user from directly editing the field text.  If false is passed,
32502      * the user will only be able to select from the items defined in the dropdown list.  This method
32503      * is the runtime equivalent of setting the 'editable' config option at config time.
32504      * @param {Boolean} value True to allow the user to directly edit the field text
32505      */
32506     setEditable : function(value){
32507          
32508     },
32509
32510     // private
32511     onBeforeLoad : function(){
32512         
32513         Roo.log("Select before load");
32514         return;
32515     
32516         this.innerList.update(this.loadingText ?
32517                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
32518         //this.restrictHeight();
32519         this.selectedIndex = -1;
32520     },
32521
32522     // private
32523     onLoad : function(){
32524
32525     
32526         var dom = this.el.dom;
32527         dom.innerHTML = '';
32528          var od = dom.ownerDocument;
32529          
32530         if (this.emptyText) {
32531             var op = od.createElement('option');
32532             op.setAttribute('value', '');
32533             op.innerHTML = String.format('{0}', this.emptyText);
32534             dom.appendChild(op);
32535         }
32536         if(this.store.getCount() > 0){
32537            
32538             var vf = this.valueField;
32539             var df = this.displayField;
32540             this.store.data.each(function(r) {
32541                 // which colmsn to use... testing - cdoe / title..
32542                 var op = od.createElement('option');
32543                 op.setAttribute('value', r.data[vf]);
32544                 op.innerHTML = String.format('{0}', r.data[df]);
32545                 dom.appendChild(op);
32546             });
32547             if (typeof(this.defaultValue != 'undefined')) {
32548                 this.setValue(this.defaultValue);
32549             }
32550             
32551              
32552         }else{
32553             //this.onEmptyResults();
32554         }
32555         //this.el.focus();
32556     },
32557     // private
32558     onLoadException : function()
32559     {
32560         dom.innerHTML = '';
32561             
32562         Roo.log("Select on load exception");
32563         return;
32564     
32565         this.collapse();
32566         Roo.log(this.store.reader.jsonData);
32567         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
32568             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
32569         }
32570         
32571         
32572     },
32573     // private
32574     onTypeAhead : function(){
32575          
32576     },
32577
32578     // private
32579     onSelect : function(record, index){
32580         Roo.log('on select?');
32581         return;
32582         if(this.fireEvent('beforeselect', this, record, index) !== false){
32583             this.setFromData(index > -1 ? record.data : false);
32584             this.collapse();
32585             this.fireEvent('select', this, record, index);
32586         }
32587     },
32588
32589     /**
32590      * Returns the currently selected field value or empty string if no value is set.
32591      * @return {String} value The selected value
32592      */
32593     getValue : function(){
32594         var dom = this.el.dom;
32595         this.value = dom.options[dom.selectedIndex].value;
32596         return this.value;
32597         
32598     },
32599
32600     /**
32601      * Clears any text/value currently set in the field
32602      */
32603     clearValue : function(){
32604         this.value = '';
32605         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
32606         
32607     },
32608
32609     /**
32610      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
32611      * will be displayed in the field.  If the value does not match the data value of an existing item,
32612      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
32613      * Otherwise the field will be blank (although the value will still be set).
32614      * @param {String} value The value to match
32615      */
32616     setValue : function(v){
32617         var d = this.el.dom;
32618         for (var i =0; i < d.options.length;i++) {
32619             if (v == d.options[i].value) {
32620                 d.selectedIndex = i;
32621                 this.value = v;
32622                 return;
32623             }
32624         }
32625         this.clearValue();
32626     },
32627     /**
32628      * @property {Object} the last set data for the element
32629      */
32630     
32631     lastData : false,
32632     /**
32633      * Sets the value of the field based on a object which is related to the record format for the store.
32634      * @param {Object} value the value to set as. or false on reset?
32635      */
32636     setFromData : function(o){
32637         Roo.log('setfrom data?');
32638          
32639         
32640         
32641     },
32642     // private
32643     reset : function(){
32644         this.clearValue();
32645     },
32646     // private
32647     findRecord : function(prop, value){
32648         
32649         return false;
32650     
32651         var record;
32652         if(this.store.getCount() > 0){
32653             this.store.each(function(r){
32654                 if(r.data[prop] == value){
32655                     record = r;
32656                     return false;
32657                 }
32658                 return true;
32659             });
32660         }
32661         return record;
32662     },
32663     
32664     getName: function()
32665     {
32666         // returns hidden if it's set..
32667         if (!this.rendered) {return ''};
32668         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
32669         
32670     },
32671      
32672
32673     
32674
32675     // private
32676     onEmptyResults : function(){
32677         Roo.log('empty results');
32678         //this.collapse();
32679     },
32680
32681     /**
32682      * Returns true if the dropdown list is expanded, else false.
32683      */
32684     isExpanded : function(){
32685         return false;
32686     },
32687
32688     /**
32689      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
32690      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
32691      * @param {String} value The data value of the item to select
32692      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
32693      * selected item if it is not currently in view (defaults to true)
32694      * @return {Boolean} True if the value matched an item in the list, else false
32695      */
32696     selectByValue : function(v, scrollIntoView){
32697         Roo.log('select By Value');
32698         return false;
32699     
32700         if(v !== undefined && v !== null){
32701             var r = this.findRecord(this.valueField || this.displayField, v);
32702             if(r){
32703                 this.select(this.store.indexOf(r), scrollIntoView);
32704                 return true;
32705             }
32706         }
32707         return false;
32708     },
32709
32710     /**
32711      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
32712      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
32713      * @param {Number} index The zero-based index of the list item to select
32714      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
32715      * selected item if it is not currently in view (defaults to true)
32716      */
32717     select : function(index, scrollIntoView){
32718         Roo.log('select ');
32719         return  ;
32720         
32721         this.selectedIndex = index;
32722         this.view.select(index);
32723         if(scrollIntoView !== false){
32724             var el = this.view.getNode(index);
32725             if(el){
32726                 this.innerList.scrollChildIntoView(el, false);
32727             }
32728         }
32729     },
32730
32731       
32732
32733     // private
32734     validateBlur : function(){
32735         
32736         return;
32737         
32738     },
32739
32740     // private
32741     initQuery : function(){
32742         this.doQuery(this.getRawValue());
32743     },
32744
32745     // private
32746     doForce : function(){
32747         if(this.el.dom.value.length > 0){
32748             this.el.dom.value =
32749                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
32750              
32751         }
32752     },
32753
32754     /**
32755      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
32756      * query allowing the query action to be canceled if needed.
32757      * @param {String} query The SQL query to execute
32758      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
32759      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
32760      * saved in the current store (defaults to false)
32761      */
32762     doQuery : function(q, forceAll){
32763         
32764         Roo.log('doQuery?');
32765         if(q === undefined || q === null){
32766             q = '';
32767         }
32768         var qe = {
32769             query: q,
32770             forceAll: forceAll,
32771             combo: this,
32772             cancel:false
32773         };
32774         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
32775             return false;
32776         }
32777         q = qe.query;
32778         forceAll = qe.forceAll;
32779         if(forceAll === true || (q.length >= this.minChars)){
32780             if(this.lastQuery != q || this.alwaysQuery){
32781                 this.lastQuery = q;
32782                 if(this.mode == 'local'){
32783                     this.selectedIndex = -1;
32784                     if(forceAll){
32785                         this.store.clearFilter();
32786                     }else{
32787                         this.store.filter(this.displayField, q);
32788                     }
32789                     this.onLoad();
32790                 }else{
32791                     this.store.baseParams[this.queryParam] = q;
32792                     this.store.load({
32793                         params: this.getParams(q)
32794                     });
32795                     this.expand();
32796                 }
32797             }else{
32798                 this.selectedIndex = -1;
32799                 this.onLoad();   
32800             }
32801         }
32802     },
32803
32804     // private
32805     getParams : function(q){
32806         var p = {};
32807         //p[this.queryParam] = q;
32808         if(this.pageSize){
32809             p.start = 0;
32810             p.limit = this.pageSize;
32811         }
32812         return p;
32813     },
32814
32815     /**
32816      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
32817      */
32818     collapse : function(){
32819         
32820     },
32821
32822     // private
32823     collapseIf : function(e){
32824         
32825     },
32826
32827     /**
32828      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
32829      */
32830     expand : function(){
32831         
32832     } ,
32833
32834     // private
32835      
32836
32837     /** 
32838     * @cfg {Boolean} grow 
32839     * @hide 
32840     */
32841     /** 
32842     * @cfg {Number} growMin 
32843     * @hide 
32844     */
32845     /** 
32846     * @cfg {Number} growMax 
32847     * @hide 
32848     */
32849     /**
32850      * @hide
32851      * @method autoSize
32852      */
32853     
32854     setWidth : function()
32855     {
32856         
32857     },
32858     getResizeEl : function(){
32859         return this.el;
32860     }
32861 });//<script type="text/javasscript">
32862  
32863
32864 /**
32865  * @class Roo.DDView
32866  * A DnD enabled version of Roo.View.
32867  * @param {Element/String} container The Element in which to create the View.
32868  * @param {String} tpl The template string used to create the markup for each element of the View
32869  * @param {Object} config The configuration properties. These include all the config options of
32870  * {@link Roo.View} plus some specific to this class.<br>
32871  * <p>
32872  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
32873  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
32874  * <p>
32875  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
32876 .x-view-drag-insert-above {
32877         border-top:1px dotted #3366cc;
32878 }
32879 .x-view-drag-insert-below {
32880         border-bottom:1px dotted #3366cc;
32881 }
32882 </code></pre>
32883  * 
32884  */
32885  
32886 Roo.DDView = function(container, tpl, config) {
32887     Roo.DDView.superclass.constructor.apply(this, arguments);
32888     this.getEl().setStyle("outline", "0px none");
32889     this.getEl().unselectable();
32890     if (this.dragGroup) {
32891         this.setDraggable(this.dragGroup.split(","));
32892     }
32893     if (this.dropGroup) {
32894         this.setDroppable(this.dropGroup.split(","));
32895     }
32896     if (this.deletable) {
32897         this.setDeletable();
32898     }
32899     this.isDirtyFlag = false;
32900         this.addEvents({
32901                 "drop" : true
32902         });
32903 };
32904
32905 Roo.extend(Roo.DDView, Roo.View, {
32906 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
32907 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
32908 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
32909 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
32910
32911         isFormField: true,
32912
32913         reset: Roo.emptyFn,
32914         
32915         clearInvalid: Roo.form.Field.prototype.clearInvalid,
32916
32917         validate: function() {
32918                 return true;
32919         },
32920         
32921         destroy: function() {
32922                 this.purgeListeners();
32923                 this.getEl.removeAllListeners();
32924                 this.getEl().remove();
32925                 if (this.dragZone) {
32926                         if (this.dragZone.destroy) {
32927                                 this.dragZone.destroy();
32928                         }
32929                 }
32930                 if (this.dropZone) {
32931                         if (this.dropZone.destroy) {
32932                                 this.dropZone.destroy();
32933                         }
32934                 }
32935         },
32936
32937 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
32938         getName: function() {
32939                 return this.name;
32940         },
32941
32942 /**     Loads the View from a JSON string representing the Records to put into the Store. */
32943         setValue: function(v) {
32944                 if (!this.store) {
32945                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
32946                 }
32947                 var data = {};
32948                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
32949                 this.store.proxy = new Roo.data.MemoryProxy(data);
32950                 this.store.load();
32951         },
32952
32953 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
32954         getValue: function() {
32955                 var result = '(';
32956                 this.store.each(function(rec) {
32957                         result += rec.id + ',';
32958                 });
32959                 return result.substr(0, result.length - 1) + ')';
32960         },
32961         
32962         getIds: function() {
32963                 var i = 0, result = new Array(this.store.getCount());
32964                 this.store.each(function(rec) {
32965                         result[i++] = rec.id;
32966                 });
32967                 return result;
32968         },
32969         
32970         isDirty: function() {
32971                 return this.isDirtyFlag;
32972         },
32973
32974 /**
32975  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
32976  *      whole Element becomes the target, and this causes the drop gesture to append.
32977  */
32978     getTargetFromEvent : function(e) {
32979                 var target = e.getTarget();
32980                 while ((target !== null) && (target.parentNode != this.el.dom)) {
32981                 target = target.parentNode;
32982                 }
32983                 if (!target) {
32984                         target = this.el.dom.lastChild || this.el.dom;
32985                 }
32986                 return target;
32987     },
32988
32989 /**
32990  *      Create the drag data which consists of an object which has the property "ddel" as
32991  *      the drag proxy element. 
32992  */
32993     getDragData : function(e) {
32994         var target = this.findItemFromChild(e.getTarget());
32995                 if(target) {
32996                         this.handleSelection(e);
32997                         var selNodes = this.getSelectedNodes();
32998             var dragData = {
32999                 source: this,
33000                 copy: this.copy || (this.allowCopy && e.ctrlKey),
33001                 nodes: selNodes,
33002                 records: []
33003                         };
33004                         var selectedIndices = this.getSelectedIndexes();
33005                         for (var i = 0; i < selectedIndices.length; i++) {
33006                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
33007                         }
33008                         if (selNodes.length == 1) {
33009                                 dragData.ddel = target.cloneNode(true); // the div element
33010                         } else {
33011                                 var div = document.createElement('div'); // create the multi element drag "ghost"
33012                                 div.className = 'multi-proxy';
33013                                 for (var i = 0, len = selNodes.length; i < len; i++) {
33014                                         div.appendChild(selNodes[i].cloneNode(true));
33015                                 }
33016                                 dragData.ddel = div;
33017                         }
33018             //console.log(dragData)
33019             //console.log(dragData.ddel.innerHTML)
33020                         return dragData;
33021                 }
33022         //console.log('nodragData')
33023                 return false;
33024     },
33025     
33026 /**     Specify to which ddGroup items in this DDView may be dragged. */
33027     setDraggable: function(ddGroup) {
33028         if (ddGroup instanceof Array) {
33029                 Roo.each(ddGroup, this.setDraggable, this);
33030                 return;
33031         }
33032         if (this.dragZone) {
33033                 this.dragZone.addToGroup(ddGroup);
33034         } else {
33035                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
33036                                 containerScroll: true,
33037                                 ddGroup: ddGroup 
33038
33039                         });
33040 //                      Draggability implies selection. DragZone's mousedown selects the element.
33041                         if (!this.multiSelect) { this.singleSelect = true; }
33042
33043 //                      Wire the DragZone's handlers up to methods in *this*
33044                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
33045                 }
33046     },
33047
33048 /**     Specify from which ddGroup this DDView accepts drops. */
33049     setDroppable: function(ddGroup) {
33050         if (ddGroup instanceof Array) {
33051                 Roo.each(ddGroup, this.setDroppable, this);
33052                 return;
33053         }
33054         if (this.dropZone) {
33055                 this.dropZone.addToGroup(ddGroup);
33056         } else {
33057                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
33058                                 containerScroll: true,
33059                                 ddGroup: ddGroup
33060                         });
33061
33062 //                      Wire the DropZone's handlers up to methods in *this*
33063                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
33064                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
33065                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
33066                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
33067                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
33068                 }
33069     },
33070
33071 /**     Decide whether to drop above or below a View node. */
33072     getDropPoint : function(e, n, dd){
33073         if (n == this.el.dom) { return "above"; }
33074                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
33075                 var c = t + (b - t) / 2;
33076                 var y = Roo.lib.Event.getPageY(e);
33077                 if(y <= c) {
33078                         return "above";
33079                 }else{
33080                         return "below";
33081                 }
33082     },
33083
33084     onNodeEnter : function(n, dd, e, data){
33085                 return false;
33086     },
33087     
33088     onNodeOver : function(n, dd, e, data){
33089                 var pt = this.getDropPoint(e, n, dd);
33090                 // set the insert point style on the target node
33091                 var dragElClass = this.dropNotAllowed;
33092                 if (pt) {
33093                         var targetElClass;
33094                         if (pt == "above"){
33095                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
33096                                 targetElClass = "x-view-drag-insert-above";
33097                         } else {
33098                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
33099                                 targetElClass = "x-view-drag-insert-below";
33100                         }
33101                         if (this.lastInsertClass != targetElClass){
33102                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
33103                                 this.lastInsertClass = targetElClass;
33104                         }
33105                 }
33106                 return dragElClass;
33107         },
33108
33109     onNodeOut : function(n, dd, e, data){
33110                 this.removeDropIndicators(n);
33111     },
33112
33113     onNodeDrop : function(n, dd, e, data){
33114         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
33115                 return false;
33116         }
33117         var pt = this.getDropPoint(e, n, dd);
33118                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
33119                 if (pt == "below") { insertAt++; }
33120                 for (var i = 0; i < data.records.length; i++) {
33121                         var r = data.records[i];
33122                         var dup = this.store.getById(r.id);
33123                         if (dup && (dd != this.dragZone)) {
33124                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
33125                         } else {
33126                                 if (data.copy) {
33127                                         this.store.insert(insertAt++, r.copy());
33128                                 } else {
33129                                         data.source.isDirtyFlag = true;
33130                                         r.store.remove(r);
33131                                         this.store.insert(insertAt++, r);
33132                                 }
33133                                 this.isDirtyFlag = true;
33134                         }
33135                 }
33136                 this.dragZone.cachedTarget = null;
33137                 return true;
33138     },
33139
33140     removeDropIndicators : function(n){
33141                 if(n){
33142                         Roo.fly(n).removeClass([
33143                                 "x-view-drag-insert-above",
33144                                 "x-view-drag-insert-below"]);
33145                         this.lastInsertClass = "_noclass";
33146                 }
33147     },
33148
33149 /**
33150  *      Utility method. Add a delete option to the DDView's context menu.
33151  *      @param {String} imageUrl The URL of the "delete" icon image.
33152  */
33153         setDeletable: function(imageUrl) {
33154                 if (!this.singleSelect && !this.multiSelect) {
33155                         this.singleSelect = true;
33156                 }
33157                 var c = this.getContextMenu();
33158                 this.contextMenu.on("itemclick", function(item) {
33159                         switch (item.id) {
33160                                 case "delete":
33161                                         this.remove(this.getSelectedIndexes());
33162                                         break;
33163                         }
33164                 }, this);
33165                 this.contextMenu.add({
33166                         icon: imageUrl,
33167                         id: "delete",
33168                         text: 'Delete'
33169                 });
33170         },
33171         
33172 /**     Return the context menu for this DDView. */
33173         getContextMenu: function() {
33174                 if (!this.contextMenu) {
33175 //                      Create the View's context menu
33176                         this.contextMenu = new Roo.menu.Menu({
33177                                 id: this.id + "-contextmenu"
33178                         });
33179                         this.el.on("contextmenu", this.showContextMenu, this);
33180                 }
33181                 return this.contextMenu;
33182         },
33183         
33184         disableContextMenu: function() {
33185                 if (this.contextMenu) {
33186                         this.el.un("contextmenu", this.showContextMenu, this);
33187                 }
33188         },
33189
33190         showContextMenu: function(e, item) {
33191         item = this.findItemFromChild(e.getTarget());
33192                 if (item) {
33193                         e.stopEvent();
33194                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
33195                         this.contextMenu.showAt(e.getXY());
33196             }
33197     },
33198
33199 /**
33200  *      Remove {@link Roo.data.Record}s at the specified indices.
33201  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
33202  */
33203     remove: function(selectedIndices) {
33204                 selectedIndices = [].concat(selectedIndices);
33205                 for (var i = 0; i < selectedIndices.length; i++) {
33206                         var rec = this.store.getAt(selectedIndices[i]);
33207                         this.store.remove(rec);
33208                 }
33209     },
33210
33211 /**
33212  *      Double click fires the event, but also, if this is draggable, and there is only one other
33213  *      related DropZone, it transfers the selected node.
33214  */
33215     onDblClick : function(e){
33216         var item = this.findItemFromChild(e.getTarget());
33217         if(item){
33218             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
33219                 return false;
33220             }
33221             if (this.dragGroup) {
33222                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
33223                     while (targets.indexOf(this.dropZone) > -1) {
33224                             targets.remove(this.dropZone);
33225                                 }
33226                     if (targets.length == 1) {
33227                                         this.dragZone.cachedTarget = null;
33228                         var el = Roo.get(targets[0].getEl());
33229                         var box = el.getBox(true);
33230                         targets[0].onNodeDrop(el.dom, {
33231                                 target: el.dom,
33232                                 xy: [box.x, box.y + box.height - 1]
33233                         }, null, this.getDragData(e));
33234                     }
33235                 }
33236         }
33237     },
33238     
33239     handleSelection: function(e) {
33240                 this.dragZone.cachedTarget = null;
33241         var item = this.findItemFromChild(e.getTarget());
33242         if (!item) {
33243                 this.clearSelections(true);
33244                 return;
33245         }
33246                 if (item && (this.multiSelect || this.singleSelect)){
33247                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
33248                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
33249                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
33250                                 this.unselect(item);
33251                         } else {
33252                                 this.select(item, this.multiSelect && e.ctrlKey);
33253                                 this.lastSelection = item;
33254                         }
33255                 }
33256     },
33257
33258     onItemClick : function(item, index, e){
33259                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
33260                         return false;
33261                 }
33262                 return true;
33263     },
33264
33265     unselect : function(nodeInfo, suppressEvent){
33266                 var node = this.getNode(nodeInfo);
33267                 if(node && this.isSelected(node)){
33268                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
33269                                 Roo.fly(node).removeClass(this.selectedClass);
33270                                 this.selections.remove(node);
33271                                 if(!suppressEvent){
33272                                         this.fireEvent("selectionchange", this, this.selections);
33273                                 }
33274                         }
33275                 }
33276     }
33277 });
33278 /*
33279  * Based on:
33280  * Ext JS Library 1.1.1
33281  * Copyright(c) 2006-2007, Ext JS, LLC.
33282  *
33283  * Originally Released Under LGPL - original licence link has changed is not relivant.
33284  *
33285  * Fork - LGPL
33286  * <script type="text/javascript">
33287  */
33288  
33289 /**
33290  * @class Roo.LayoutManager
33291  * @extends Roo.util.Observable
33292  * Base class for layout managers.
33293  */
33294 Roo.LayoutManager = function(container, config){
33295     Roo.LayoutManager.superclass.constructor.call(this);
33296     this.el = Roo.get(container);
33297     // ie scrollbar fix
33298     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
33299         document.body.scroll = "no";
33300     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
33301         this.el.position('relative');
33302     }
33303     this.id = this.el.id;
33304     this.el.addClass("x-layout-container");
33305     /** false to disable window resize monitoring @type Boolean */
33306     this.monitorWindowResize = true;
33307     this.regions = {};
33308     this.addEvents({
33309         /**
33310          * @event layout
33311          * Fires when a layout is performed. 
33312          * @param {Roo.LayoutManager} this
33313          */
33314         "layout" : true,
33315         /**
33316          * @event regionresized
33317          * Fires when the user resizes a region. 
33318          * @param {Roo.LayoutRegion} region The resized region
33319          * @param {Number} newSize The new size (width for east/west, height for north/south)
33320          */
33321         "regionresized" : true,
33322         /**
33323          * @event regioncollapsed
33324          * Fires when a region is collapsed. 
33325          * @param {Roo.LayoutRegion} region The collapsed region
33326          */
33327         "regioncollapsed" : true,
33328         /**
33329          * @event regionexpanded
33330          * Fires when a region is expanded.  
33331          * @param {Roo.LayoutRegion} region The expanded region
33332          */
33333         "regionexpanded" : true
33334     });
33335     this.updating = false;
33336     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
33337 };
33338
33339 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
33340     /**
33341      * Returns true if this layout is currently being updated
33342      * @return {Boolean}
33343      */
33344     isUpdating : function(){
33345         return this.updating; 
33346     },
33347     
33348     /**
33349      * Suspend the LayoutManager from doing auto-layouts while
33350      * making multiple add or remove calls
33351      */
33352     beginUpdate : function(){
33353         this.updating = true;    
33354     },
33355     
33356     /**
33357      * Restore auto-layouts and optionally disable the manager from performing a layout
33358      * @param {Boolean} noLayout true to disable a layout update 
33359      */
33360     endUpdate : function(noLayout){
33361         this.updating = false;
33362         if(!noLayout){
33363             this.layout();
33364         }    
33365     },
33366     
33367     layout: function(){
33368         
33369     },
33370     
33371     onRegionResized : function(region, newSize){
33372         this.fireEvent("regionresized", region, newSize);
33373         this.layout();
33374     },
33375     
33376     onRegionCollapsed : function(region){
33377         this.fireEvent("regioncollapsed", region);
33378     },
33379     
33380     onRegionExpanded : function(region){
33381         this.fireEvent("regionexpanded", region);
33382     },
33383         
33384     /**
33385      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
33386      * performs box-model adjustments.
33387      * @return {Object} The size as an object {width: (the width), height: (the height)}
33388      */
33389     getViewSize : function(){
33390         var size;
33391         if(this.el.dom != document.body){
33392             size = this.el.getSize();
33393         }else{
33394             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
33395         }
33396         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
33397         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
33398         return size;
33399     },
33400     
33401     /**
33402      * Returns the Element this layout is bound to.
33403      * @return {Roo.Element}
33404      */
33405     getEl : function(){
33406         return this.el;
33407     },
33408     
33409     /**
33410      * Returns the specified region.
33411      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
33412      * @return {Roo.LayoutRegion}
33413      */
33414     getRegion : function(target){
33415         return this.regions[target.toLowerCase()];
33416     },
33417     
33418     onWindowResize : function(){
33419         if(this.monitorWindowResize){
33420             this.layout();
33421         }
33422     }
33423 });/*
33424  * Based on:
33425  * Ext JS Library 1.1.1
33426  * Copyright(c) 2006-2007, Ext JS, LLC.
33427  *
33428  * Originally Released Under LGPL - original licence link has changed is not relivant.
33429  *
33430  * Fork - LGPL
33431  * <script type="text/javascript">
33432  */
33433 /**
33434  * @class Roo.BorderLayout
33435  * @extends Roo.LayoutManager
33436  * @children Roo.ContentPanel
33437  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
33438  * please see: <br><br>
33439  * <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>
33440  * <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>
33441  * Example:
33442  <pre><code>
33443  var layout = new Roo.BorderLayout(document.body, {
33444     north: {
33445         initialSize: 25,
33446         titlebar: false
33447     },
33448     west: {
33449         split:true,
33450         initialSize: 200,
33451         minSize: 175,
33452         maxSize: 400,
33453         titlebar: true,
33454         collapsible: true
33455     },
33456     east: {
33457         split:true,
33458         initialSize: 202,
33459         minSize: 175,
33460         maxSize: 400,
33461         titlebar: true,
33462         collapsible: true
33463     },
33464     south: {
33465         split:true,
33466         initialSize: 100,
33467         minSize: 100,
33468         maxSize: 200,
33469         titlebar: true,
33470         collapsible: true
33471     },
33472     center: {
33473         titlebar: true,
33474         autoScroll:true,
33475         resizeTabs: true,
33476         minTabWidth: 50,
33477         preferredTabWidth: 150
33478     }
33479 });
33480
33481 // shorthand
33482 var CP = Roo.ContentPanel;
33483
33484 layout.beginUpdate();
33485 layout.add("north", new CP("north", "North"));
33486 layout.add("south", new CP("south", {title: "South", closable: true}));
33487 layout.add("west", new CP("west", {title: "West"}));
33488 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
33489 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
33490 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
33491 layout.getRegion("center").showPanel("center1");
33492 layout.endUpdate();
33493 </code></pre>
33494
33495 <b>The container the layout is rendered into can be either the body element or any other element.
33496 If it is not the body element, the container needs to either be an absolute positioned element,
33497 or you will need to add "position:relative" to the css of the container.  You will also need to specify
33498 the container size if it is not the body element.</b>
33499
33500 * @constructor
33501 * Create a new BorderLayout
33502 * @param {String/HTMLElement/Element} container The container this layout is bound to
33503 * @param {Object} config Configuration options
33504  */
33505 Roo.BorderLayout = function(container, config){
33506     config = config || {};
33507     Roo.BorderLayout.superclass.constructor.call(this, container, config);
33508     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
33509     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
33510         var target = this.factory.validRegions[i];
33511         if(config[target]){
33512             this.addRegion(target, config[target]);
33513         }
33514     }
33515 };
33516
33517 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
33518         
33519         /**
33520          * @cfg {Roo.LayoutRegion} east
33521          */
33522         /**
33523          * @cfg {Roo.LayoutRegion} west
33524          */
33525         /**
33526          * @cfg {Roo.LayoutRegion} north
33527          */
33528         /**
33529          * @cfg {Roo.LayoutRegion} south
33530          */
33531         /**
33532          * @cfg {Roo.LayoutRegion} center
33533          */
33534     /**
33535      * Creates and adds a new region if it doesn't already exist.
33536      * @param {String} target The target region key (north, south, east, west or center).
33537      * @param {Object} config The regions config object
33538      * @return {BorderLayoutRegion} The new region
33539      */
33540     addRegion : function(target, config){
33541         if(!this.regions[target]){
33542             var r = this.factory.create(target, this, config);
33543             this.bindRegion(target, r);
33544         }
33545         return this.regions[target];
33546     },
33547
33548     // private (kinda)
33549     bindRegion : function(name, r){
33550         this.regions[name] = r;
33551         r.on("visibilitychange", this.layout, this);
33552         r.on("paneladded", this.layout, this);
33553         r.on("panelremoved", this.layout, this);
33554         r.on("invalidated", this.layout, this);
33555         r.on("resized", this.onRegionResized, this);
33556         r.on("collapsed", this.onRegionCollapsed, this);
33557         r.on("expanded", this.onRegionExpanded, this);
33558     },
33559
33560     /**
33561      * Performs a layout update.
33562      */
33563     layout : function(){
33564         if(this.updating) {
33565             return;
33566         }
33567         var size = this.getViewSize();
33568         var w = size.width;
33569         var h = size.height;
33570         var centerW = w;
33571         var centerH = h;
33572         var centerY = 0;
33573         var centerX = 0;
33574         //var x = 0, y = 0;
33575
33576         var rs = this.regions;
33577         var north = rs["north"];
33578         var south = rs["south"]; 
33579         var west = rs["west"];
33580         var east = rs["east"];
33581         var center = rs["center"];
33582         //if(this.hideOnLayout){ // not supported anymore
33583             //c.el.setStyle("display", "none");
33584         //}
33585         if(north && north.isVisible()){
33586             var b = north.getBox();
33587             var m = north.getMargins();
33588             b.width = w - (m.left+m.right);
33589             b.x = m.left;
33590             b.y = m.top;
33591             centerY = b.height + b.y + m.bottom;
33592             centerH -= centerY;
33593             north.updateBox(this.safeBox(b));
33594         }
33595         if(south && south.isVisible()){
33596             var b = south.getBox();
33597             var m = south.getMargins();
33598             b.width = w - (m.left+m.right);
33599             b.x = m.left;
33600             var totalHeight = (b.height + m.top + m.bottom);
33601             b.y = h - totalHeight + m.top;
33602             centerH -= totalHeight;
33603             south.updateBox(this.safeBox(b));
33604         }
33605         if(west && west.isVisible()){
33606             var b = west.getBox();
33607             var m = west.getMargins();
33608             b.height = centerH - (m.top+m.bottom);
33609             b.x = m.left;
33610             b.y = centerY + m.top;
33611             var totalWidth = (b.width + m.left + m.right);
33612             centerX += totalWidth;
33613             centerW -= totalWidth;
33614             west.updateBox(this.safeBox(b));
33615         }
33616         if(east && east.isVisible()){
33617             var b = east.getBox();
33618             var m = east.getMargins();
33619             b.height = centerH - (m.top+m.bottom);
33620             var totalWidth = (b.width + m.left + m.right);
33621             b.x = w - totalWidth + m.left;
33622             b.y = centerY + m.top;
33623             centerW -= totalWidth;
33624             east.updateBox(this.safeBox(b));
33625         }
33626         if(center){
33627             var m = center.getMargins();
33628             var centerBox = {
33629                 x: centerX + m.left,
33630                 y: centerY + m.top,
33631                 width: centerW - (m.left+m.right),
33632                 height: centerH - (m.top+m.bottom)
33633             };
33634             //if(this.hideOnLayout){
33635                 //center.el.setStyle("display", "block");
33636             //}
33637             center.updateBox(this.safeBox(centerBox));
33638         }
33639         this.el.repaint();
33640         this.fireEvent("layout", this);
33641     },
33642
33643     // private
33644     safeBox : function(box){
33645         box.width = Math.max(0, box.width);
33646         box.height = Math.max(0, box.height);
33647         return box;
33648     },
33649
33650     /**
33651      * Adds a ContentPanel (or subclass) to this layout.
33652      * @param {String} target The target region key (north, south, east, west or center).
33653      * @param {Roo.ContentPanel} panel The panel to add
33654      * @return {Roo.ContentPanel} The added panel
33655      */
33656     add : function(target, panel){
33657          
33658         target = target.toLowerCase();
33659         return this.regions[target].add(panel);
33660     },
33661
33662     /**
33663      * Remove a ContentPanel (or subclass) to this layout.
33664      * @param {String} target The target region key (north, south, east, west or center).
33665      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
33666      * @return {Roo.ContentPanel} The removed panel
33667      */
33668     remove : function(target, panel){
33669         target = target.toLowerCase();
33670         return this.regions[target].remove(panel);
33671     },
33672
33673     /**
33674      * Searches all regions for a panel with the specified id
33675      * @param {String} panelId
33676      * @return {Roo.ContentPanel} The panel or null if it wasn't found
33677      */
33678     findPanel : function(panelId){
33679         var rs = this.regions;
33680         for(var target in rs){
33681             if(typeof rs[target] != "function"){
33682                 var p = rs[target].getPanel(panelId);
33683                 if(p){
33684                     return p;
33685                 }
33686             }
33687         }
33688         return null;
33689     },
33690
33691     /**
33692      * Searches all regions for a panel with the specified id and activates (shows) it.
33693      * @param {String/ContentPanel} panelId The panels id or the panel itself
33694      * @return {Roo.ContentPanel} The shown panel or null
33695      */
33696     showPanel : function(panelId) {
33697       var rs = this.regions;
33698       for(var target in rs){
33699          var r = rs[target];
33700          if(typeof r != "function"){
33701             if(r.hasPanel(panelId)){
33702                return r.showPanel(panelId);
33703             }
33704          }
33705       }
33706       return null;
33707    },
33708
33709    /**
33710      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
33711      * @param {Roo.state.Provider} provider (optional) An alternate state provider
33712      */
33713     restoreState : function(provider){
33714         if(!provider){
33715             provider = Roo.state.Manager;
33716         }
33717         var sm = new Roo.LayoutStateManager();
33718         sm.init(this, provider);
33719     },
33720
33721     /**
33722      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
33723      * object should contain properties for each region to add ContentPanels to, and each property's value should be
33724      * a valid ContentPanel config object.  Example:
33725      * <pre><code>
33726 // Create the main layout
33727 var layout = new Roo.BorderLayout('main-ct', {
33728     west: {
33729         split:true,
33730         minSize: 175,
33731         titlebar: true
33732     },
33733     center: {
33734         title:'Components'
33735     }
33736 }, 'main-ct');
33737
33738 // Create and add multiple ContentPanels at once via configs
33739 layout.batchAdd({
33740    west: {
33741        id: 'source-files',
33742        autoCreate:true,
33743        title:'Ext Source Files',
33744        autoScroll:true,
33745        fitToFrame:true
33746    },
33747    center : {
33748        el: cview,
33749        autoScroll:true,
33750        fitToFrame:true,
33751        toolbar: tb,
33752        resizeEl:'cbody'
33753    }
33754 });
33755 </code></pre>
33756      * @param {Object} regions An object containing ContentPanel configs by region name
33757      */
33758     batchAdd : function(regions){
33759         this.beginUpdate();
33760         for(var rname in regions){
33761             var lr = this.regions[rname];
33762             if(lr){
33763                 this.addTypedPanels(lr, regions[rname]);
33764             }
33765         }
33766         this.endUpdate();
33767     },
33768
33769     // private
33770     addTypedPanels : function(lr, ps){
33771         if(typeof ps == 'string'){
33772             lr.add(new Roo.ContentPanel(ps));
33773         }
33774         else if(ps instanceof Array){
33775             for(var i =0, len = ps.length; i < len; i++){
33776                 this.addTypedPanels(lr, ps[i]);
33777             }
33778         }
33779         else if(!ps.events){ // raw config?
33780             var el = ps.el;
33781             delete ps.el; // prevent conflict
33782             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
33783         }
33784         else {  // panel object assumed!
33785             lr.add(ps);
33786         }
33787     },
33788     /**
33789      * Adds a xtype elements to the layout.
33790      * <pre><code>
33791
33792 layout.addxtype({
33793        xtype : 'ContentPanel',
33794        region: 'west',
33795        items: [ .... ]
33796    }
33797 );
33798
33799 layout.addxtype({
33800         xtype : 'NestedLayoutPanel',
33801         region: 'west',
33802         layout: {
33803            center: { },
33804            west: { }   
33805         },
33806         items : [ ... list of content panels or nested layout panels.. ]
33807    }
33808 );
33809 </code></pre>
33810      * @param {Object} cfg Xtype definition of item to add.
33811      */
33812     addxtype : function(cfg)
33813     {
33814         // basically accepts a pannel...
33815         // can accept a layout region..!?!?
33816         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
33817         
33818         if (!cfg.xtype.match(/Panel$/)) {
33819             return false;
33820         }
33821         var ret = false;
33822         
33823         if (typeof(cfg.region) == 'undefined') {
33824             Roo.log("Failed to add Panel, region was not set");
33825             Roo.log(cfg);
33826             return false;
33827         }
33828         var region = cfg.region;
33829         delete cfg.region;
33830         
33831           
33832         var xitems = [];
33833         if (cfg.items) {
33834             xitems = cfg.items;
33835             delete cfg.items;
33836         }
33837         var nb = false;
33838         
33839         switch(cfg.xtype) 
33840         {
33841             case 'ContentPanel':  // ContentPanel (el, cfg)
33842             case 'ScrollPanel':  // ContentPanel (el, cfg)
33843             case 'ViewPanel': 
33844                 if(cfg.autoCreate) {
33845                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
33846                 } else {
33847                     var el = this.el.createChild();
33848                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
33849                 }
33850                 
33851                 this.add(region, ret);
33852                 break;
33853             
33854             
33855             case 'TreePanel': // our new panel!
33856                 cfg.el = this.el.createChild();
33857                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
33858                 this.add(region, ret);
33859                 break;
33860             
33861             case 'NestedLayoutPanel': 
33862                 // create a new Layout (which is  a Border Layout...
33863                 var el = this.el.createChild();
33864                 var clayout = cfg.layout;
33865                 delete cfg.layout;
33866                 clayout.items   = clayout.items  || [];
33867                 // replace this exitems with the clayout ones..
33868                 xitems = clayout.items;
33869                  
33870                 
33871                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
33872                     cfg.background = false;
33873                 }
33874                 var layout = new Roo.BorderLayout(el, clayout);
33875                 
33876                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
33877                 //console.log('adding nested layout panel '  + cfg.toSource());
33878                 this.add(region, ret);
33879                 nb = {}; /// find first...
33880                 break;
33881                 
33882             case 'GridPanel': 
33883             
33884                 // needs grid and region
33885                 
33886                 //var el = this.getRegion(region).el.createChild();
33887                 var el = this.el.createChild();
33888                 // create the grid first...
33889                 
33890                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
33891                 delete cfg.grid;
33892                 if (region == 'center' && this.active ) {
33893                     cfg.background = false;
33894                 }
33895                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
33896                 
33897                 this.add(region, ret);
33898                 if (cfg.background) {
33899                     ret.on('activate', function(gp) {
33900                         if (!gp.grid.rendered) {
33901                             gp.grid.render();
33902                         }
33903                     });
33904                 } else {
33905                     grid.render();
33906                 }
33907                 break;
33908            
33909            
33910            
33911                 
33912                 
33913                 
33914             default:
33915                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
33916                     
33917                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
33918                     this.add(region, ret);
33919                 } else {
33920                 
33921                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
33922                     return null;
33923                 }
33924                 
33925              // GridPanel (grid, cfg)
33926             
33927         }
33928         this.beginUpdate();
33929         // add children..
33930         var region = '';
33931         var abn = {};
33932         Roo.each(xitems, function(i)  {
33933             region = nb && i.region ? i.region : false;
33934             
33935             var add = ret.addxtype(i);
33936            
33937             if (region) {
33938                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
33939                 if (!i.background) {
33940                     abn[region] = nb[region] ;
33941                 }
33942             }
33943             
33944         });
33945         this.endUpdate();
33946
33947         // make the last non-background panel active..
33948         //if (nb) { Roo.log(abn); }
33949         if (nb) {
33950             
33951             for(var r in abn) {
33952                 region = this.getRegion(r);
33953                 if (region) {
33954                     // tried using nb[r], but it does not work..
33955                      
33956                     region.showPanel(abn[r]);
33957                    
33958                 }
33959             }
33960         }
33961         return ret;
33962         
33963     }
33964 });
33965
33966 /**
33967  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
33968  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
33969  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
33970  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
33971  * <pre><code>
33972 // shorthand
33973 var CP = Roo.ContentPanel;
33974
33975 var layout = Roo.BorderLayout.create({
33976     north: {
33977         initialSize: 25,
33978         titlebar: false,
33979         panels: [new CP("north", "North")]
33980     },
33981     west: {
33982         split:true,
33983         initialSize: 200,
33984         minSize: 175,
33985         maxSize: 400,
33986         titlebar: true,
33987         collapsible: true,
33988         panels: [new CP("west", {title: "West"})]
33989     },
33990     east: {
33991         split:true,
33992         initialSize: 202,
33993         minSize: 175,
33994         maxSize: 400,
33995         titlebar: true,
33996         collapsible: true,
33997         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
33998     },
33999     south: {
34000         split:true,
34001         initialSize: 100,
34002         minSize: 100,
34003         maxSize: 200,
34004         titlebar: true,
34005         collapsible: true,
34006         panels: [new CP("south", {title: "South", closable: true})]
34007     },
34008     center: {
34009         titlebar: true,
34010         autoScroll:true,
34011         resizeTabs: true,
34012         minTabWidth: 50,
34013         preferredTabWidth: 150,
34014         panels: [
34015             new CP("center1", {title: "Close Me", closable: true}),
34016             new CP("center2", {title: "Center Panel", closable: false})
34017         ]
34018     }
34019 }, document.body);
34020
34021 layout.getRegion("center").showPanel("center1");
34022 </code></pre>
34023  * @param config
34024  * @param targetEl
34025  */
34026 Roo.BorderLayout.create = function(config, targetEl){
34027     var layout = new Roo.BorderLayout(targetEl || document.body, config);
34028     layout.beginUpdate();
34029     var regions = Roo.BorderLayout.RegionFactory.validRegions;
34030     for(var j = 0, jlen = regions.length; j < jlen; j++){
34031         var lr = regions[j];
34032         if(layout.regions[lr] && config[lr].panels){
34033             var r = layout.regions[lr];
34034             var ps = config[lr].panels;
34035             layout.addTypedPanels(r, ps);
34036         }
34037     }
34038     layout.endUpdate();
34039     return layout;
34040 };
34041
34042 // private
34043 Roo.BorderLayout.RegionFactory = {
34044     // private
34045     validRegions : ["north","south","east","west","center"],
34046
34047     // private
34048     create : function(target, mgr, config){
34049         target = target.toLowerCase();
34050         if(config.lightweight || config.basic){
34051             return new Roo.BasicLayoutRegion(mgr, config, target);
34052         }
34053         switch(target){
34054             case "north":
34055                 return new Roo.NorthLayoutRegion(mgr, config);
34056             case "south":
34057                 return new Roo.SouthLayoutRegion(mgr, config);
34058             case "east":
34059                 return new Roo.EastLayoutRegion(mgr, config);
34060             case "west":
34061                 return new Roo.WestLayoutRegion(mgr, config);
34062             case "center":
34063                 return new Roo.CenterLayoutRegion(mgr, config);
34064         }
34065         throw 'Layout region "'+target+'" not supported.';
34066     }
34067 };/*
34068  * Based on:
34069  * Ext JS Library 1.1.1
34070  * Copyright(c) 2006-2007, Ext JS, LLC.
34071  *
34072  * Originally Released Under LGPL - original licence link has changed is not relivant.
34073  *
34074  * Fork - LGPL
34075  * <script type="text/javascript">
34076  */
34077  
34078 /**
34079  * @class Roo.BasicLayoutRegion
34080  * @extends Roo.util.Observable
34081  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
34082  * and does not have a titlebar, tabs or any other features. All it does is size and position 
34083  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
34084  */
34085 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
34086     this.mgr = mgr;
34087     this.position  = pos;
34088     this.events = {
34089         /**
34090          * @scope Roo.BasicLayoutRegion
34091          */
34092         
34093         /**
34094          * @event beforeremove
34095          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
34096          * @param {Roo.LayoutRegion} this
34097          * @param {Roo.ContentPanel} panel The panel
34098          * @param {Object} e The cancel event object
34099          */
34100         "beforeremove" : true,
34101         /**
34102          * @event invalidated
34103          * Fires when the layout for this region is changed.
34104          * @param {Roo.LayoutRegion} this
34105          */
34106         "invalidated" : true,
34107         /**
34108          * @event visibilitychange
34109          * Fires when this region is shown or hidden 
34110          * @param {Roo.LayoutRegion} this
34111          * @param {Boolean} visibility true or false
34112          */
34113         "visibilitychange" : true,
34114         /**
34115          * @event paneladded
34116          * Fires when a panel is added. 
34117          * @param {Roo.LayoutRegion} this
34118          * @param {Roo.ContentPanel} panel The panel
34119          */
34120         "paneladded" : true,
34121         /**
34122          * @event panelremoved
34123          * Fires when a panel is removed. 
34124          * @param {Roo.LayoutRegion} this
34125          * @param {Roo.ContentPanel} panel The panel
34126          */
34127         "panelremoved" : true,
34128         /**
34129          * @event beforecollapse
34130          * Fires when this region before collapse.
34131          * @param {Roo.LayoutRegion} this
34132          */
34133         "beforecollapse" : true,
34134         /**
34135          * @event collapsed
34136          * Fires when this region is collapsed.
34137          * @param {Roo.LayoutRegion} this
34138          */
34139         "collapsed" : true,
34140         /**
34141          * @event expanded
34142          * Fires when this region is expanded.
34143          * @param {Roo.LayoutRegion} this
34144          */
34145         "expanded" : true,
34146         /**
34147          * @event slideshow
34148          * Fires when this region is slid into view.
34149          * @param {Roo.LayoutRegion} this
34150          */
34151         "slideshow" : true,
34152         /**
34153          * @event slidehide
34154          * Fires when this region slides out of view. 
34155          * @param {Roo.LayoutRegion} this
34156          */
34157         "slidehide" : true,
34158         /**
34159          * @event panelactivated
34160          * Fires when a panel is activated. 
34161          * @param {Roo.LayoutRegion} this
34162          * @param {Roo.ContentPanel} panel The activated panel
34163          */
34164         "panelactivated" : true,
34165         /**
34166          * @event resized
34167          * Fires when the user resizes this region. 
34168          * @param {Roo.LayoutRegion} this
34169          * @param {Number} newSize The new size (width for east/west, height for north/south)
34170          */
34171         "resized" : true
34172     };
34173     /** A collection of panels in this region. @type Roo.util.MixedCollection */
34174     this.panels = new Roo.util.MixedCollection();
34175     this.panels.getKey = this.getPanelId.createDelegate(this);
34176     this.box = null;
34177     this.activePanel = null;
34178     // ensure listeners are added...
34179     
34180     if (config.listeners || config.events) {
34181         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
34182             listeners : config.listeners || {},
34183             events : config.events || {}
34184         });
34185     }
34186     
34187     if(skipConfig !== true){
34188         this.applyConfig(config);
34189     }
34190 };
34191
34192 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
34193     getPanelId : function(p){
34194         return p.getId();
34195     },
34196     
34197     applyConfig : function(config){
34198         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
34199         this.config = config;
34200         
34201     },
34202     
34203     /**
34204      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
34205      * the width, for horizontal (north, south) the height.
34206      * @param {Number} newSize The new width or height
34207      */
34208     resizeTo : function(newSize){
34209         var el = this.el ? this.el :
34210                  (this.activePanel ? this.activePanel.getEl() : null);
34211         if(el){
34212             switch(this.position){
34213                 case "east":
34214                 case "west":
34215                     el.setWidth(newSize);
34216                     this.fireEvent("resized", this, newSize);
34217                 break;
34218                 case "north":
34219                 case "south":
34220                     el.setHeight(newSize);
34221                     this.fireEvent("resized", this, newSize);
34222                 break;                
34223             }
34224         }
34225     },
34226     
34227     getBox : function(){
34228         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
34229     },
34230     
34231     getMargins : function(){
34232         return this.margins;
34233     },
34234     
34235     updateBox : function(box){
34236         this.box = box;
34237         var el = this.activePanel.getEl();
34238         el.dom.style.left = box.x + "px";
34239         el.dom.style.top = box.y + "px";
34240         this.activePanel.setSize(box.width, box.height);
34241     },
34242     
34243     /**
34244      * Returns the container element for this region.
34245      * @return {Roo.Element}
34246      */
34247     getEl : function(){
34248         return this.activePanel;
34249     },
34250     
34251     /**
34252      * Returns true if this region is currently visible.
34253      * @return {Boolean}
34254      */
34255     isVisible : function(){
34256         return this.activePanel ? true : false;
34257     },
34258     
34259     setActivePanel : function(panel){
34260         panel = this.getPanel(panel);
34261         if(this.activePanel && this.activePanel != panel){
34262             this.activePanel.setActiveState(false);
34263             this.activePanel.getEl().setLeftTop(-10000,-10000);
34264         }
34265         this.activePanel = panel;
34266         panel.setActiveState(true);
34267         if(this.box){
34268             panel.setSize(this.box.width, this.box.height);
34269         }
34270         this.fireEvent("panelactivated", this, panel);
34271         this.fireEvent("invalidated");
34272     },
34273     
34274     /**
34275      * Show the specified panel.
34276      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
34277      * @return {Roo.ContentPanel} The shown panel or null
34278      */
34279     showPanel : function(panel){
34280         if(panel = this.getPanel(panel)){
34281             this.setActivePanel(panel);
34282         }
34283         return panel;
34284     },
34285     
34286     /**
34287      * Get the active panel for this region.
34288      * @return {Roo.ContentPanel} The active panel or null
34289      */
34290     getActivePanel : function(){
34291         return this.activePanel;
34292     },
34293     
34294     /**
34295      * Add the passed ContentPanel(s)
34296      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
34297      * @return {Roo.ContentPanel} The panel added (if only one was added)
34298      */
34299     add : function(panel){
34300         if(arguments.length > 1){
34301             for(var i = 0, len = arguments.length; i < len; i++) {
34302                 this.add(arguments[i]);
34303             }
34304             return null;
34305         }
34306         if(this.hasPanel(panel)){
34307             this.showPanel(panel);
34308             return panel;
34309         }
34310         var el = panel.getEl();
34311         if(el.dom.parentNode != this.mgr.el.dom){
34312             this.mgr.el.dom.appendChild(el.dom);
34313         }
34314         if(panel.setRegion){
34315             panel.setRegion(this);
34316         }
34317         this.panels.add(panel);
34318         el.setStyle("position", "absolute");
34319         if(!panel.background){
34320             this.setActivePanel(panel);
34321             if(this.config.initialSize && this.panels.getCount()==1){
34322                 this.resizeTo(this.config.initialSize);
34323             }
34324         }
34325         this.fireEvent("paneladded", this, panel);
34326         return panel;
34327     },
34328     
34329     /**
34330      * Returns true if the panel is in this region.
34331      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
34332      * @return {Boolean}
34333      */
34334     hasPanel : function(panel){
34335         if(typeof panel == "object"){ // must be panel obj
34336             panel = panel.getId();
34337         }
34338         return this.getPanel(panel) ? true : false;
34339     },
34340     
34341     /**
34342      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
34343      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
34344      * @param {Boolean} preservePanel Overrides the config preservePanel option
34345      * @return {Roo.ContentPanel} The panel that was removed
34346      */
34347     remove : function(panel, preservePanel){
34348         panel = this.getPanel(panel);
34349         if(!panel){
34350             return null;
34351         }
34352         var e = {};
34353         this.fireEvent("beforeremove", this, panel, e);
34354         if(e.cancel === true){
34355             return null;
34356         }
34357         var panelId = panel.getId();
34358         this.panels.removeKey(panelId);
34359         return panel;
34360     },
34361     
34362     /**
34363      * Returns the panel specified or null if it's not in this region.
34364      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
34365      * @return {Roo.ContentPanel}
34366      */
34367     getPanel : function(id){
34368         if(typeof id == "object"){ // must be panel obj
34369             return id;
34370         }
34371         return this.panels.get(id);
34372     },
34373     
34374     /**
34375      * Returns this regions position (north/south/east/west/center).
34376      * @return {String} 
34377      */
34378     getPosition: function(){
34379         return this.position;    
34380     }
34381 });/*
34382  * Based on:
34383  * Ext JS Library 1.1.1
34384  * Copyright(c) 2006-2007, Ext JS, LLC.
34385  *
34386  * Originally Released Under LGPL - original licence link has changed is not relivant.
34387  *
34388  * Fork - LGPL
34389  * <script type="text/javascript">
34390  */
34391  
34392 /**
34393  * @class Roo.LayoutRegion
34394  * @extends Roo.BasicLayoutRegion
34395  * This class represents a region in a layout manager.
34396  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
34397  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
34398  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
34399  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
34400  * @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})
34401  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
34402  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
34403  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
34404  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
34405  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
34406  * @cfg {String}    title           The title for the region (overrides panel titles)
34407  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
34408  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
34409  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
34410  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
34411  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
34412  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
34413  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
34414  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
34415  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
34416  * @cfg {Boolean}   showPin         True to show a pin button
34417  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
34418  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
34419  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
34420  * @cfg {Number}    width           For East/West panels
34421  * @cfg {Number}    height          For North/South panels
34422  * @cfg {Boolean}   split           To show the splitter
34423  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
34424  */
34425 Roo.LayoutRegion = function(mgr, config, pos){
34426     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
34427     var dh = Roo.DomHelper;
34428     /** This region's container element 
34429     * @type Roo.Element */
34430     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
34431     /** This region's title element 
34432     * @type Roo.Element */
34433
34434     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
34435         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
34436         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
34437     ]}, true);
34438     this.titleEl.enableDisplayMode();
34439     /** This region's title text element 
34440     * @type HTMLElement */
34441     this.titleTextEl = this.titleEl.dom.firstChild;
34442     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
34443     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
34444     this.closeBtn.enableDisplayMode();
34445     this.closeBtn.on("click", this.closeClicked, this);
34446     this.closeBtn.hide();
34447
34448     this.createBody(config);
34449     this.visible = true;
34450     this.collapsed = false;
34451
34452     if(config.hideWhenEmpty){
34453         this.hide();
34454         this.on("paneladded", this.validateVisibility, this);
34455         this.on("panelremoved", this.validateVisibility, this);
34456     }
34457     this.applyConfig(config);
34458 };
34459
34460 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
34461
34462     createBody : function(){
34463         /** This region's body element 
34464         * @type Roo.Element */
34465         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
34466     },
34467
34468     applyConfig : function(c){
34469         if(c.collapsible && this.position != "center" && !this.collapsedEl){
34470             var dh = Roo.DomHelper;
34471             if(c.titlebar !== false){
34472                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
34473                 this.collapseBtn.on("click", this.collapse, this);
34474                 this.collapseBtn.enableDisplayMode();
34475
34476                 if(c.showPin === true || this.showPin){
34477                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
34478                     this.stickBtn.enableDisplayMode();
34479                     this.stickBtn.on("click", this.expand, this);
34480                     this.stickBtn.hide();
34481                 }
34482             }
34483             /** This region's collapsed element
34484             * @type Roo.Element */
34485             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
34486                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
34487             ]}, true);
34488             if(c.floatable !== false){
34489                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
34490                this.collapsedEl.on("click", this.collapseClick, this);
34491             }
34492
34493             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
34494                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
34495                    id: "message", unselectable: "on", style:{"float":"left"}});
34496                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
34497              }
34498             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
34499             this.expandBtn.on("click", this.expand, this);
34500         }
34501         if(this.collapseBtn){
34502             this.collapseBtn.setVisible(c.collapsible == true);
34503         }
34504         this.cmargins = c.cmargins || this.cmargins ||
34505                          (this.position == "west" || this.position == "east" ?
34506                              {top: 0, left: 2, right:2, bottom: 0} :
34507                              {top: 2, left: 0, right:0, bottom: 2});
34508         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
34509         this.bottomTabs = c.tabPosition != "top";
34510         this.autoScroll = c.autoScroll || false;
34511         if(this.autoScroll){
34512             this.bodyEl.setStyle("overflow", "auto");
34513         }else{
34514             this.bodyEl.setStyle("overflow", "hidden");
34515         }
34516         //if(c.titlebar !== false){
34517             if((!c.titlebar && !c.title) || c.titlebar === false){
34518                 this.titleEl.hide();
34519             }else{
34520                 this.titleEl.show();
34521                 if(c.title){
34522                     this.titleTextEl.innerHTML = c.title;
34523                 }
34524             }
34525         //}
34526         this.duration = c.duration || .30;
34527         this.slideDuration = c.slideDuration || .45;
34528         this.config = c;
34529         if(c.collapsed){
34530             this.collapse(true);
34531         }
34532         if(c.hidden){
34533             this.hide();
34534         }
34535     },
34536     /**
34537      * Returns true if this region is currently visible.
34538      * @return {Boolean}
34539      */
34540     isVisible : function(){
34541         return this.visible;
34542     },
34543
34544     /**
34545      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
34546      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
34547      */
34548     setCollapsedTitle : function(title){
34549         title = title || "&#160;";
34550         if(this.collapsedTitleTextEl){
34551             this.collapsedTitleTextEl.innerHTML = title;
34552         }
34553     },
34554
34555     getBox : function(){
34556         var b;
34557         if(!this.collapsed){
34558             b = this.el.getBox(false, true);
34559         }else{
34560             b = this.collapsedEl.getBox(false, true);
34561         }
34562         return b;
34563     },
34564
34565     getMargins : function(){
34566         return this.collapsed ? this.cmargins : this.margins;
34567     },
34568
34569     highlight : function(){
34570         this.el.addClass("x-layout-panel-dragover");
34571     },
34572
34573     unhighlight : function(){
34574         this.el.removeClass("x-layout-panel-dragover");
34575     },
34576
34577     updateBox : function(box){
34578         this.box = box;
34579         if(!this.collapsed){
34580             this.el.dom.style.left = box.x + "px";
34581             this.el.dom.style.top = box.y + "px";
34582             this.updateBody(box.width, box.height);
34583         }else{
34584             this.collapsedEl.dom.style.left = box.x + "px";
34585             this.collapsedEl.dom.style.top = box.y + "px";
34586             this.collapsedEl.setSize(box.width, box.height);
34587         }
34588         if(this.tabs){
34589             this.tabs.autoSizeTabs();
34590         }
34591     },
34592
34593     updateBody : function(w, h){
34594         if(w !== null){
34595             this.el.setWidth(w);
34596             w -= this.el.getBorderWidth("rl");
34597             if(this.config.adjustments){
34598                 w += this.config.adjustments[0];
34599             }
34600         }
34601         if(h !== null){
34602             this.el.setHeight(h);
34603             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
34604             h -= this.el.getBorderWidth("tb");
34605             if(this.config.adjustments){
34606                 h += this.config.adjustments[1];
34607             }
34608             this.bodyEl.setHeight(h);
34609             if(this.tabs){
34610                 h = this.tabs.syncHeight(h);
34611             }
34612         }
34613         if(this.panelSize){
34614             w = w !== null ? w : this.panelSize.width;
34615             h = h !== null ? h : this.panelSize.height;
34616         }
34617         if(this.activePanel){
34618             var el = this.activePanel.getEl();
34619             w = w !== null ? w : el.getWidth();
34620             h = h !== null ? h : el.getHeight();
34621             this.panelSize = {width: w, height: h};
34622             this.activePanel.setSize(w, h);
34623         }
34624         if(Roo.isIE && this.tabs){
34625             this.tabs.el.repaint();
34626         }
34627     },
34628
34629     /**
34630      * Returns the container element for this region.
34631      * @return {Roo.Element}
34632      */
34633     getEl : function(){
34634         return this.el;
34635     },
34636
34637     /**
34638      * Hides this region.
34639      */
34640     hide : function(){
34641         if(!this.collapsed){
34642             this.el.dom.style.left = "-2000px";
34643             this.el.hide();
34644         }else{
34645             this.collapsedEl.dom.style.left = "-2000px";
34646             this.collapsedEl.hide();
34647         }
34648         this.visible = false;
34649         this.fireEvent("visibilitychange", this, false);
34650     },
34651
34652     /**
34653      * Shows this region if it was previously hidden.
34654      */
34655     show : function(){
34656         if(!this.collapsed){
34657             this.el.show();
34658         }else{
34659             this.collapsedEl.show();
34660         }
34661         this.visible = true;
34662         this.fireEvent("visibilitychange", this, true);
34663     },
34664
34665     closeClicked : function(){
34666         if(this.activePanel){
34667             this.remove(this.activePanel);
34668         }
34669     },
34670
34671     collapseClick : function(e){
34672         if(this.isSlid){
34673            e.stopPropagation();
34674            this.slideIn();
34675         }else{
34676            e.stopPropagation();
34677            this.slideOut();
34678         }
34679     },
34680
34681     /**
34682      * Collapses this region.
34683      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
34684      */
34685     collapse : function(skipAnim, skipCheck){
34686         if(this.collapsed) {
34687             return;
34688         }
34689         
34690         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
34691             
34692             this.collapsed = true;
34693             if(this.split){
34694                 this.split.el.hide();
34695             }
34696             if(this.config.animate && skipAnim !== true){
34697                 this.fireEvent("invalidated", this);
34698                 this.animateCollapse();
34699             }else{
34700                 this.el.setLocation(-20000,-20000);
34701                 this.el.hide();
34702                 this.collapsedEl.show();
34703                 this.fireEvent("collapsed", this);
34704                 this.fireEvent("invalidated", this);
34705             }
34706         }
34707         
34708     },
34709
34710     animateCollapse : function(){
34711         // overridden
34712     },
34713
34714     /**
34715      * Expands this region if it was previously collapsed.
34716      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
34717      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
34718      */
34719     expand : function(e, skipAnim){
34720         if(e) {
34721             e.stopPropagation();
34722         }
34723         if(!this.collapsed || this.el.hasActiveFx()) {
34724             return;
34725         }
34726         if(this.isSlid){
34727             this.afterSlideIn();
34728             skipAnim = true;
34729         }
34730         this.collapsed = false;
34731         if(this.config.animate && skipAnim !== true){
34732             this.animateExpand();
34733         }else{
34734             this.el.show();
34735             if(this.split){
34736                 this.split.el.show();
34737             }
34738             this.collapsedEl.setLocation(-2000,-2000);
34739             this.collapsedEl.hide();
34740             this.fireEvent("invalidated", this);
34741             this.fireEvent("expanded", this);
34742         }
34743     },
34744
34745     animateExpand : function(){
34746         // overridden
34747     },
34748
34749     initTabs : function()
34750     {
34751         this.bodyEl.setStyle("overflow", "hidden");
34752         var ts = new Roo.TabPanel(
34753                 this.bodyEl.dom,
34754                 {
34755                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
34756                     disableTooltips: this.config.disableTabTips,
34757                     toolbar : this.config.toolbar
34758                 }
34759         );
34760         if(this.config.hideTabs){
34761             ts.stripWrap.setDisplayed(false);
34762         }
34763         this.tabs = ts;
34764         ts.resizeTabs = this.config.resizeTabs === true;
34765         ts.minTabWidth = this.config.minTabWidth || 40;
34766         ts.maxTabWidth = this.config.maxTabWidth || 250;
34767         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
34768         ts.monitorResize = false;
34769         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
34770         ts.bodyEl.addClass('x-layout-tabs-body');
34771         this.panels.each(this.initPanelAsTab, this);
34772     },
34773
34774     initPanelAsTab : function(panel){
34775         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
34776                     this.config.closeOnTab && panel.isClosable());
34777         if(panel.tabTip !== undefined){
34778             ti.setTooltip(panel.tabTip);
34779         }
34780         ti.on("activate", function(){
34781               this.setActivePanel(panel);
34782         }, this);
34783         if(this.config.closeOnTab){
34784             ti.on("beforeclose", function(t, e){
34785                 e.cancel = true;
34786                 this.remove(panel);
34787             }, this);
34788         }
34789         return ti;
34790     },
34791
34792     updatePanelTitle : function(panel, title){
34793         if(this.activePanel == panel){
34794             this.updateTitle(title);
34795         }
34796         if(this.tabs){
34797             var ti = this.tabs.getTab(panel.getEl().id);
34798             ti.setText(title);
34799             if(panel.tabTip !== undefined){
34800                 ti.setTooltip(panel.tabTip);
34801             }
34802         }
34803     },
34804
34805     updateTitle : function(title){
34806         if(this.titleTextEl && !this.config.title){
34807             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
34808         }
34809     },
34810
34811     setActivePanel : function(panel){
34812         panel = this.getPanel(panel);
34813         if(this.activePanel && this.activePanel != panel){
34814             this.activePanel.setActiveState(false);
34815         }
34816         this.activePanel = panel;
34817         panel.setActiveState(true);
34818         if(this.panelSize){
34819             panel.setSize(this.panelSize.width, this.panelSize.height);
34820         }
34821         if(this.closeBtn){
34822             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
34823         }
34824         this.updateTitle(panel.getTitle());
34825         if(this.tabs){
34826             this.fireEvent("invalidated", this);
34827         }
34828         this.fireEvent("panelactivated", this, panel);
34829     },
34830
34831     /**
34832      * Shows the specified panel.
34833      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
34834      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
34835      */
34836     showPanel : function(panel)
34837     {
34838         panel = this.getPanel(panel);
34839         if(panel){
34840             if(this.tabs){
34841                 var tab = this.tabs.getTab(panel.getEl().id);
34842                 if(tab.isHidden()){
34843                     this.tabs.unhideTab(tab.id);
34844                 }
34845                 tab.activate();
34846             }else{
34847                 this.setActivePanel(panel);
34848             }
34849         }
34850         return panel;
34851     },
34852
34853     /**
34854      * Get the active panel for this region.
34855      * @return {Roo.ContentPanel} The active panel or null
34856      */
34857     getActivePanel : function(){
34858         return this.activePanel;
34859     },
34860
34861     validateVisibility : function(){
34862         if(this.panels.getCount() < 1){
34863             this.updateTitle("&#160;");
34864             this.closeBtn.hide();
34865             this.hide();
34866         }else{
34867             if(!this.isVisible()){
34868                 this.show();
34869             }
34870         }
34871     },
34872
34873     /**
34874      * Adds the passed ContentPanel(s) to this region.
34875      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
34876      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
34877      */
34878     add : function(panel){
34879         if(arguments.length > 1){
34880             for(var i = 0, len = arguments.length; i < len; i++) {
34881                 this.add(arguments[i]);
34882             }
34883             return null;
34884         }
34885         if(this.hasPanel(panel)){
34886             this.showPanel(panel);
34887             return panel;
34888         }
34889         panel.setRegion(this);
34890         this.panels.add(panel);
34891         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
34892             this.bodyEl.dom.appendChild(panel.getEl().dom);
34893             if(panel.background !== true){
34894                 this.setActivePanel(panel);
34895             }
34896             this.fireEvent("paneladded", this, panel);
34897             return panel;
34898         }
34899         if(!this.tabs){
34900             this.initTabs();
34901         }else{
34902             this.initPanelAsTab(panel);
34903         }
34904         if(panel.background !== true){
34905             this.tabs.activate(panel.getEl().id);
34906         }
34907         this.fireEvent("paneladded", this, panel);
34908         return panel;
34909     },
34910
34911     /**
34912      * Hides the tab for the specified panel.
34913      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
34914      */
34915     hidePanel : function(panel){
34916         if(this.tabs && (panel = this.getPanel(panel))){
34917             this.tabs.hideTab(panel.getEl().id);
34918         }
34919     },
34920
34921     /**
34922      * Unhides the tab for a previously hidden panel.
34923      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
34924      */
34925     unhidePanel : function(panel){
34926         if(this.tabs && (panel = this.getPanel(panel))){
34927             this.tabs.unhideTab(panel.getEl().id);
34928         }
34929     },
34930
34931     clearPanels : function(){
34932         while(this.panels.getCount() > 0){
34933              this.remove(this.panels.first());
34934         }
34935     },
34936
34937     /**
34938      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
34939      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
34940      * @param {Boolean} preservePanel Overrides the config preservePanel option
34941      * @return {Roo.ContentPanel} The panel that was removed
34942      */
34943     remove : function(panel, preservePanel){
34944         panel = this.getPanel(panel);
34945         if(!panel){
34946             return null;
34947         }
34948         var e = {};
34949         this.fireEvent("beforeremove", this, panel, e);
34950         if(e.cancel === true){
34951             return null;
34952         }
34953         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
34954         var panelId = panel.getId();
34955         this.panels.removeKey(panelId);
34956         if(preservePanel){
34957             document.body.appendChild(panel.getEl().dom);
34958         }
34959         if(this.tabs){
34960             this.tabs.removeTab(panel.getEl().id);
34961         }else if (!preservePanel){
34962             this.bodyEl.dom.removeChild(panel.getEl().dom);
34963         }
34964         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
34965             var p = this.panels.first();
34966             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
34967             tempEl.appendChild(p.getEl().dom);
34968             this.bodyEl.update("");
34969             this.bodyEl.dom.appendChild(p.getEl().dom);
34970             tempEl = null;
34971             this.updateTitle(p.getTitle());
34972             this.tabs = null;
34973             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
34974             this.setActivePanel(p);
34975         }
34976         panel.setRegion(null);
34977         if(this.activePanel == panel){
34978             this.activePanel = null;
34979         }
34980         if(this.config.autoDestroy !== false && preservePanel !== true){
34981             try{panel.destroy();}catch(e){}
34982         }
34983         this.fireEvent("panelremoved", this, panel);
34984         return panel;
34985     },
34986
34987     /**
34988      * Returns the TabPanel component used by this region
34989      * @return {Roo.TabPanel}
34990      */
34991     getTabs : function(){
34992         return this.tabs;
34993     },
34994
34995     createTool : function(parentEl, className){
34996         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
34997             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
34998         btn.addClassOnOver("x-layout-tools-button-over");
34999         return btn;
35000     }
35001 });/*
35002  * Based on:
35003  * Ext JS Library 1.1.1
35004  * Copyright(c) 2006-2007, Ext JS, LLC.
35005  *
35006  * Originally Released Under LGPL - original licence link has changed is not relivant.
35007  *
35008  * Fork - LGPL
35009  * <script type="text/javascript">
35010  */
35011  
35012
35013
35014 /**
35015  * @class Roo.SplitLayoutRegion
35016  * @extends Roo.LayoutRegion
35017  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
35018  */
35019 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
35020     this.cursor = cursor;
35021     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
35022 };
35023
35024 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
35025     splitTip : "Drag to resize.",
35026     collapsibleSplitTip : "Drag to resize. Double click to hide.",
35027     useSplitTips : false,
35028
35029     applyConfig : function(config){
35030         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
35031         if(config.split){
35032             if(!this.split){
35033                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
35034                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
35035                 /** The SplitBar for this region 
35036                 * @type Roo.SplitBar */
35037                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
35038                 this.split.on("moved", this.onSplitMove, this);
35039                 this.split.useShim = config.useShim === true;
35040                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
35041                 if(this.useSplitTips){
35042                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
35043                 }
35044                 if(config.collapsible){
35045                     this.split.el.on("dblclick", this.collapse,  this);
35046                 }
35047             }
35048             if(typeof config.minSize != "undefined"){
35049                 this.split.minSize = config.minSize;
35050             }
35051             if(typeof config.maxSize != "undefined"){
35052                 this.split.maxSize = config.maxSize;
35053             }
35054             if(config.hideWhenEmpty || config.hidden || config.collapsed){
35055                 this.hideSplitter();
35056             }
35057         }
35058     },
35059
35060     getHMaxSize : function(){
35061          var cmax = this.config.maxSize || 10000;
35062          var center = this.mgr.getRegion("center");
35063          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
35064     },
35065
35066     getVMaxSize : function(){
35067          var cmax = this.config.maxSize || 10000;
35068          var center = this.mgr.getRegion("center");
35069          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
35070     },
35071
35072     onSplitMove : function(split, newSize){
35073         this.fireEvent("resized", this, newSize);
35074     },
35075     
35076     /** 
35077      * Returns the {@link Roo.SplitBar} for this region.
35078      * @return {Roo.SplitBar}
35079      */
35080     getSplitBar : function(){
35081         return this.split;
35082     },
35083     
35084     hide : function(){
35085         this.hideSplitter();
35086         Roo.SplitLayoutRegion.superclass.hide.call(this);
35087     },
35088
35089     hideSplitter : function(){
35090         if(this.split){
35091             this.split.el.setLocation(-2000,-2000);
35092             this.split.el.hide();
35093         }
35094     },
35095
35096     show : function(){
35097         if(this.split){
35098             this.split.el.show();
35099         }
35100         Roo.SplitLayoutRegion.superclass.show.call(this);
35101     },
35102     
35103     beforeSlide: function(){
35104         if(Roo.isGecko){// firefox overflow auto bug workaround
35105             this.bodyEl.clip();
35106             if(this.tabs) {
35107                 this.tabs.bodyEl.clip();
35108             }
35109             if(this.activePanel){
35110                 this.activePanel.getEl().clip();
35111                 
35112                 if(this.activePanel.beforeSlide){
35113                     this.activePanel.beforeSlide();
35114                 }
35115             }
35116         }
35117     },
35118     
35119     afterSlide : function(){
35120         if(Roo.isGecko){// firefox overflow auto bug workaround
35121             this.bodyEl.unclip();
35122             if(this.tabs) {
35123                 this.tabs.bodyEl.unclip();
35124             }
35125             if(this.activePanel){
35126                 this.activePanel.getEl().unclip();
35127                 if(this.activePanel.afterSlide){
35128                     this.activePanel.afterSlide();
35129                 }
35130             }
35131         }
35132     },
35133
35134     initAutoHide : function(){
35135         if(this.autoHide !== false){
35136             if(!this.autoHideHd){
35137                 var st = new Roo.util.DelayedTask(this.slideIn, this);
35138                 this.autoHideHd = {
35139                     "mouseout": function(e){
35140                         if(!e.within(this.el, true)){
35141                             st.delay(500);
35142                         }
35143                     },
35144                     "mouseover" : function(e){
35145                         st.cancel();
35146                     },
35147                     scope : this
35148                 };
35149             }
35150             this.el.on(this.autoHideHd);
35151         }
35152     },
35153
35154     clearAutoHide : function(){
35155         if(this.autoHide !== false){
35156             this.el.un("mouseout", this.autoHideHd.mouseout);
35157             this.el.un("mouseover", this.autoHideHd.mouseover);
35158         }
35159     },
35160
35161     clearMonitor : function(){
35162         Roo.get(document).un("click", this.slideInIf, this);
35163     },
35164
35165     // these names are backwards but not changed for compat
35166     slideOut : function(){
35167         if(this.isSlid || this.el.hasActiveFx()){
35168             return;
35169         }
35170         this.isSlid = true;
35171         if(this.collapseBtn){
35172             this.collapseBtn.hide();
35173         }
35174         this.closeBtnState = this.closeBtn.getStyle('display');
35175         this.closeBtn.hide();
35176         if(this.stickBtn){
35177             this.stickBtn.show();
35178         }
35179         this.el.show();
35180         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
35181         this.beforeSlide();
35182         this.el.setStyle("z-index", 10001);
35183         this.el.slideIn(this.getSlideAnchor(), {
35184             callback: function(){
35185                 this.afterSlide();
35186                 this.initAutoHide();
35187                 Roo.get(document).on("click", this.slideInIf, this);
35188                 this.fireEvent("slideshow", this);
35189             },
35190             scope: this,
35191             block: true
35192         });
35193     },
35194
35195     afterSlideIn : function(){
35196         this.clearAutoHide();
35197         this.isSlid = false;
35198         this.clearMonitor();
35199         this.el.setStyle("z-index", "");
35200         if(this.collapseBtn){
35201             this.collapseBtn.show();
35202         }
35203         this.closeBtn.setStyle('display', this.closeBtnState);
35204         if(this.stickBtn){
35205             this.stickBtn.hide();
35206         }
35207         this.fireEvent("slidehide", this);
35208     },
35209
35210     slideIn : function(cb){
35211         if(!this.isSlid || this.el.hasActiveFx()){
35212             Roo.callback(cb);
35213             return;
35214         }
35215         this.isSlid = false;
35216         this.beforeSlide();
35217         this.el.slideOut(this.getSlideAnchor(), {
35218             callback: function(){
35219                 this.el.setLeftTop(-10000, -10000);
35220                 this.afterSlide();
35221                 this.afterSlideIn();
35222                 Roo.callback(cb);
35223             },
35224             scope: this,
35225             block: true
35226         });
35227     },
35228     
35229     slideInIf : function(e){
35230         if(!e.within(this.el)){
35231             this.slideIn();
35232         }
35233     },
35234
35235     animateCollapse : function(){
35236         this.beforeSlide();
35237         this.el.setStyle("z-index", 20000);
35238         var anchor = this.getSlideAnchor();
35239         this.el.slideOut(anchor, {
35240             callback : function(){
35241                 this.el.setStyle("z-index", "");
35242                 this.collapsedEl.slideIn(anchor, {duration:.3});
35243                 this.afterSlide();
35244                 this.el.setLocation(-10000,-10000);
35245                 this.el.hide();
35246                 this.fireEvent("collapsed", this);
35247             },
35248             scope: this,
35249             block: true
35250         });
35251     },
35252
35253     animateExpand : function(){
35254         this.beforeSlide();
35255         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
35256         this.el.setStyle("z-index", 20000);
35257         this.collapsedEl.hide({
35258             duration:.1
35259         });
35260         this.el.slideIn(this.getSlideAnchor(), {
35261             callback : function(){
35262                 this.el.setStyle("z-index", "");
35263                 this.afterSlide();
35264                 if(this.split){
35265                     this.split.el.show();
35266                 }
35267                 this.fireEvent("invalidated", this);
35268                 this.fireEvent("expanded", this);
35269             },
35270             scope: this,
35271             block: true
35272         });
35273     },
35274
35275     anchors : {
35276         "west" : "left",
35277         "east" : "right",
35278         "north" : "top",
35279         "south" : "bottom"
35280     },
35281
35282     sanchors : {
35283         "west" : "l",
35284         "east" : "r",
35285         "north" : "t",
35286         "south" : "b"
35287     },
35288
35289     canchors : {
35290         "west" : "tl-tr",
35291         "east" : "tr-tl",
35292         "north" : "tl-bl",
35293         "south" : "bl-tl"
35294     },
35295
35296     getAnchor : function(){
35297         return this.anchors[this.position];
35298     },
35299
35300     getCollapseAnchor : function(){
35301         return this.canchors[this.position];
35302     },
35303
35304     getSlideAnchor : function(){
35305         return this.sanchors[this.position];
35306     },
35307
35308     getAlignAdj : function(){
35309         var cm = this.cmargins;
35310         switch(this.position){
35311             case "west":
35312                 return [0, 0];
35313             break;
35314             case "east":
35315                 return [0, 0];
35316             break;
35317             case "north":
35318                 return [0, 0];
35319             break;
35320             case "south":
35321                 return [0, 0];
35322             break;
35323         }
35324     },
35325
35326     getExpandAdj : function(){
35327         var c = this.collapsedEl, cm = this.cmargins;
35328         switch(this.position){
35329             case "west":
35330                 return [-(cm.right+c.getWidth()+cm.left), 0];
35331             break;
35332             case "east":
35333                 return [cm.right+c.getWidth()+cm.left, 0];
35334             break;
35335             case "north":
35336                 return [0, -(cm.top+cm.bottom+c.getHeight())];
35337             break;
35338             case "south":
35339                 return [0, cm.top+cm.bottom+c.getHeight()];
35340             break;
35341         }
35342     }
35343 });/*
35344  * Based on:
35345  * Ext JS Library 1.1.1
35346  * Copyright(c) 2006-2007, Ext JS, LLC.
35347  *
35348  * Originally Released Under LGPL - original licence link has changed is not relivant.
35349  *
35350  * Fork - LGPL
35351  * <script type="text/javascript">
35352  */
35353 /*
35354  * These classes are private internal classes
35355  */
35356 Roo.CenterLayoutRegion = function(mgr, config){
35357     Roo.LayoutRegion.call(this, mgr, config, "center");
35358     this.visible = true;
35359     this.minWidth = config.minWidth || 20;
35360     this.minHeight = config.minHeight || 20;
35361 };
35362
35363 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
35364     hide : function(){
35365         // center panel can't be hidden
35366     },
35367     
35368     show : function(){
35369         // center panel can't be hidden
35370     },
35371     
35372     getMinWidth: function(){
35373         return this.minWidth;
35374     },
35375     
35376     getMinHeight: function(){
35377         return this.minHeight;
35378     }
35379 });
35380
35381
35382 Roo.NorthLayoutRegion = function(mgr, config){
35383     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
35384     if(this.split){
35385         this.split.placement = Roo.SplitBar.TOP;
35386         this.split.orientation = Roo.SplitBar.VERTICAL;
35387         this.split.el.addClass("x-layout-split-v");
35388     }
35389     var size = config.initialSize || config.height;
35390     if(typeof size != "undefined"){
35391         this.el.setHeight(size);
35392     }
35393 };
35394 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
35395     orientation: Roo.SplitBar.VERTICAL,
35396     getBox : function(){
35397         if(this.collapsed){
35398             return this.collapsedEl.getBox();
35399         }
35400         var box = this.el.getBox();
35401         if(this.split){
35402             box.height += this.split.el.getHeight();
35403         }
35404         return box;
35405     },
35406     
35407     updateBox : function(box){
35408         if(this.split && !this.collapsed){
35409             box.height -= this.split.el.getHeight();
35410             this.split.el.setLeft(box.x);
35411             this.split.el.setTop(box.y+box.height);
35412             this.split.el.setWidth(box.width);
35413         }
35414         if(this.collapsed){
35415             this.updateBody(box.width, null);
35416         }
35417         Roo.LayoutRegion.prototype.updateBox.call(this, box);
35418     }
35419 });
35420
35421 Roo.SouthLayoutRegion = function(mgr, config){
35422     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
35423     if(this.split){
35424         this.split.placement = Roo.SplitBar.BOTTOM;
35425         this.split.orientation = Roo.SplitBar.VERTICAL;
35426         this.split.el.addClass("x-layout-split-v");
35427     }
35428     var size = config.initialSize || config.height;
35429     if(typeof size != "undefined"){
35430         this.el.setHeight(size);
35431     }
35432 };
35433 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
35434     orientation: Roo.SplitBar.VERTICAL,
35435     getBox : function(){
35436         if(this.collapsed){
35437             return this.collapsedEl.getBox();
35438         }
35439         var box = this.el.getBox();
35440         if(this.split){
35441             var sh = this.split.el.getHeight();
35442             box.height += sh;
35443             box.y -= sh;
35444         }
35445         return box;
35446     },
35447     
35448     updateBox : function(box){
35449         if(this.split && !this.collapsed){
35450             var sh = this.split.el.getHeight();
35451             box.height -= sh;
35452             box.y += sh;
35453             this.split.el.setLeft(box.x);
35454             this.split.el.setTop(box.y-sh);
35455             this.split.el.setWidth(box.width);
35456         }
35457         if(this.collapsed){
35458             this.updateBody(box.width, null);
35459         }
35460         Roo.LayoutRegion.prototype.updateBox.call(this, box);
35461     }
35462 });
35463
35464 Roo.EastLayoutRegion = function(mgr, config){
35465     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
35466     if(this.split){
35467         this.split.placement = Roo.SplitBar.RIGHT;
35468         this.split.orientation = Roo.SplitBar.HORIZONTAL;
35469         this.split.el.addClass("x-layout-split-h");
35470     }
35471     var size = config.initialSize || config.width;
35472     if(typeof size != "undefined"){
35473         this.el.setWidth(size);
35474     }
35475 };
35476 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
35477     orientation: Roo.SplitBar.HORIZONTAL,
35478     getBox : function(){
35479         if(this.collapsed){
35480             return this.collapsedEl.getBox();
35481         }
35482         var box = this.el.getBox();
35483         if(this.split){
35484             var sw = this.split.el.getWidth();
35485             box.width += sw;
35486             box.x -= sw;
35487         }
35488         return box;
35489     },
35490
35491     updateBox : function(box){
35492         if(this.split && !this.collapsed){
35493             var sw = this.split.el.getWidth();
35494             box.width -= sw;
35495             this.split.el.setLeft(box.x);
35496             this.split.el.setTop(box.y);
35497             this.split.el.setHeight(box.height);
35498             box.x += sw;
35499         }
35500         if(this.collapsed){
35501             this.updateBody(null, box.height);
35502         }
35503         Roo.LayoutRegion.prototype.updateBox.call(this, box);
35504     }
35505 });
35506
35507 Roo.WestLayoutRegion = function(mgr, config){
35508     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
35509     if(this.split){
35510         this.split.placement = Roo.SplitBar.LEFT;
35511         this.split.orientation = Roo.SplitBar.HORIZONTAL;
35512         this.split.el.addClass("x-layout-split-h");
35513     }
35514     var size = config.initialSize || config.width;
35515     if(typeof size != "undefined"){
35516         this.el.setWidth(size);
35517     }
35518 };
35519 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
35520     orientation: Roo.SplitBar.HORIZONTAL,
35521     getBox : function(){
35522         if(this.collapsed){
35523             return this.collapsedEl.getBox();
35524         }
35525         var box = this.el.getBox();
35526         if(this.split){
35527             box.width += this.split.el.getWidth();
35528         }
35529         return box;
35530     },
35531     
35532     updateBox : function(box){
35533         if(this.split && !this.collapsed){
35534             var sw = this.split.el.getWidth();
35535             box.width -= sw;
35536             this.split.el.setLeft(box.x+box.width);
35537             this.split.el.setTop(box.y);
35538             this.split.el.setHeight(box.height);
35539         }
35540         if(this.collapsed){
35541             this.updateBody(null, box.height);
35542         }
35543         Roo.LayoutRegion.prototype.updateBox.call(this, box);
35544     }
35545 });
35546 /*
35547  * Based on:
35548  * Ext JS Library 1.1.1
35549  * Copyright(c) 2006-2007, Ext JS, LLC.
35550  *
35551  * Originally Released Under LGPL - original licence link has changed is not relivant.
35552  *
35553  * Fork - LGPL
35554  * <script type="text/javascript">
35555  */
35556  
35557  
35558 /*
35559  * Private internal class for reading and applying state
35560  */
35561 Roo.LayoutStateManager = function(layout){
35562      // default empty state
35563      this.state = {
35564         north: {},
35565         south: {},
35566         east: {},
35567         west: {}       
35568     };
35569 };
35570
35571 Roo.LayoutStateManager.prototype = {
35572     init : function(layout, provider){
35573         this.provider = provider;
35574         var state = provider.get(layout.id+"-layout-state");
35575         if(state){
35576             var wasUpdating = layout.isUpdating();
35577             if(!wasUpdating){
35578                 layout.beginUpdate();
35579             }
35580             for(var key in state){
35581                 if(typeof state[key] != "function"){
35582                     var rstate = state[key];
35583                     var r = layout.getRegion(key);
35584                     if(r && rstate){
35585                         if(rstate.size){
35586                             r.resizeTo(rstate.size);
35587                         }
35588                         if(rstate.collapsed == true){
35589                             r.collapse(true);
35590                         }else{
35591                             r.expand(null, true);
35592                         }
35593                     }
35594                 }
35595             }
35596             if(!wasUpdating){
35597                 layout.endUpdate();
35598             }
35599             this.state = state; 
35600         }
35601         this.layout = layout;
35602         layout.on("regionresized", this.onRegionResized, this);
35603         layout.on("regioncollapsed", this.onRegionCollapsed, this);
35604         layout.on("regionexpanded", this.onRegionExpanded, this);
35605     },
35606     
35607     storeState : function(){
35608         this.provider.set(this.layout.id+"-layout-state", this.state);
35609     },
35610     
35611     onRegionResized : function(region, newSize){
35612         this.state[region.getPosition()].size = newSize;
35613         this.storeState();
35614     },
35615     
35616     onRegionCollapsed : function(region){
35617         this.state[region.getPosition()].collapsed = true;
35618         this.storeState();
35619     },
35620     
35621     onRegionExpanded : function(region){
35622         this.state[region.getPosition()].collapsed = false;
35623         this.storeState();
35624     }
35625 };/*
35626  * Based on:
35627  * Ext JS Library 1.1.1
35628  * Copyright(c) 2006-2007, Ext JS, LLC.
35629  *
35630  * Originally Released Under LGPL - original licence link has changed is not relivant.
35631  *
35632  * Fork - LGPL
35633  * <script type="text/javascript">
35634  */
35635 /**
35636  * @class Roo.ContentPanel
35637  * @extends Roo.util.Observable
35638  * @children Roo.form.Form Roo.JsonView Roo.View
35639  * @parent Roo.BorderLayout Roo.LayoutDialog builder
35640  * A basic ContentPanel element.
35641  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
35642  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
35643  * @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
35644  * @cfg {Boolean}   closable      True if the panel can be closed/removed
35645  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
35646  * @cfg {String|HTMLElement|Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
35647  * @cfg {Roo.Toolbar}   toolbar       A toolbar for this panel
35648  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
35649  * @cfg {String} title          The title for this panel
35650  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
35651  * @cfg {String} url            Calls {@link #setUrl} with this value
35652  * @cfg {String} region (center|north|south|east|west) [required] which region to put this panel on (when used with xtype constructors)
35653  * @cfg {String|Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
35654  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
35655  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
35656  * @cfg {String}    style  Extra style to add to the content panel
35657  * @cfg {Roo.menu.Menu} menu  popup menu
35658
35659  * @constructor
35660  * Create a new ContentPanel.
35661  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
35662  * @param {String/Object} config A string to set only the title or a config object
35663  * @param {String} content (optional) Set the HTML content for this panel
35664  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
35665  */
35666 Roo.ContentPanel = function(el, config, content){
35667     
35668      
35669     /*
35670     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
35671         config = el;
35672         el = Roo.id();
35673     }
35674     if (config && config.parentLayout) { 
35675         el = config.parentLayout.el.createChild(); 
35676     }
35677     */
35678     if(el.autoCreate){ // xtype is available if this is called from factory
35679         config = el;
35680         el = Roo.id();
35681     }
35682     this.el = Roo.get(el);
35683     if(!this.el && config && config.autoCreate){
35684         if(typeof config.autoCreate == "object"){
35685             if(!config.autoCreate.id){
35686                 config.autoCreate.id = config.id||el;
35687             }
35688             this.el = Roo.DomHelper.append(document.body,
35689                         config.autoCreate, true);
35690         }else{
35691             this.el = Roo.DomHelper.append(document.body,
35692                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
35693         }
35694     }
35695     
35696     
35697     this.closable = false;
35698     this.loaded = false;
35699     this.active = false;
35700     if(typeof config == "string"){
35701         this.title = config;
35702     }else{
35703         Roo.apply(this, config);
35704     }
35705     
35706     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
35707         this.wrapEl = this.el.wrap();
35708         this.toolbar.container = this.el.insertSibling(false, 'before');
35709         this.toolbar = new Roo.Toolbar(this.toolbar);
35710     }
35711     
35712     // xtype created footer. - not sure if will work as we normally have to render first..
35713     if (this.footer && !this.footer.el && this.footer.xtype) {
35714         if (!this.wrapEl) {
35715             this.wrapEl = this.el.wrap();
35716         }
35717     
35718         this.footer.container = this.wrapEl.createChild();
35719          
35720         this.footer = Roo.factory(this.footer, Roo);
35721         
35722     }
35723     
35724     if(this.resizeEl){
35725         this.resizeEl = Roo.get(this.resizeEl, true);
35726     }else{
35727         this.resizeEl = this.el;
35728     }
35729     // handle view.xtype
35730     
35731  
35732     
35733     
35734     this.addEvents({
35735         /**
35736          * @event activate
35737          * Fires when this panel is activated. 
35738          * @param {Roo.ContentPanel} this
35739          */
35740         "activate" : true,
35741         /**
35742          * @event deactivate
35743          * Fires when this panel is activated. 
35744          * @param {Roo.ContentPanel} this
35745          */
35746         "deactivate" : true,
35747
35748         /**
35749          * @event resize
35750          * Fires when this panel is resized if fitToFrame is true.
35751          * @param {Roo.ContentPanel} this
35752          * @param {Number} width The width after any component adjustments
35753          * @param {Number} height The height after any component adjustments
35754          */
35755         "resize" : true,
35756         
35757          /**
35758          * @event render
35759          * Fires when this tab is created
35760          * @param {Roo.ContentPanel} this
35761          */
35762         "render" : true
35763          
35764         
35765     });
35766     
35767
35768     
35769     
35770     if(this.autoScroll){
35771         this.resizeEl.setStyle("overflow", "auto");
35772     } else {
35773         // fix randome scrolling
35774         this.el.on('scroll', function() {
35775             Roo.log('fix random scolling');
35776             this.scrollTo('top',0); 
35777         });
35778     }
35779     content = content || this.content;
35780     if(content){
35781         this.setContent(content);
35782     }
35783     if(config && config.url){
35784         this.setUrl(this.url, this.params, this.loadOnce);
35785     }
35786     
35787     
35788     
35789     Roo.ContentPanel.superclass.constructor.call(this);
35790     
35791     if (this.view && typeof(this.view.xtype) != 'undefined') {
35792         this.view.el = this.el.appendChild(document.createElement("div"));
35793         this.view = Roo.factory(this.view); 
35794         this.view.render  &&  this.view.render(false, '');  
35795     }
35796     
35797     
35798     this.fireEvent('render', this);
35799 };
35800
35801 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
35802     tabTip:'',
35803     setRegion : function(region){
35804         this.region = region;
35805         if(region){
35806            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
35807         }else{
35808            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
35809         } 
35810     },
35811     
35812     /**
35813      * Returns the toolbar for this Panel if one was configured. 
35814      * @return {Roo.Toolbar} 
35815      */
35816     getToolbar : function(){
35817         return this.toolbar;
35818     },
35819     
35820     setActiveState : function(active){
35821         this.active = active;
35822         if(!active){
35823             this.fireEvent("deactivate", this);
35824         }else{
35825             this.fireEvent("activate", this);
35826         }
35827     },
35828     /**
35829      * Updates this panel's element
35830      * @param {String} content The new content
35831      * @param {Boolean} loadScripts (optional) true to look for and process scripts
35832     */
35833     setContent : function(content, loadScripts){
35834         this.el.update(content, loadScripts);
35835     },
35836
35837     ignoreResize : function(w, h){
35838         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
35839             return true;
35840         }else{
35841             this.lastSize = {width: w, height: h};
35842             return false;
35843         }
35844     },
35845     /**
35846      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
35847      * @return {Roo.UpdateManager} The UpdateManager
35848      */
35849     getUpdateManager : function(){
35850         return this.el.getUpdateManager();
35851     },
35852      /**
35853      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
35854      * @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:
35855 <pre><code>
35856 panel.load({
35857     url: "your-url.php",
35858     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
35859     callback: yourFunction,
35860     scope: yourObject, //(optional scope)
35861     discardUrl: false,
35862     nocache: false,
35863     text: "Loading...",
35864     timeout: 30,
35865     scripts: false
35866 });
35867 </code></pre>
35868      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
35869      * 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.
35870      * @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}
35871      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
35872      * @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.
35873      * @return {Roo.ContentPanel} this
35874      */
35875     load : function(){
35876         var um = this.el.getUpdateManager();
35877         um.update.apply(um, arguments);
35878         return this;
35879     },
35880
35881
35882     /**
35883      * 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.
35884      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
35885      * @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)
35886      * @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)
35887      * @return {Roo.UpdateManager} The UpdateManager
35888      */
35889     setUrl : function(url, params, loadOnce){
35890         if(this.refreshDelegate){
35891             this.removeListener("activate", this.refreshDelegate);
35892         }
35893         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
35894         this.on("activate", this.refreshDelegate);
35895         return this.el.getUpdateManager();
35896     },
35897     
35898     _handleRefresh : function(url, params, loadOnce){
35899         if(!loadOnce || !this.loaded){
35900             var updater = this.el.getUpdateManager();
35901             updater.update(url, params, this._setLoaded.createDelegate(this));
35902         }
35903     },
35904     
35905     _setLoaded : function(){
35906         this.loaded = true;
35907     }, 
35908     
35909     /**
35910      * Returns this panel's id
35911      * @return {String} 
35912      */
35913     getId : function(){
35914         return this.el.id;
35915     },
35916     
35917     /** 
35918      * Returns this panel's element - used by regiosn to add.
35919      * @return {Roo.Element} 
35920      */
35921     getEl : function(){
35922         return this.wrapEl || this.el;
35923     },
35924     
35925     adjustForComponents : function(width, height)
35926     {
35927         //Roo.log('adjustForComponents ');
35928         if(this.resizeEl != this.el){
35929             width -= this.el.getFrameWidth('lr');
35930             height -= this.el.getFrameWidth('tb');
35931         }
35932         if(this.toolbar){
35933             var te = this.toolbar.getEl();
35934             height -= te.getHeight();
35935             te.setWidth(width);
35936         }
35937         if(this.footer){
35938             var te = this.footer.getEl();
35939             //Roo.log("footer:" + te.getHeight());
35940             
35941             height -= te.getHeight();
35942             te.setWidth(width);
35943         }
35944         
35945         
35946         if(this.adjustments){
35947             width += this.adjustments[0];
35948             height += this.adjustments[1];
35949         }
35950         return {"width": width, "height": height};
35951     },
35952     
35953     setSize : function(width, height){
35954         if(this.fitToFrame && !this.ignoreResize(width, height)){
35955             if(this.fitContainer && this.resizeEl != this.el){
35956                 this.el.setSize(width, height);
35957             }
35958             var size = this.adjustForComponents(width, height);
35959             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
35960             this.fireEvent('resize', this, size.width, size.height);
35961         }
35962     },
35963     
35964     /**
35965      * Returns this panel's title
35966      * @return {String} 
35967      */
35968     getTitle : function(){
35969         return this.title;
35970     },
35971     
35972     /**
35973      * Set this panel's title
35974      * @param {String} title
35975      */
35976     setTitle : function(title){
35977         this.title = title;
35978         if(this.region){
35979             this.region.updatePanelTitle(this, title);
35980         }
35981     },
35982     
35983     /**
35984      * Returns true is this panel was configured to be closable
35985      * @return {Boolean} 
35986      */
35987     isClosable : function(){
35988         return this.closable;
35989     },
35990     
35991     beforeSlide : function(){
35992         this.el.clip();
35993         this.resizeEl.clip();
35994     },
35995     
35996     afterSlide : function(){
35997         this.el.unclip();
35998         this.resizeEl.unclip();
35999     },
36000     
36001     /**
36002      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
36003      *   Will fail silently if the {@link #setUrl} method has not been called.
36004      *   This does not activate the panel, just updates its content.
36005      */
36006     refresh : function(){
36007         if(this.refreshDelegate){
36008            this.loaded = false;
36009            this.refreshDelegate();
36010         }
36011     },
36012     
36013     /**
36014      * Destroys this panel
36015      */
36016     destroy : function(){
36017         this.el.removeAllListeners();
36018         var tempEl = document.createElement("span");
36019         tempEl.appendChild(this.el.dom);
36020         tempEl.innerHTML = "";
36021         this.el.remove();
36022         this.el = null;
36023     },
36024     
36025     /**
36026      * form - if the content panel contains a form - this is a reference to it.
36027      * @type {Roo.form.Form}
36028      */
36029     form : false,
36030     /**
36031      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
36032      *    This contains a reference to it.
36033      * @type {Roo.View}
36034      */
36035     view : false,
36036     
36037       /**
36038      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
36039      * <pre><code>
36040
36041 layout.addxtype({
36042        xtype : 'Form',
36043        items: [ .... ]
36044    }
36045 );
36046
36047 </code></pre>
36048      * @param {Object} cfg Xtype definition of item to add.
36049      */
36050     
36051     addxtype : function(cfg) {
36052         // add form..
36053         if (cfg.xtype.match(/^Form$/)) {
36054             
36055             var el;
36056             //if (this.footer) {
36057             //    el = this.footer.container.insertSibling(false, 'before');
36058             //} else {
36059                 el = this.el.createChild();
36060             //}
36061
36062             this.form = new  Roo.form.Form(cfg);
36063             
36064             
36065             if ( this.form.allItems.length) {
36066                 this.form.render(el.dom);
36067             }
36068             return this.form;
36069         }
36070         // should only have one of theses..
36071         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
36072             // views.. should not be just added - used named prop 'view''
36073             
36074             cfg.el = this.el.appendChild(document.createElement("div"));
36075             // factory?
36076             
36077             var ret = new Roo.factory(cfg);
36078              
36079              ret.render && ret.render(false, ''); // render blank..
36080             this.view = ret;
36081             return ret;
36082         }
36083         return false;
36084     }
36085 });
36086
36087 /**
36088  * @class Roo.GridPanel
36089  * @extends Roo.ContentPanel
36090  * @parent Roo.BorderLayout Roo.LayoutDialog builder
36091  * @constructor
36092  * Create a new GridPanel.
36093  * @cfg {Roo.grid.Grid} grid The grid for this panel
36094  */
36095 Roo.GridPanel = function(grid, config){
36096     
36097     // universal ctor...
36098     if (typeof(grid.grid) != 'undefined') {
36099         config = grid;
36100         grid = config.grid;
36101     }
36102     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
36103         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
36104         
36105     this.wrapper.dom.appendChild(grid.getGridEl().dom);
36106     
36107     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
36108     
36109     if(this.toolbar){
36110         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
36111     }
36112     // xtype created footer. - not sure if will work as we normally have to render first..
36113     if (this.footer && !this.footer.el && this.footer.xtype) {
36114         
36115         this.footer.container = this.grid.getView().getFooterPanel(true);
36116         this.footer.dataSource = this.grid.dataSource;
36117         this.footer = Roo.factory(this.footer, Roo);
36118         
36119     }
36120     
36121     grid.monitorWindowResize = false; // turn off autosizing
36122     grid.autoHeight = false;
36123     grid.autoWidth = false;
36124     this.grid = grid;
36125     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
36126 };
36127
36128 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
36129     getId : function(){
36130         return this.grid.id;
36131     },
36132     
36133     /**
36134      * Returns the grid for this panel
36135      * @return {Roo.grid.Grid} 
36136      */
36137     getGrid : function(){
36138         return this.grid;    
36139     },
36140     
36141     setSize : function(width, height){
36142         if(!this.ignoreResize(width, height)){
36143             var grid = this.grid;
36144             var size = this.adjustForComponents(width, height);
36145             grid.getGridEl().setSize(size.width, size.height);
36146             grid.autoSize();
36147         }
36148     },
36149     
36150     beforeSlide : function(){
36151         this.grid.getView().scroller.clip();
36152     },
36153     
36154     afterSlide : function(){
36155         this.grid.getView().scroller.unclip();
36156     },
36157     
36158     destroy : function(){
36159         this.grid.destroy();
36160         delete this.grid;
36161         Roo.GridPanel.superclass.destroy.call(this); 
36162     }
36163 });
36164
36165
36166 /**
36167  * @class Roo.NestedLayoutPanel
36168  * @extends Roo.ContentPanel
36169  * @parent Roo.BorderLayout Roo.LayoutDialog builder
36170  * @cfg Roo.BorderLayout} layout   [required] The layout for this panel
36171  *
36172  * 
36173  * @constructor
36174  * Create a new NestedLayoutPanel.
36175  * 
36176  * 
36177  * @param {Roo.BorderLayout} layout [required] The layout for this panel
36178  * @param {String/Object} config A string to set only the title or a config object
36179  */
36180 Roo.NestedLayoutPanel = function(layout, config)
36181 {
36182     // construct with only one argument..
36183     /* FIXME - implement nicer consturctors
36184     if (layout.layout) {
36185         config = layout;
36186         layout = config.layout;
36187         delete config.layout;
36188     }
36189     if (layout.xtype && !layout.getEl) {
36190         // then layout needs constructing..
36191         layout = Roo.factory(layout, Roo);
36192     }
36193     */
36194     
36195     
36196     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
36197     
36198     layout.monitorWindowResize = false; // turn off autosizing
36199     this.layout = layout;
36200     this.layout.getEl().addClass("x-layout-nested-layout");
36201     
36202     
36203     
36204     
36205 };
36206
36207 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
36208
36209     setSize : function(width, height){
36210         if(!this.ignoreResize(width, height)){
36211             var size = this.adjustForComponents(width, height);
36212             var el = this.layout.getEl();
36213             el.setSize(size.width, size.height);
36214             var touch = el.dom.offsetWidth;
36215             this.layout.layout();
36216             // ie requires a double layout on the first pass
36217             if(Roo.isIE && !this.initialized){
36218                 this.initialized = true;
36219                 this.layout.layout();
36220             }
36221         }
36222     },
36223     
36224     // activate all subpanels if not currently active..
36225     
36226     setActiveState : function(active){
36227         this.active = active;
36228         if(!active){
36229             this.fireEvent("deactivate", this);
36230             return;
36231         }
36232         
36233         this.fireEvent("activate", this);
36234         // not sure if this should happen before or after..
36235         if (!this.layout) {
36236             return; // should not happen..
36237         }
36238         var reg = false;
36239         for (var r in this.layout.regions) {
36240             reg = this.layout.getRegion(r);
36241             if (reg.getActivePanel()) {
36242                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
36243                 reg.setActivePanel(reg.getActivePanel());
36244                 continue;
36245             }
36246             if (!reg.panels.length) {
36247                 continue;
36248             }
36249             reg.showPanel(reg.getPanel(0));
36250         }
36251         
36252         
36253         
36254         
36255     },
36256     
36257     /**
36258      * Returns the nested BorderLayout for this panel
36259      * @return {Roo.BorderLayout} 
36260      */
36261     getLayout : function(){
36262         return this.layout;
36263     },
36264     
36265      /**
36266      * Adds a xtype elements to the layout of the nested panel
36267      * <pre><code>
36268
36269 panel.addxtype({
36270        xtype : 'ContentPanel',
36271        region: 'west',
36272        items: [ .... ]
36273    }
36274 );
36275
36276 panel.addxtype({
36277         xtype : 'NestedLayoutPanel',
36278         region: 'west',
36279         layout: {
36280            center: { },
36281            west: { }   
36282         },
36283         items : [ ... list of content panels or nested layout panels.. ]
36284    }
36285 );
36286 </code></pre>
36287      * @param {Object} cfg Xtype definition of item to add.
36288      */
36289     addxtype : function(cfg) {
36290         return this.layout.addxtype(cfg);
36291     
36292     }
36293 });
36294
36295 Roo.ScrollPanel = function(el, config, content){
36296     config = config || {};
36297     config.fitToFrame = true;
36298     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
36299     
36300     this.el.dom.style.overflow = "hidden";
36301     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
36302     this.el.removeClass("x-layout-inactive-content");
36303     this.el.on("mousewheel", this.onWheel, this);
36304
36305     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
36306     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
36307     up.unselectable(); down.unselectable();
36308     up.on("click", this.scrollUp, this);
36309     down.on("click", this.scrollDown, this);
36310     up.addClassOnOver("x-scroller-btn-over");
36311     down.addClassOnOver("x-scroller-btn-over");
36312     up.addClassOnClick("x-scroller-btn-click");
36313     down.addClassOnClick("x-scroller-btn-click");
36314     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
36315
36316     this.resizeEl = this.el;
36317     this.el = wrap; this.up = up; this.down = down;
36318 };
36319
36320 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
36321     increment : 100,
36322     wheelIncrement : 5,
36323     scrollUp : function(){
36324         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
36325     },
36326
36327     scrollDown : function(){
36328         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
36329     },
36330
36331     afterScroll : function(){
36332         var el = this.resizeEl;
36333         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
36334         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
36335         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
36336     },
36337
36338     setSize : function(){
36339         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
36340         this.afterScroll();
36341     },
36342
36343     onWheel : function(e){
36344         var d = e.getWheelDelta();
36345         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
36346         this.afterScroll();
36347         e.stopEvent();
36348     },
36349
36350     setContent : function(content, loadScripts){
36351         this.resizeEl.update(content, loadScripts);
36352     }
36353
36354 });
36355
36356
36357
36358 /**
36359  * @class Roo.TreePanel
36360  * @extends Roo.ContentPanel
36361  * @parent Roo.BorderLayout Roo.LayoutDialog builder
36362  * Treepanel component
36363  * 
36364  * @constructor
36365  * Create a new TreePanel. - defaults to fit/scoll contents.
36366  * @param {String/Object} config A string to set only the panel's title, or a config object
36367  */
36368 Roo.TreePanel = function(config){
36369     var el = config.el;
36370     var tree = config.tree;
36371     delete config.tree; 
36372     delete config.el; // hopefull!
36373     
36374     // wrapper for IE7 strict & safari scroll issue
36375     
36376     var treeEl = el.createChild();
36377     config.resizeEl = treeEl;
36378     
36379     
36380     
36381     Roo.TreePanel.superclass.constructor.call(this, el, config);
36382  
36383  
36384     this.tree = new Roo.tree.TreePanel(treeEl , tree);
36385     //console.log(tree);
36386     this.on('activate', function()
36387     {
36388         if (this.tree.rendered) {
36389             return;
36390         }
36391         //console.log('render tree');
36392         this.tree.render();
36393     });
36394     // this should not be needed.. - it's actually the 'el' that resizes?
36395     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
36396     
36397     //this.on('resize',  function (cp, w, h) {
36398     //        this.tree.innerCt.setWidth(w);
36399     //        this.tree.innerCt.setHeight(h);
36400     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
36401     //});
36402
36403         
36404     
36405 };
36406
36407 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
36408     fitToFrame : true,
36409     autoScroll : true,
36410     /*
36411      * @cfg {Roo.tree.TreePanel} tree [required] The tree TreePanel, with config etc.
36412      */
36413     tree : false
36414
36415 });
36416
36417
36418
36419
36420
36421
36422
36423
36424
36425
36426
36427 /*
36428  * Based on:
36429  * Ext JS Library 1.1.1
36430  * Copyright(c) 2006-2007, Ext JS, LLC.
36431  *
36432  * Originally Released Under LGPL - original licence link has changed is not relivant.
36433  *
36434  * Fork - LGPL
36435  * <script type="text/javascript">
36436  */
36437  
36438
36439 /**
36440  * @class Roo.ReaderLayout
36441  * @extends Roo.BorderLayout
36442  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
36443  * center region containing two nested regions (a top one for a list view and one for item preview below),
36444  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
36445  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
36446  * expedites the setup of the overall layout and regions for this common application style.
36447  * Example:
36448  <pre><code>
36449 var reader = new Roo.ReaderLayout();
36450 var CP = Roo.ContentPanel;  // shortcut for adding
36451
36452 reader.beginUpdate();
36453 reader.add("north", new CP("north", "North"));
36454 reader.add("west", new CP("west", {title: "West"}));
36455 reader.add("east", new CP("east", {title: "East"}));
36456
36457 reader.regions.listView.add(new CP("listView", "List"));
36458 reader.regions.preview.add(new CP("preview", "Preview"));
36459 reader.endUpdate();
36460 </code></pre>
36461 * @constructor
36462 * Create a new ReaderLayout
36463 * @param {Object} config Configuration options
36464 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
36465 * document.body if omitted)
36466 */
36467 Roo.ReaderLayout = function(config, renderTo){
36468     var c = config || {size:{}};
36469     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
36470         north: c.north !== false ? Roo.apply({
36471             split:false,
36472             initialSize: 32,
36473             titlebar: false
36474         }, c.north) : false,
36475         west: c.west !== false ? Roo.apply({
36476             split:true,
36477             initialSize: 200,
36478             minSize: 175,
36479             maxSize: 400,
36480             titlebar: true,
36481             collapsible: true,
36482             animate: true,
36483             margins:{left:5,right:0,bottom:5,top:5},
36484             cmargins:{left:5,right:5,bottom:5,top:5}
36485         }, c.west) : false,
36486         east: c.east !== false ? Roo.apply({
36487             split:true,
36488             initialSize: 200,
36489             minSize: 175,
36490             maxSize: 400,
36491             titlebar: true,
36492             collapsible: true,
36493             animate: true,
36494             margins:{left:0,right:5,bottom:5,top:5},
36495             cmargins:{left:5,right:5,bottom:5,top:5}
36496         }, c.east) : false,
36497         center: Roo.apply({
36498             tabPosition: 'top',
36499             autoScroll:false,
36500             closeOnTab: true,
36501             titlebar:false,
36502             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
36503         }, c.center)
36504     });
36505
36506     this.el.addClass('x-reader');
36507
36508     this.beginUpdate();
36509
36510     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
36511         south: c.preview !== false ? Roo.apply({
36512             split:true,
36513             initialSize: 200,
36514             minSize: 100,
36515             autoScroll:true,
36516             collapsible:true,
36517             titlebar: true,
36518             cmargins:{top:5,left:0, right:0, bottom:0}
36519         }, c.preview) : false,
36520         center: Roo.apply({
36521             autoScroll:false,
36522             titlebar:false,
36523             minHeight:200
36524         }, c.listView)
36525     });
36526     this.add('center', new Roo.NestedLayoutPanel(inner,
36527             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
36528
36529     this.endUpdate();
36530
36531     this.regions.preview = inner.getRegion('south');
36532     this.regions.listView = inner.getRegion('center');
36533 };
36534
36535 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
36536  * Based on:
36537  * Ext JS Library 1.1.1
36538  * Copyright(c) 2006-2007, Ext JS, LLC.
36539  *
36540  * Originally Released Under LGPL - original licence link has changed is not relivant.
36541  *
36542  * Fork - LGPL
36543  * <script type="text/javascript">
36544  */
36545  
36546 /**
36547  * @class Roo.grid.Grid
36548  * @extends Roo.util.Observable
36549  * This class represents the primary interface of a component based grid control.
36550  * <br><br>Usage:<pre><code>
36551  var grid = new Roo.grid.Grid("my-container-id", {
36552      ds: myDataStore,
36553      cm: myColModel,
36554      selModel: mySelectionModel,
36555      autoSizeColumns: true,
36556      monitorWindowResize: false,
36557      trackMouseOver: true
36558  });
36559  // set any options
36560  grid.render();
36561  * </code></pre>
36562  * <b>Common Problems:</b><br/>
36563  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
36564  * element will correct this<br/>
36565  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
36566  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
36567  * are unpredictable.<br/>
36568  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
36569  * grid to calculate dimensions/offsets.<br/>
36570   * @constructor
36571  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
36572  * The container MUST have some type of size defined for the grid to fill. The container will be
36573  * automatically set to position relative if it isn't already.
36574  * @param {Object} config A config object that sets properties on this grid.
36575  */
36576 Roo.grid.Grid = function(container, config){
36577         // initialize the container
36578         this.container = Roo.get(container);
36579         this.container.update("");
36580         this.container.setStyle("overflow", "hidden");
36581     this.container.addClass('x-grid-container');
36582
36583     this.id = this.container.id;
36584
36585     Roo.apply(this, config);
36586     // check and correct shorthanded configs
36587     if(this.ds){
36588         this.dataSource = this.ds;
36589         delete this.ds;
36590     }
36591     if(this.cm){
36592         this.colModel = this.cm;
36593         delete this.cm;
36594     }
36595     if(this.sm){
36596         this.selModel = this.sm;
36597         delete this.sm;
36598     }
36599
36600     if (this.selModel) {
36601         this.selModel = Roo.factory(this.selModel, Roo.grid);
36602         this.sm = this.selModel;
36603         this.sm.xmodule = this.xmodule || false;
36604     }
36605     if (typeof(this.colModel.config) == 'undefined') {
36606         this.colModel = new Roo.grid.ColumnModel(this.colModel);
36607         this.cm = this.colModel;
36608         this.cm.xmodule = this.xmodule || false;
36609     }
36610     if (this.dataSource) {
36611         this.dataSource= Roo.factory(this.dataSource, Roo.data);
36612         this.ds = this.dataSource;
36613         this.ds.xmodule = this.xmodule || false;
36614          
36615     }
36616     
36617     
36618     
36619     if(this.width){
36620         this.container.setWidth(this.width);
36621     }
36622
36623     if(this.height){
36624         this.container.setHeight(this.height);
36625     }
36626     /** @private */
36627         this.addEvents({
36628         // raw events
36629         /**
36630          * @event click
36631          * The raw click event for the entire grid.
36632          * @param {Roo.EventObject} e
36633          */
36634         "click" : true,
36635         /**
36636          * @event dblclick
36637          * The raw dblclick event for the entire grid.
36638          * @param {Roo.EventObject} e
36639          */
36640         "dblclick" : true,
36641         /**
36642          * @event contextmenu
36643          * The raw contextmenu event for the entire grid.
36644          * @param {Roo.EventObject} e
36645          */
36646         "contextmenu" : true,
36647         /**
36648          * @event mousedown
36649          * The raw mousedown event for the entire grid.
36650          * @param {Roo.EventObject} e
36651          */
36652         "mousedown" : true,
36653         /**
36654          * @event mouseup
36655          * The raw mouseup event for the entire grid.
36656          * @param {Roo.EventObject} e
36657          */
36658         "mouseup" : true,
36659         /**
36660          * @event mouseover
36661          * The raw mouseover event for the entire grid.
36662          * @param {Roo.EventObject} e
36663          */
36664         "mouseover" : true,
36665         /**
36666          * @event mouseout
36667          * The raw mouseout event for the entire grid.
36668          * @param {Roo.EventObject} e
36669          */
36670         "mouseout" : true,
36671         /**
36672          * @event keypress
36673          * The raw keypress event for the entire grid.
36674          * @param {Roo.EventObject} e
36675          */
36676         "keypress" : true,
36677         /**
36678          * @event keydown
36679          * The raw keydown event for the entire grid.
36680          * @param {Roo.EventObject} e
36681          */
36682         "keydown" : true,
36683
36684         // custom events
36685
36686         /**
36687          * @event cellclick
36688          * Fires when a cell is clicked
36689          * @param {Grid} this
36690          * @param {Number} rowIndex
36691          * @param {Number} columnIndex
36692          * @param {Roo.EventObject} e
36693          */
36694         "cellclick" : true,
36695         /**
36696          * @event celldblclick
36697          * Fires when a cell is double clicked
36698          * @param {Grid} this
36699          * @param {Number} rowIndex
36700          * @param {Number} columnIndex
36701          * @param {Roo.EventObject} e
36702          */
36703         "celldblclick" : true,
36704         /**
36705          * @event rowclick
36706          * Fires when a row is clicked
36707          * @param {Grid} this
36708          * @param {Number} rowIndex
36709          * @param {Roo.EventObject} e
36710          */
36711         "rowclick" : true,
36712         /**
36713          * @event rowdblclick
36714          * Fires when a row is double clicked
36715          * @param {Grid} this
36716          * @param {Number} rowIndex
36717          * @param {Roo.EventObject} e
36718          */
36719         "rowdblclick" : true,
36720         /**
36721          * @event headerclick
36722          * Fires when a header is clicked
36723          * @param {Grid} this
36724          * @param {Number} columnIndex
36725          * @param {Roo.EventObject} e
36726          */
36727         "headerclick" : true,
36728         /**
36729          * @event headerdblclick
36730          * Fires when a header cell is double clicked
36731          * @param {Grid} this
36732          * @param {Number} columnIndex
36733          * @param {Roo.EventObject} e
36734          */
36735         "headerdblclick" : true,
36736         /**
36737          * @event rowcontextmenu
36738          * Fires when a row is right clicked
36739          * @param {Grid} this
36740          * @param {Number} rowIndex
36741          * @param {Roo.EventObject} e
36742          */
36743         "rowcontextmenu" : true,
36744         /**
36745          * @event cellcontextmenu
36746          * Fires when a cell is right clicked
36747          * @param {Grid} this
36748          * @param {Number} rowIndex
36749          * @param {Number} cellIndex
36750          * @param {Roo.EventObject} e
36751          */
36752          "cellcontextmenu" : true,
36753         /**
36754          * @event headercontextmenu
36755          * Fires when a header is right clicked
36756          * @param {Grid} this
36757          * @param {Number} columnIndex
36758          * @param {Roo.EventObject} e
36759          */
36760         "headercontextmenu" : true,
36761         /**
36762          * @event bodyscroll
36763          * Fires when the body element is scrolled
36764          * @param {Number} scrollLeft
36765          * @param {Number} scrollTop
36766          */
36767         "bodyscroll" : true,
36768         /**
36769          * @event columnresize
36770          * Fires when the user resizes a column
36771          * @param {Number} columnIndex
36772          * @param {Number} newSize
36773          */
36774         "columnresize" : true,
36775         /**
36776          * @event columnmove
36777          * Fires when the user moves a column
36778          * @param {Number} oldIndex
36779          * @param {Number} newIndex
36780          */
36781         "columnmove" : true,
36782         /**
36783          * @event startdrag
36784          * Fires when row(s) start being dragged
36785          * @param {Grid} this
36786          * @param {Roo.GridDD} dd The drag drop object
36787          * @param {event} e The raw browser event
36788          */
36789         "startdrag" : true,
36790         /**
36791          * @event enddrag
36792          * Fires when a drag operation is complete
36793          * @param {Grid} this
36794          * @param {Roo.GridDD} dd The drag drop object
36795          * @param {event} e The raw browser event
36796          */
36797         "enddrag" : true,
36798         /**
36799          * @event dragdrop
36800          * Fires when dragged row(s) are dropped on a valid DD target
36801          * @param {Grid} this
36802          * @param {Roo.GridDD} dd The drag drop object
36803          * @param {String} targetId The target drag drop object
36804          * @param {event} e The raw browser event
36805          */
36806         "dragdrop" : true,
36807         /**
36808          * @event dragover
36809          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
36810          * @param {Grid} this
36811          * @param {Roo.GridDD} dd The drag drop object
36812          * @param {String} targetId The target drag drop object
36813          * @param {event} e The raw browser event
36814          */
36815         "dragover" : true,
36816         /**
36817          * @event dragenter
36818          *  Fires when the dragged row(s) first cross another DD target while being dragged
36819          * @param {Grid} this
36820          * @param {Roo.GridDD} dd The drag drop object
36821          * @param {String} targetId The target drag drop object
36822          * @param {event} e The raw browser event
36823          */
36824         "dragenter" : true,
36825         /**
36826          * @event dragout
36827          * Fires when the dragged row(s) leave another DD target while being dragged
36828          * @param {Grid} this
36829          * @param {Roo.GridDD} dd The drag drop object
36830          * @param {String} targetId The target drag drop object
36831          * @param {event} e The raw browser event
36832          */
36833         "dragout" : true,
36834         /**
36835          * @event rowclass
36836          * Fires when a row is rendered, so you can change add a style to it.
36837          * @param {GridView} gridview   The grid view
36838          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
36839          */
36840         'rowclass' : true,
36841
36842         /**
36843          * @event render
36844          * Fires when the grid is rendered
36845          * @param {Grid} grid
36846          */
36847         'render' : true
36848     });
36849
36850     Roo.grid.Grid.superclass.constructor.call(this);
36851 };
36852 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
36853     
36854     /**
36855          * @cfg {Roo.grid.AbstractSelectionModel} sm The selection Model (default = Roo.grid.RowSelectionModel)
36856          */
36857         /**
36858          * @cfg {Roo.grid.GridView} view  The view that renders the grid (default = Roo.grid.GridView)
36859          */
36860         /**
36861          * @cfg {Roo.grid.ColumnModel} cm[] The columns of the grid
36862          */
36863         /**
36864          * @cfg {Roo.grid.Store} ds The data store for the grid
36865          */
36866         /**
36867          * @cfg {Roo.Toolbar} toolbar a toolbar for buttons etc.
36868          */
36869         /**
36870      * @cfg {String} ddGroup - drag drop group.
36871      */
36872       /**
36873      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
36874      */
36875
36876     /**
36877      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
36878      */
36879     minColumnWidth : 25,
36880
36881     /**
36882      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
36883      * <b>on initial render.</b> It is more efficient to explicitly size the columns
36884      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
36885      */
36886     autoSizeColumns : false,
36887
36888     /**
36889      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
36890      */
36891     autoSizeHeaders : true,
36892
36893     /**
36894      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
36895      */
36896     monitorWindowResize : true,
36897
36898     /**
36899      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
36900      * rows measured to get a columns size. Default is 0 (all rows).
36901      */
36902     maxRowsToMeasure : 0,
36903
36904     /**
36905      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
36906      */
36907     trackMouseOver : true,
36908
36909     /**
36910     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
36911     */
36912       /**
36913     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
36914     */
36915     
36916     /**
36917     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
36918     */
36919     enableDragDrop : false,
36920     
36921     /**
36922     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
36923     */
36924     enableColumnMove : true,
36925     
36926     /**
36927     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
36928     */
36929     enableColumnHide : true,
36930     
36931     /**
36932     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
36933     */
36934     enableRowHeightSync : false,
36935     
36936     /**
36937     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
36938     */
36939     stripeRows : true,
36940     
36941     /**
36942     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
36943     */
36944     autoHeight : false,
36945
36946     /**
36947      * @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.
36948      */
36949     autoExpandColumn : false,
36950
36951     /**
36952     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
36953     * Default is 50.
36954     */
36955     autoExpandMin : 50,
36956
36957     /**
36958     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
36959     */
36960     autoExpandMax : 1000,
36961
36962     /**
36963     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
36964     */
36965     view : null,
36966
36967     /**
36968     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
36969     */
36970     loadMask : false,
36971     /**
36972     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
36973     */
36974     dropTarget: false,
36975      /**
36976     * @cfg {boolean} sortColMenu Sort the column order menu when it shows (usefull for long lists..) default false
36977     */ 
36978     sortColMenu : false,
36979     
36980     // private
36981     rendered : false,
36982
36983     /**
36984     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
36985     * of a fixed width. Default is false.
36986     */
36987     /**
36988     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
36989     */
36990     
36991     
36992     /**
36993     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
36994     * %0 is replaced with the number of selected rows.
36995     */
36996     ddText : "{0} selected row{1}",
36997     
36998     
36999     /**
37000      * Called once after all setup has been completed and the grid is ready to be rendered.
37001      * @return {Roo.grid.Grid} this
37002      */
37003     render : function()
37004     {
37005         var c = this.container;
37006         // try to detect autoHeight/width mode
37007         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
37008             this.autoHeight = true;
37009         }
37010         var view = this.getView();
37011         view.init(this);
37012
37013         c.on("click", this.onClick, this);
37014         c.on("dblclick", this.onDblClick, this);
37015         c.on("contextmenu", this.onContextMenu, this);
37016         c.on("keydown", this.onKeyDown, this);
37017         if (Roo.isTouch) {
37018             c.on("touchstart", this.onTouchStart, this);
37019         }
37020
37021         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
37022
37023         this.getSelectionModel().init(this);
37024
37025         view.render();
37026
37027         if(this.loadMask){
37028             this.loadMask = new Roo.LoadMask(this.container,
37029                     Roo.apply({store:this.dataSource}, this.loadMask));
37030         }
37031         
37032         
37033         if (this.toolbar && this.toolbar.xtype) {
37034             this.toolbar.container = this.getView().getHeaderPanel(true);
37035             this.toolbar = new Roo.Toolbar(this.toolbar);
37036         }
37037         if (this.footer && this.footer.xtype) {
37038             this.footer.dataSource = this.getDataSource();
37039             this.footer.container = this.getView().getFooterPanel(true);
37040             this.footer = Roo.factory(this.footer, Roo);
37041         }
37042         if (this.dropTarget && this.dropTarget.xtype) {
37043             delete this.dropTarget.xtype;
37044             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
37045         }
37046         
37047         
37048         this.rendered = true;
37049         this.fireEvent('render', this);
37050         return this;
37051     },
37052
37053     /**
37054      * Reconfigures the grid to use a different Store and Column Model.
37055      * The View will be bound to the new objects and refreshed.
37056      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
37057      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
37058      */
37059     reconfigure : function(dataSource, colModel){
37060         if(this.loadMask){
37061             this.loadMask.destroy();
37062             this.loadMask = new Roo.LoadMask(this.container,
37063                     Roo.apply({store:dataSource}, this.loadMask));
37064         }
37065         this.view.bind(dataSource, colModel);
37066         this.dataSource = dataSource;
37067         this.colModel = colModel;
37068         this.view.refresh(true);
37069     },
37070     /**
37071      * addColumns
37072      * Add's a column, default at the end..
37073      
37074      * @param {int} position to add (default end)
37075      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
37076      */
37077     addColumns : function(pos, ar)
37078     {
37079         
37080         for (var i =0;i< ar.length;i++) {
37081             var cfg = ar[i];
37082             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
37083             this.cm.lookup[cfg.id] = cfg;
37084         }
37085         
37086         
37087         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
37088             pos = this.cm.config.length; //this.cm.config.push(cfg);
37089         } 
37090         pos = Math.max(0,pos);
37091         ar.unshift(0);
37092         ar.unshift(pos);
37093         this.cm.config.splice.apply(this.cm.config, ar);
37094         
37095         
37096         
37097         this.view.generateRules(this.cm);
37098         this.view.refresh(true);
37099         
37100     },
37101     
37102     
37103     
37104     
37105     // private
37106     onKeyDown : function(e){
37107         this.fireEvent("keydown", e);
37108     },
37109
37110     /**
37111      * Destroy this grid.
37112      * @param {Boolean} removeEl True to remove the element
37113      */
37114     destroy : function(removeEl, keepListeners){
37115         if(this.loadMask){
37116             this.loadMask.destroy();
37117         }
37118         var c = this.container;
37119         c.removeAllListeners();
37120         this.view.destroy();
37121         this.colModel.purgeListeners();
37122         if(!keepListeners){
37123             this.purgeListeners();
37124         }
37125         c.update("");
37126         if(removeEl === true){
37127             c.remove();
37128         }
37129     },
37130
37131     // private
37132     processEvent : function(name, e){
37133         // does this fire select???
37134         //Roo.log('grid:processEvent '  + name);
37135         
37136         if (name != 'touchstart' ) {
37137             this.fireEvent(name, e);    
37138         }
37139         
37140         var t = e.getTarget();
37141         var v = this.view;
37142         var header = v.findHeaderIndex(t);
37143         if(header !== false){
37144             var ename = name == 'touchstart' ? 'click' : name;
37145              
37146             this.fireEvent("header" + ename, this, header, e);
37147         }else{
37148             var row = v.findRowIndex(t);
37149             var cell = v.findCellIndex(t);
37150             if (name == 'touchstart') {
37151                 // first touch is always a click.
37152                 // hopefull this happens after selection is updated.?
37153                 name = false;
37154                 
37155                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
37156                     var cs = this.selModel.getSelectedCell();
37157                     if (row == cs[0] && cell == cs[1]){
37158                         name = 'dblclick';
37159                     }
37160                 }
37161                 if (typeof(this.selModel.getSelections) != 'undefined') {
37162                     var cs = this.selModel.getSelections();
37163                     var ds = this.dataSource;
37164                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
37165                         name = 'dblclick';
37166                     }
37167                 }
37168                 if (!name) {
37169                     return;
37170                 }
37171             }
37172             
37173             
37174             if(row !== false){
37175                 this.fireEvent("row" + name, this, row, e);
37176                 if(cell !== false){
37177                     this.fireEvent("cell" + name, this, row, cell, e);
37178                 }
37179             }
37180         }
37181     },
37182
37183     // private
37184     onClick : function(e){
37185         this.processEvent("click", e);
37186     },
37187    // private
37188     onTouchStart : function(e){
37189         this.processEvent("touchstart", e);
37190     },
37191
37192     // private
37193     onContextMenu : function(e, t){
37194         this.processEvent("contextmenu", e);
37195     },
37196
37197     // private
37198     onDblClick : function(e){
37199         this.processEvent("dblclick", e);
37200     },
37201
37202     // private
37203     walkCells : function(row, col, step, fn, scope){
37204         var cm = this.colModel, clen = cm.getColumnCount();
37205         var ds = this.dataSource, rlen = ds.getCount(), first = true;
37206         if(step < 0){
37207             if(col < 0){
37208                 row--;
37209                 first = false;
37210             }
37211             while(row >= 0){
37212                 if(!first){
37213                     col = clen-1;
37214                 }
37215                 first = false;
37216                 while(col >= 0){
37217                     if(fn.call(scope || this, row, col, cm) === true){
37218                         return [row, col];
37219                     }
37220                     col--;
37221                 }
37222                 row--;
37223             }
37224         } else {
37225             if(col >= clen){
37226                 row++;
37227                 first = false;
37228             }
37229             while(row < rlen){
37230                 if(!first){
37231                     col = 0;
37232                 }
37233                 first = false;
37234                 while(col < clen){
37235                     if(fn.call(scope || this, row, col, cm) === true){
37236                         return [row, col];
37237                     }
37238                     col++;
37239                 }
37240                 row++;
37241             }
37242         }
37243         return null;
37244     },
37245
37246     // private
37247     getSelections : function(){
37248         return this.selModel.getSelections();
37249     },
37250
37251     /**
37252      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
37253      * but if manual update is required this method will initiate it.
37254      */
37255     autoSize : function(){
37256         if(this.rendered){
37257             this.view.layout();
37258             if(this.view.adjustForScroll){
37259                 this.view.adjustForScroll();
37260             }
37261         }
37262     },
37263
37264     /**
37265      * Returns the grid's underlying element.
37266      * @return {Element} The element
37267      */
37268     getGridEl : function(){
37269         return this.container;
37270     },
37271
37272     // private for compatibility, overridden by editor grid
37273     stopEditing : function(){},
37274
37275     /**
37276      * Returns the grid's SelectionModel.
37277      * @return {SelectionModel}
37278      */
37279     getSelectionModel : function(){
37280         if(!this.selModel){
37281             this.selModel = new Roo.grid.RowSelectionModel();
37282         }
37283         return this.selModel;
37284     },
37285
37286     /**
37287      * Returns the grid's DataSource.
37288      * @return {DataSource}
37289      */
37290     getDataSource : function(){
37291         return this.dataSource;
37292     },
37293
37294     /**
37295      * Returns the grid's ColumnModel.
37296      * @return {ColumnModel}
37297      */
37298     getColumnModel : function(){
37299         return this.colModel;
37300     },
37301
37302     /**
37303      * Returns the grid's GridView object.
37304      * @return {GridView}
37305      */
37306     getView : function(){
37307         if(!this.view){
37308             this.view = new Roo.grid.GridView(this.viewConfig);
37309             this.relayEvents(this.view, [
37310                 "beforerowremoved", "beforerowsinserted",
37311                 "beforerefresh", "rowremoved",
37312                 "rowsinserted", "rowupdated" ,"refresh"
37313             ]);
37314         }
37315         return this.view;
37316     },
37317     /**
37318      * Called to get grid's drag proxy text, by default returns this.ddText.
37319      * Override this to put something different in the dragged text.
37320      * @return {String}
37321      */
37322     getDragDropText : function(){
37323         var count = this.selModel.getCount();
37324         return String.format(this.ddText, count, count == 1 ? '' : 's');
37325     }
37326 });
37327 /*
37328  * Based on:
37329  * Ext JS Library 1.1.1
37330  * Copyright(c) 2006-2007, Ext JS, LLC.
37331  *
37332  * Originally Released Under LGPL - original licence link has changed is not relivant.
37333  *
37334  * Fork - LGPL
37335  * <script type="text/javascript">
37336  */
37337  /**
37338  * @class Roo.grid.AbstractGridView
37339  * @extends Roo.util.Observable
37340  * @abstract
37341  * Abstract base class for grid Views
37342  * @constructor
37343  */
37344 Roo.grid.AbstractGridView = function(){
37345         this.grid = null;
37346         
37347         this.events = {
37348             "beforerowremoved" : true,
37349             "beforerowsinserted" : true,
37350             "beforerefresh" : true,
37351             "rowremoved" : true,
37352             "rowsinserted" : true,
37353             "rowupdated" : true,
37354             "refresh" : true
37355         };
37356     Roo.grid.AbstractGridView.superclass.constructor.call(this);
37357 };
37358
37359 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
37360     rowClass : "x-grid-row",
37361     cellClass : "x-grid-cell",
37362     tdClass : "x-grid-td",
37363     hdClass : "x-grid-hd",
37364     splitClass : "x-grid-hd-split",
37365     
37366     init: function(grid){
37367         this.grid = grid;
37368                 var cid = this.grid.getGridEl().id;
37369         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
37370         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
37371         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
37372         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
37373         },
37374         
37375     getColumnRenderers : function(){
37376         var renderers = [];
37377         var cm = this.grid.colModel;
37378         var colCount = cm.getColumnCount();
37379         for(var i = 0; i < colCount; i++){
37380             renderers[i] = cm.getRenderer(i);
37381         }
37382         return renderers;
37383     },
37384     
37385     getColumnIds : function(){
37386         var ids = [];
37387         var cm = this.grid.colModel;
37388         var colCount = cm.getColumnCount();
37389         for(var i = 0; i < colCount; i++){
37390             ids[i] = cm.getColumnId(i);
37391         }
37392         return ids;
37393     },
37394     
37395     getDataIndexes : function(){
37396         if(!this.indexMap){
37397             this.indexMap = this.buildIndexMap();
37398         }
37399         return this.indexMap.colToData;
37400     },
37401     
37402     getColumnIndexByDataIndex : function(dataIndex){
37403         if(!this.indexMap){
37404             this.indexMap = this.buildIndexMap();
37405         }
37406         return this.indexMap.dataToCol[dataIndex];
37407     },
37408     
37409     /**
37410      * Set a css style for a column dynamically. 
37411      * @param {Number} colIndex The index of the column
37412      * @param {String} name The css property name
37413      * @param {String} value The css value
37414      */
37415     setCSSStyle : function(colIndex, name, value){
37416         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
37417         Roo.util.CSS.updateRule(selector, name, value);
37418     },
37419     
37420     generateRules : function(cm){
37421         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
37422         Roo.util.CSS.removeStyleSheet(rulesId);
37423         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
37424             var cid = cm.getColumnId(i);
37425             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
37426                          this.tdSelector, cid, " {\n}\n",
37427                          this.hdSelector, cid, " {\n}\n",
37428                          this.splitSelector, cid, " {\n}\n");
37429         }
37430         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
37431     }
37432 });/*
37433  * Based on:
37434  * Ext JS Library 1.1.1
37435  * Copyright(c) 2006-2007, Ext JS, LLC.
37436  *
37437  * Originally Released Under LGPL - original licence link has changed is not relivant.
37438  *
37439  * Fork - LGPL
37440  * <script type="text/javascript">
37441  */
37442
37443 // private
37444 // This is a support class used internally by the Grid components
37445 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
37446     this.grid = grid;
37447     this.view = grid.getView();
37448     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
37449     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
37450     if(hd2){
37451         this.setHandleElId(Roo.id(hd));
37452         this.setOuterHandleElId(Roo.id(hd2));
37453     }
37454     this.scroll = false;
37455 };
37456 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
37457     maxDragWidth: 120,
37458     getDragData : function(e){
37459         var t = Roo.lib.Event.getTarget(e);
37460         var h = this.view.findHeaderCell(t);
37461         if(h){
37462             return {ddel: h.firstChild, header:h};
37463         }
37464         return false;
37465     },
37466
37467     onInitDrag : function(e){
37468         this.view.headersDisabled = true;
37469         var clone = this.dragData.ddel.cloneNode(true);
37470         clone.id = Roo.id();
37471         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
37472         this.proxy.update(clone);
37473         return true;
37474     },
37475
37476     afterValidDrop : function(){
37477         var v = this.view;
37478         setTimeout(function(){
37479             v.headersDisabled = false;
37480         }, 50);
37481     },
37482
37483     afterInvalidDrop : function(){
37484         var v = this.view;
37485         setTimeout(function(){
37486             v.headersDisabled = false;
37487         }, 50);
37488     }
37489 });
37490 /*
37491  * Based on:
37492  * Ext JS Library 1.1.1
37493  * Copyright(c) 2006-2007, Ext JS, LLC.
37494  *
37495  * Originally Released Under LGPL - original licence link has changed is not relivant.
37496  *
37497  * Fork - LGPL
37498  * <script type="text/javascript">
37499  */
37500 // private
37501 // This is a support class used internally by the Grid components
37502 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
37503     this.grid = grid;
37504     this.view = grid.getView();
37505     // split the proxies so they don't interfere with mouse events
37506     this.proxyTop = Roo.DomHelper.append(document.body, {
37507         cls:"col-move-top", html:"&#160;"
37508     }, true);
37509     this.proxyBottom = Roo.DomHelper.append(document.body, {
37510         cls:"col-move-bottom", html:"&#160;"
37511     }, true);
37512     this.proxyTop.hide = this.proxyBottom.hide = function(){
37513         this.setLeftTop(-100,-100);
37514         this.setStyle("visibility", "hidden");
37515     };
37516     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
37517     // temporarily disabled
37518     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
37519     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
37520 };
37521 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
37522     proxyOffsets : [-4, -9],
37523     fly: Roo.Element.fly,
37524
37525     getTargetFromEvent : function(e){
37526         var t = Roo.lib.Event.getTarget(e);
37527         var cindex = this.view.findCellIndex(t);
37528         if(cindex !== false){
37529             return this.view.getHeaderCell(cindex);
37530         }
37531         return null;
37532     },
37533
37534     nextVisible : function(h){
37535         var v = this.view, cm = this.grid.colModel;
37536         h = h.nextSibling;
37537         while(h){
37538             if(!cm.isHidden(v.getCellIndex(h))){
37539                 return h;
37540             }
37541             h = h.nextSibling;
37542         }
37543         return null;
37544     },
37545
37546     prevVisible : function(h){
37547         var v = this.view, cm = this.grid.colModel;
37548         h = h.prevSibling;
37549         while(h){
37550             if(!cm.isHidden(v.getCellIndex(h))){
37551                 return h;
37552             }
37553             h = h.prevSibling;
37554         }
37555         return null;
37556     },
37557
37558     positionIndicator : function(h, n, e){
37559         var x = Roo.lib.Event.getPageX(e);
37560         var r = Roo.lib.Dom.getRegion(n.firstChild);
37561         var px, pt, py = r.top + this.proxyOffsets[1];
37562         if((r.right - x) <= (r.right-r.left)/2){
37563             px = r.right+this.view.borderWidth;
37564             pt = "after";
37565         }else{
37566             px = r.left;
37567             pt = "before";
37568         }
37569         var oldIndex = this.view.getCellIndex(h);
37570         var newIndex = this.view.getCellIndex(n);
37571
37572         if(this.grid.colModel.isFixed(newIndex)){
37573             return false;
37574         }
37575
37576         var locked = this.grid.colModel.isLocked(newIndex);
37577
37578         if(pt == "after"){
37579             newIndex++;
37580         }
37581         if(oldIndex < newIndex){
37582             newIndex--;
37583         }
37584         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
37585             return false;
37586         }
37587         px +=  this.proxyOffsets[0];
37588         this.proxyTop.setLeftTop(px, py);
37589         this.proxyTop.show();
37590         if(!this.bottomOffset){
37591             this.bottomOffset = this.view.mainHd.getHeight();
37592         }
37593         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
37594         this.proxyBottom.show();
37595         return pt;
37596     },
37597
37598     onNodeEnter : function(n, dd, e, data){
37599         if(data.header != n){
37600             this.positionIndicator(data.header, n, e);
37601         }
37602     },
37603
37604     onNodeOver : function(n, dd, e, data){
37605         var result = false;
37606         if(data.header != n){
37607             result = this.positionIndicator(data.header, n, e);
37608         }
37609         if(!result){
37610             this.proxyTop.hide();
37611             this.proxyBottom.hide();
37612         }
37613         return result ? this.dropAllowed : this.dropNotAllowed;
37614     },
37615
37616     onNodeOut : function(n, dd, e, data){
37617         this.proxyTop.hide();
37618         this.proxyBottom.hide();
37619     },
37620
37621     onNodeDrop : function(n, dd, e, data){
37622         var h = data.header;
37623         if(h != n){
37624             var cm = this.grid.colModel;
37625             var x = Roo.lib.Event.getPageX(e);
37626             var r = Roo.lib.Dom.getRegion(n.firstChild);
37627             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
37628             var oldIndex = this.view.getCellIndex(h);
37629             var newIndex = this.view.getCellIndex(n);
37630             var locked = cm.isLocked(newIndex);
37631             if(pt == "after"){
37632                 newIndex++;
37633             }
37634             if(oldIndex < newIndex){
37635                 newIndex--;
37636             }
37637             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
37638                 return false;
37639             }
37640             cm.setLocked(oldIndex, locked, true);
37641             cm.moveColumn(oldIndex, newIndex);
37642             this.grid.fireEvent("columnmove", oldIndex, newIndex);
37643             return true;
37644         }
37645         return false;
37646     }
37647 });
37648 /*
37649  * Based on:
37650  * Ext JS Library 1.1.1
37651  * Copyright(c) 2006-2007, Ext JS, LLC.
37652  *
37653  * Originally Released Under LGPL - original licence link has changed is not relivant.
37654  *
37655  * Fork - LGPL
37656  * <script type="text/javascript">
37657  */
37658   
37659 /**
37660  * @class Roo.grid.GridView
37661  * @extends Roo.util.Observable
37662  *
37663  * @constructor
37664  * @param {Object} config
37665  */
37666 Roo.grid.GridView = function(config){
37667     Roo.grid.GridView.superclass.constructor.call(this);
37668     this.el = null;
37669
37670     Roo.apply(this, config);
37671 };
37672
37673 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
37674
37675     unselectable :  'unselectable="on"',
37676     unselectableCls :  'x-unselectable',
37677     
37678     
37679     rowClass : "x-grid-row",
37680
37681     cellClass : "x-grid-col",
37682
37683     tdClass : "x-grid-td",
37684
37685     hdClass : "x-grid-hd",
37686
37687     splitClass : "x-grid-split",
37688
37689     sortClasses : ["sort-asc", "sort-desc"],
37690
37691     enableMoveAnim : false,
37692
37693     hlColor: "C3DAF9",
37694
37695     dh : Roo.DomHelper,
37696
37697     fly : Roo.Element.fly,
37698
37699     css : Roo.util.CSS,
37700
37701     borderWidth: 1,
37702
37703     splitOffset: 3,
37704
37705     scrollIncrement : 22,
37706
37707     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
37708
37709     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
37710
37711     bind : function(ds, cm){
37712         if(this.ds){
37713             this.ds.un("load", this.onLoad, this);
37714             this.ds.un("datachanged", this.onDataChange, this);
37715             this.ds.un("add", this.onAdd, this);
37716             this.ds.un("remove", this.onRemove, this);
37717             this.ds.un("update", this.onUpdate, this);
37718             this.ds.un("clear", this.onClear, this);
37719         }
37720         if(ds){
37721             ds.on("load", this.onLoad, this);
37722             ds.on("datachanged", this.onDataChange, this);
37723             ds.on("add", this.onAdd, this);
37724             ds.on("remove", this.onRemove, this);
37725             ds.on("update", this.onUpdate, this);
37726             ds.on("clear", this.onClear, this);
37727         }
37728         this.ds = ds;
37729
37730         if(this.cm){
37731             this.cm.un("widthchange", this.onColWidthChange, this);
37732             this.cm.un("headerchange", this.onHeaderChange, this);
37733             this.cm.un("hiddenchange", this.onHiddenChange, this);
37734             this.cm.un("columnmoved", this.onColumnMove, this);
37735             this.cm.un("columnlockchange", this.onColumnLock, this);
37736         }
37737         if(cm){
37738             this.generateRules(cm);
37739             cm.on("widthchange", this.onColWidthChange, this);
37740             cm.on("headerchange", this.onHeaderChange, this);
37741             cm.on("hiddenchange", this.onHiddenChange, this);
37742             cm.on("columnmoved", this.onColumnMove, this);
37743             cm.on("columnlockchange", this.onColumnLock, this);
37744         }
37745         this.cm = cm;
37746     },
37747
37748     init: function(grid){
37749         Roo.grid.GridView.superclass.init.call(this, grid);
37750
37751         this.bind(grid.dataSource, grid.colModel);
37752
37753         grid.on("headerclick", this.handleHeaderClick, this);
37754
37755         if(grid.trackMouseOver){
37756             grid.on("mouseover", this.onRowOver, this);
37757             grid.on("mouseout", this.onRowOut, this);
37758         }
37759         grid.cancelTextSelection = function(){};
37760         this.gridId = grid.id;
37761
37762         var tpls = this.templates || {};
37763
37764         if(!tpls.master){
37765             tpls.master = new Roo.Template(
37766                '<div class="x-grid" hidefocus="true">',
37767                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
37768                   '<div class="x-grid-topbar"></div>',
37769                   '<div class="x-grid-scroller"><div></div></div>',
37770                   '<div class="x-grid-locked">',
37771                       '<div class="x-grid-header">{lockedHeader}</div>',
37772                       '<div class="x-grid-body">{lockedBody}</div>',
37773                   "</div>",
37774                   '<div class="x-grid-viewport">',
37775                       '<div class="x-grid-header">{header}</div>',
37776                       '<div class="x-grid-body">{body}</div>',
37777                   "</div>",
37778                   '<div class="x-grid-bottombar"></div>',
37779                  
37780                   '<div class="x-grid-resize-proxy">&#160;</div>',
37781                "</div>"
37782             );
37783             tpls.master.disableformats = true;
37784         }
37785
37786         if(!tpls.header){
37787             tpls.header = new Roo.Template(
37788                '<table border="0" cellspacing="0" cellpadding="0">',
37789                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
37790                "</table>{splits}"
37791             );
37792             tpls.header.disableformats = true;
37793         }
37794         tpls.header.compile();
37795
37796         if(!tpls.hcell){
37797             tpls.hcell = new Roo.Template(
37798                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
37799                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
37800                 "</div></td>"
37801              );
37802              tpls.hcell.disableFormats = true;
37803         }
37804         tpls.hcell.compile();
37805
37806         if(!tpls.hsplit){
37807             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
37808                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
37809             tpls.hsplit.disableFormats = true;
37810         }
37811         tpls.hsplit.compile();
37812
37813         if(!tpls.body){
37814             tpls.body = new Roo.Template(
37815                '<table border="0" cellspacing="0" cellpadding="0">',
37816                "<tbody>{rows}</tbody>",
37817                "</table>"
37818             );
37819             tpls.body.disableFormats = true;
37820         }
37821         tpls.body.compile();
37822
37823         if(!tpls.row){
37824             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
37825             tpls.row.disableFormats = true;
37826         }
37827         tpls.row.compile();
37828
37829         if(!tpls.cell){
37830             tpls.cell = new Roo.Template(
37831                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
37832                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
37833                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
37834                 "</td>"
37835             );
37836             tpls.cell.disableFormats = true;
37837         }
37838         tpls.cell.compile();
37839
37840         this.templates = tpls;
37841     },
37842
37843     // remap these for backwards compat
37844     onColWidthChange : function(){
37845         this.updateColumns.apply(this, arguments);
37846     },
37847     onHeaderChange : function(){
37848         this.updateHeaders.apply(this, arguments);
37849     }, 
37850     onHiddenChange : function(){
37851         this.handleHiddenChange.apply(this, arguments);
37852     },
37853     onColumnMove : function(){
37854         this.handleColumnMove.apply(this, arguments);
37855     },
37856     onColumnLock : function(){
37857         this.handleLockChange.apply(this, arguments);
37858     },
37859
37860     onDataChange : function(){
37861         this.refresh();
37862         this.updateHeaderSortState();
37863     },
37864
37865     onClear : function(){
37866         this.refresh();
37867     },
37868
37869     onUpdate : function(ds, record){
37870         this.refreshRow(record);
37871     },
37872
37873     refreshRow : function(record){
37874         var ds = this.ds, index;
37875         if(typeof record == 'number'){
37876             index = record;
37877             record = ds.getAt(index);
37878         }else{
37879             index = ds.indexOf(record);
37880         }
37881         this.insertRows(ds, index, index, true);
37882         this.onRemove(ds, record, index+1, true);
37883         this.syncRowHeights(index, index);
37884         this.layout();
37885         this.fireEvent("rowupdated", this, index, record);
37886     },
37887
37888     onAdd : function(ds, records, index){
37889         this.insertRows(ds, index, index + (records.length-1));
37890     },
37891
37892     onRemove : function(ds, record, index, isUpdate){
37893         if(isUpdate !== true){
37894             this.fireEvent("beforerowremoved", this, index, record);
37895         }
37896         var bt = this.getBodyTable(), lt = this.getLockedTable();
37897         if(bt.rows[index]){
37898             bt.firstChild.removeChild(bt.rows[index]);
37899         }
37900         if(lt.rows[index]){
37901             lt.firstChild.removeChild(lt.rows[index]);
37902         }
37903         if(isUpdate !== true){
37904             this.stripeRows(index);
37905             this.syncRowHeights(index, index);
37906             this.layout();
37907             this.fireEvent("rowremoved", this, index, record);
37908         }
37909     },
37910
37911     onLoad : function(){
37912         this.scrollToTop();
37913     },
37914
37915     /**
37916      * Scrolls the grid to the top
37917      */
37918     scrollToTop : function(){
37919         if(this.scroller){
37920             this.scroller.dom.scrollTop = 0;
37921             this.syncScroll();
37922         }
37923     },
37924
37925     /**
37926      * Gets a panel in the header of the grid that can be used for toolbars etc.
37927      * After modifying the contents of this panel a call to grid.autoSize() may be
37928      * required to register any changes in size.
37929      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
37930      * @return Roo.Element
37931      */
37932     getHeaderPanel : function(doShow){
37933         if(doShow){
37934             this.headerPanel.show();
37935         }
37936         return this.headerPanel;
37937     },
37938
37939     /**
37940      * Gets a panel in the footer of the grid that can be used for toolbars etc.
37941      * After modifying the contents of this panel a call to grid.autoSize() may be
37942      * required to register any changes in size.
37943      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
37944      * @return Roo.Element
37945      */
37946     getFooterPanel : function(doShow){
37947         if(doShow){
37948             this.footerPanel.show();
37949         }
37950         return this.footerPanel;
37951     },
37952
37953     initElements : function(){
37954         var E = Roo.Element;
37955         var el = this.grid.getGridEl().dom.firstChild;
37956         var cs = el.childNodes;
37957
37958         this.el = new E(el);
37959         
37960          this.focusEl = new E(el.firstChild);
37961         this.focusEl.swallowEvent("click", true);
37962         
37963         this.headerPanel = new E(cs[1]);
37964         this.headerPanel.enableDisplayMode("block");
37965
37966         this.scroller = new E(cs[2]);
37967         this.scrollSizer = new E(this.scroller.dom.firstChild);
37968
37969         this.lockedWrap = new E(cs[3]);
37970         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
37971         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
37972
37973         this.mainWrap = new E(cs[4]);
37974         this.mainHd = new E(this.mainWrap.dom.firstChild);
37975         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
37976
37977         this.footerPanel = new E(cs[5]);
37978         this.footerPanel.enableDisplayMode("block");
37979
37980         this.resizeProxy = new E(cs[6]);
37981
37982         this.headerSelector = String.format(
37983            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
37984            this.lockedHd.id, this.mainHd.id
37985         );
37986
37987         this.splitterSelector = String.format(
37988            '#{0} div.x-grid-split, #{1} div.x-grid-split',
37989            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
37990         );
37991     },
37992     idToCssName : function(s)
37993     {
37994         return s.replace(/[^a-z0-9]+/ig, '-');
37995     },
37996
37997     getHeaderCell : function(index){
37998         return Roo.DomQuery.select(this.headerSelector)[index];
37999     },
38000
38001     getHeaderCellMeasure : function(index){
38002         return this.getHeaderCell(index).firstChild;
38003     },
38004
38005     getHeaderCellText : function(index){
38006         return this.getHeaderCell(index).firstChild.firstChild;
38007     },
38008
38009     getLockedTable : function(){
38010         return this.lockedBody.dom.firstChild;
38011     },
38012
38013     getBodyTable : function(){
38014         return this.mainBody.dom.firstChild;
38015     },
38016
38017     getLockedRow : function(index){
38018         return this.getLockedTable().rows[index];
38019     },
38020
38021     getRow : function(index){
38022         return this.getBodyTable().rows[index];
38023     },
38024
38025     getRowComposite : function(index){
38026         if(!this.rowEl){
38027             this.rowEl = new Roo.CompositeElementLite();
38028         }
38029         var els = [], lrow, mrow;
38030         if(lrow = this.getLockedRow(index)){
38031             els.push(lrow);
38032         }
38033         if(mrow = this.getRow(index)){
38034             els.push(mrow);
38035         }
38036         this.rowEl.elements = els;
38037         return this.rowEl;
38038     },
38039     /**
38040      * Gets the 'td' of the cell
38041      * 
38042      * @param {Integer} rowIndex row to select
38043      * @param {Integer} colIndex column to select
38044      * 
38045      * @return {Object} 
38046      */
38047     getCell : function(rowIndex, colIndex){
38048         var locked = this.cm.getLockedCount();
38049         var source;
38050         if(colIndex < locked){
38051             source = this.lockedBody.dom.firstChild;
38052         }else{
38053             source = this.mainBody.dom.firstChild;
38054             colIndex -= locked;
38055         }
38056         return source.rows[rowIndex].childNodes[colIndex];
38057     },
38058
38059     getCellText : function(rowIndex, colIndex){
38060         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
38061     },
38062
38063     getCellBox : function(cell){
38064         var b = this.fly(cell).getBox();
38065         if(Roo.isOpera){ // opera fails to report the Y
38066             b.y = cell.offsetTop + this.mainBody.getY();
38067         }
38068         return b;
38069     },
38070
38071     getCellIndex : function(cell){
38072         var id = String(cell.className).match(this.cellRE);
38073         if(id){
38074             return parseInt(id[1], 10);
38075         }
38076         return 0;
38077     },
38078
38079     findHeaderIndex : function(n){
38080         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
38081         return r ? this.getCellIndex(r) : false;
38082     },
38083
38084     findHeaderCell : function(n){
38085         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
38086         return r ? r : false;
38087     },
38088
38089     findRowIndex : function(n){
38090         if(!n){
38091             return false;
38092         }
38093         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
38094         return r ? r.rowIndex : false;
38095     },
38096
38097     findCellIndex : function(node){
38098         var stop = this.el.dom;
38099         while(node && node != stop){
38100             if(this.findRE.test(node.className)){
38101                 return this.getCellIndex(node);
38102             }
38103             node = node.parentNode;
38104         }
38105         return false;
38106     },
38107
38108     getColumnId : function(index){
38109         return this.cm.getColumnId(index);
38110     },
38111
38112     getSplitters : function()
38113     {
38114         if(this.splitterSelector){
38115            return Roo.DomQuery.select(this.splitterSelector);
38116         }else{
38117             return null;
38118       }
38119     },
38120
38121     getSplitter : function(index){
38122         return this.getSplitters()[index];
38123     },
38124
38125     onRowOver : function(e, t){
38126         var row;
38127         if((row = this.findRowIndex(t)) !== false){
38128             this.getRowComposite(row).addClass("x-grid-row-over");
38129         }
38130     },
38131
38132     onRowOut : function(e, t){
38133         var row;
38134         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
38135             this.getRowComposite(row).removeClass("x-grid-row-over");
38136         }
38137     },
38138
38139     renderHeaders : function(){
38140         var cm = this.cm;
38141         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
38142         var cb = [], lb = [], sb = [], lsb = [], p = {};
38143         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38144             p.cellId = "x-grid-hd-0-" + i;
38145             p.splitId = "x-grid-csplit-0-" + i;
38146             p.id = cm.getColumnId(i);
38147             p.value = cm.getColumnHeader(i) || "";
38148             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
38149             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
38150             if(!cm.isLocked(i)){
38151                 cb[cb.length] = ct.apply(p);
38152                 sb[sb.length] = st.apply(p);
38153             }else{
38154                 lb[lb.length] = ct.apply(p);
38155                 lsb[lsb.length] = st.apply(p);
38156             }
38157         }
38158         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
38159                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
38160     },
38161
38162     updateHeaders : function(){
38163         var html = this.renderHeaders();
38164         this.lockedHd.update(html[0]);
38165         this.mainHd.update(html[1]);
38166     },
38167
38168     /**
38169      * Focuses the specified row.
38170      * @param {Number} row The row index
38171      */
38172     focusRow : function(row)
38173     {
38174         //Roo.log('GridView.focusRow');
38175         var x = this.scroller.dom.scrollLeft;
38176         this.focusCell(row, 0, false);
38177         this.scroller.dom.scrollLeft = x;
38178     },
38179
38180     /**
38181      * Focuses the specified cell.
38182      * @param {Number} row The row index
38183      * @param {Number} col The column index
38184      * @param {Boolean} hscroll false to disable horizontal scrolling
38185      */
38186     focusCell : function(row, col, hscroll)
38187     {
38188         //Roo.log('GridView.focusCell');
38189         var el = this.ensureVisible(row, col, hscroll);
38190         this.focusEl.alignTo(el, "tl-tl");
38191         if(Roo.isGecko){
38192             this.focusEl.focus();
38193         }else{
38194             this.focusEl.focus.defer(1, this.focusEl);
38195         }
38196     },
38197
38198     /**
38199      * Scrolls the specified cell into view
38200      * @param {Number} row The row index
38201      * @param {Number} col The column index
38202      * @param {Boolean} hscroll false to disable horizontal scrolling
38203      */
38204     ensureVisible : function(row, col, hscroll)
38205     {
38206         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
38207         //return null; //disable for testing.
38208         if(typeof row != "number"){
38209             row = row.rowIndex;
38210         }
38211         if(row < 0 && row >= this.ds.getCount()){
38212             return  null;
38213         }
38214         col = (col !== undefined ? col : 0);
38215         var cm = this.grid.colModel;
38216         while(cm.isHidden(col)){
38217             col++;
38218         }
38219
38220         var el = this.getCell(row, col);
38221         if(!el){
38222             return null;
38223         }
38224         var c = this.scroller.dom;
38225
38226         var ctop = parseInt(el.offsetTop, 10);
38227         var cleft = parseInt(el.offsetLeft, 10);
38228         var cbot = ctop + el.offsetHeight;
38229         var cright = cleft + el.offsetWidth;
38230         
38231         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
38232         var stop = parseInt(c.scrollTop, 10);
38233         var sleft = parseInt(c.scrollLeft, 10);
38234         var sbot = stop + ch;
38235         var sright = sleft + c.clientWidth;
38236         /*
38237         Roo.log('GridView.ensureVisible:' +
38238                 ' ctop:' + ctop +
38239                 ' c.clientHeight:' + c.clientHeight +
38240                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
38241                 ' stop:' + stop +
38242                 ' cbot:' + cbot +
38243                 ' sbot:' + sbot +
38244                 ' ch:' + ch  
38245                 );
38246         */
38247         if(ctop < stop){
38248             c.scrollTop = ctop;
38249             //Roo.log("set scrolltop to ctop DISABLE?");
38250         }else if(cbot > sbot){
38251             //Roo.log("set scrolltop to cbot-ch");
38252             c.scrollTop = cbot-ch;
38253         }
38254         
38255         if(hscroll !== false){
38256             if(cleft < sleft){
38257                 c.scrollLeft = cleft;
38258             }else if(cright > sright){
38259                 c.scrollLeft = cright-c.clientWidth;
38260             }
38261         }
38262          
38263         return el;
38264     },
38265
38266     updateColumns : function(){
38267         this.grid.stopEditing();
38268         var cm = this.grid.colModel, colIds = this.getColumnIds();
38269         //var totalWidth = cm.getTotalWidth();
38270         var pos = 0;
38271         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38272             //if(cm.isHidden(i)) continue;
38273             var w = cm.getColumnWidth(i);
38274             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
38275             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
38276         }
38277         this.updateSplitters();
38278     },
38279
38280     generateRules : function(cm){
38281         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
38282         Roo.util.CSS.removeStyleSheet(rulesId);
38283         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38284             var cid = cm.getColumnId(i);
38285             var align = '';
38286             if(cm.config[i].align){
38287                 align = 'text-align:'+cm.config[i].align+';';
38288             }
38289             var hidden = '';
38290             if(cm.isHidden(i)){
38291                 hidden = 'display:none;';
38292             }
38293             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
38294             ruleBuf.push(
38295                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
38296                     this.hdSelector, cid, " {\n", align, width, "}\n",
38297                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
38298                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
38299         }
38300         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
38301     },
38302
38303     updateSplitters : function(){
38304         var cm = this.cm, s = this.getSplitters();
38305         if(s){ // splitters not created yet
38306             var pos = 0, locked = true;
38307             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
38308                 if(cm.isHidden(i)) {
38309                     continue;
38310                 }
38311                 var w = cm.getColumnWidth(i); // make sure it's a number
38312                 if(!cm.isLocked(i) && locked){
38313                     pos = 0;
38314                     locked = false;
38315                 }
38316                 pos += w;
38317                 s[i].style.left = (pos-this.splitOffset) + "px";
38318             }
38319         }
38320     },
38321
38322     handleHiddenChange : function(colModel, colIndex, hidden){
38323         if(hidden){
38324             this.hideColumn(colIndex);
38325         }else{
38326             this.unhideColumn(colIndex);
38327         }
38328     },
38329
38330     hideColumn : function(colIndex){
38331         var cid = this.getColumnId(colIndex);
38332         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
38333         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
38334         if(Roo.isSafari){
38335             this.updateHeaders();
38336         }
38337         this.updateSplitters();
38338         this.layout();
38339     },
38340
38341     unhideColumn : function(colIndex){
38342         var cid = this.getColumnId(colIndex);
38343         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
38344         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
38345
38346         if(Roo.isSafari){
38347             this.updateHeaders();
38348         }
38349         this.updateSplitters();
38350         this.layout();
38351     },
38352
38353     insertRows : function(dm, firstRow, lastRow, isUpdate){
38354         if(firstRow == 0 && lastRow == dm.getCount()-1){
38355             this.refresh();
38356         }else{
38357             if(!isUpdate){
38358                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
38359             }
38360             var s = this.getScrollState();
38361             var markup = this.renderRows(firstRow, lastRow);
38362             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
38363             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
38364             this.restoreScroll(s);
38365             if(!isUpdate){
38366                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
38367                 this.syncRowHeights(firstRow, lastRow);
38368                 this.stripeRows(firstRow);
38369                 this.layout();
38370             }
38371         }
38372     },
38373
38374     bufferRows : function(markup, target, index){
38375         var before = null, trows = target.rows, tbody = target.tBodies[0];
38376         if(index < trows.length){
38377             before = trows[index];
38378         }
38379         var b = document.createElement("div");
38380         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
38381         var rows = b.firstChild.rows;
38382         for(var i = 0, len = rows.length; i < len; i++){
38383             if(before){
38384                 tbody.insertBefore(rows[0], before);
38385             }else{
38386                 tbody.appendChild(rows[0]);
38387             }
38388         }
38389         b.innerHTML = "";
38390         b = null;
38391     },
38392
38393     deleteRows : function(dm, firstRow, lastRow){
38394         if(dm.getRowCount()<1){
38395             this.fireEvent("beforerefresh", this);
38396             this.mainBody.update("");
38397             this.lockedBody.update("");
38398             this.fireEvent("refresh", this);
38399         }else{
38400             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
38401             var bt = this.getBodyTable();
38402             var tbody = bt.firstChild;
38403             var rows = bt.rows;
38404             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
38405                 tbody.removeChild(rows[firstRow]);
38406             }
38407             this.stripeRows(firstRow);
38408             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
38409         }
38410     },
38411
38412     updateRows : function(dataSource, firstRow, lastRow){
38413         var s = this.getScrollState();
38414         this.refresh();
38415         this.restoreScroll(s);
38416     },
38417
38418     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
38419         if(!noRefresh){
38420            this.refresh();
38421         }
38422         this.updateHeaderSortState();
38423     },
38424
38425     getScrollState : function(){
38426         
38427         var sb = this.scroller.dom;
38428         return {left: sb.scrollLeft, top: sb.scrollTop};
38429     },
38430
38431     stripeRows : function(startRow){
38432         if(!this.grid.stripeRows || this.ds.getCount() < 1){
38433             return;
38434         }
38435         startRow = startRow || 0;
38436         var rows = this.getBodyTable().rows;
38437         var lrows = this.getLockedTable().rows;
38438         var cls = ' x-grid-row-alt ';
38439         for(var i = startRow, len = rows.length; i < len; i++){
38440             var row = rows[i], lrow = lrows[i];
38441             var isAlt = ((i+1) % 2 == 0);
38442             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
38443             if(isAlt == hasAlt){
38444                 continue;
38445             }
38446             if(isAlt){
38447                 row.className += " x-grid-row-alt";
38448             }else{
38449                 row.className = row.className.replace("x-grid-row-alt", "");
38450             }
38451             if(lrow){
38452                 lrow.className = row.className;
38453             }
38454         }
38455     },
38456
38457     restoreScroll : function(state){
38458         //Roo.log('GridView.restoreScroll');
38459         var sb = this.scroller.dom;
38460         sb.scrollLeft = state.left;
38461         sb.scrollTop = state.top;
38462         this.syncScroll();
38463     },
38464
38465     syncScroll : function(){
38466         //Roo.log('GridView.syncScroll');
38467         var sb = this.scroller.dom;
38468         var sh = this.mainHd.dom;
38469         var bs = this.mainBody.dom;
38470         var lv = this.lockedBody.dom;
38471         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
38472         lv.scrollTop = bs.scrollTop = sb.scrollTop;
38473     },
38474
38475     handleScroll : function(e){
38476         this.syncScroll();
38477         var sb = this.scroller.dom;
38478         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
38479         e.stopEvent();
38480     },
38481
38482     handleWheel : function(e){
38483         var d = e.getWheelDelta();
38484         this.scroller.dom.scrollTop -= d*22;
38485         // set this here to prevent jumpy scrolling on large tables
38486         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
38487         e.stopEvent();
38488     },
38489
38490     renderRows : function(startRow, endRow){
38491         // pull in all the crap needed to render rows
38492         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
38493         var colCount = cm.getColumnCount();
38494
38495         if(ds.getCount() < 1){
38496             return ["", ""];
38497         }
38498
38499         // build a map for all the columns
38500         var cs = [];
38501         for(var i = 0; i < colCount; i++){
38502             var name = cm.getDataIndex(i);
38503             cs[i] = {
38504                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
38505                 renderer : cm.getRenderer(i),
38506                 id : cm.getColumnId(i),
38507                 locked : cm.isLocked(i),
38508                 has_editor : cm.isCellEditable(i)
38509             };
38510         }
38511
38512         startRow = startRow || 0;
38513         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
38514
38515         // records to render
38516         var rs = ds.getRange(startRow, endRow);
38517
38518         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
38519     },
38520
38521     // As much as I hate to duplicate code, this was branched because FireFox really hates
38522     // [].join("") on strings. The performance difference was substantial enough to
38523     // branch this function
38524     doRender : Roo.isGecko ?
38525             function(cs, rs, ds, startRow, colCount, stripe){
38526                 var ts = this.templates, ct = ts.cell, rt = ts.row;
38527                 // buffers
38528                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
38529                 
38530                 var hasListener = this.grid.hasListener('rowclass');
38531                 var rowcfg = {};
38532                 for(var j = 0, len = rs.length; j < len; j++){
38533                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
38534                     for(var i = 0; i < colCount; i++){
38535                         c = cs[i];
38536                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
38537                         p.id = c.id;
38538                         p.css = p.attr = "";
38539                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
38540                         if(p.value == undefined || p.value === "") {
38541                             p.value = "&#160;";
38542                         }
38543                         if(c.has_editor){
38544                             p.css += ' x-grid-editable-cell';
38545                         }
38546                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
38547                             p.css +=  ' x-grid-dirty-cell';
38548                         }
38549                         var markup = ct.apply(p);
38550                         if(!c.locked){
38551                             cb+= markup;
38552                         }else{
38553                             lcb+= markup;
38554                         }
38555                     }
38556                     var alt = [];
38557                     if(stripe && ((rowIndex+1) % 2 == 0)){
38558                         alt.push("x-grid-row-alt")
38559                     }
38560                     if(r.dirty){
38561                         alt.push(  " x-grid-dirty-row");
38562                     }
38563                     rp.cells = lcb;
38564                     if(this.getRowClass){
38565                         alt.push(this.getRowClass(r, rowIndex));
38566                     }
38567                     if (hasListener) {
38568                         rowcfg = {
38569                              
38570                             record: r,
38571                             rowIndex : rowIndex,
38572                             rowClass : ''
38573                         };
38574                         this.grid.fireEvent('rowclass', this, rowcfg);
38575                         alt.push(rowcfg.rowClass);
38576                     }
38577                     rp.alt = alt.join(" ");
38578                     lbuf+= rt.apply(rp);
38579                     rp.cells = cb;
38580                     buf+=  rt.apply(rp);
38581                 }
38582                 return [lbuf, buf];
38583             } :
38584             function(cs, rs, ds, startRow, colCount, stripe){
38585                 var ts = this.templates, ct = ts.cell, rt = ts.row;
38586                 // buffers
38587                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
38588                 var hasListener = this.grid.hasListener('rowclass');
38589  
38590                 var rowcfg = {};
38591                 for(var j = 0, len = rs.length; j < len; j++){
38592                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
38593                     for(var i = 0; i < colCount; i++){
38594                         c = cs[i];
38595                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
38596                         p.id = c.id;
38597                         p.css = p.attr = "";
38598                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
38599                         if(p.value == undefined || p.value === "") {
38600                             p.value = "&#160;";
38601                         }
38602                         //Roo.log(c);
38603                          if(c.has_editor){
38604                             p.css += ' x-grid-editable-cell';
38605                         }
38606                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
38607                             p.css += ' x-grid-dirty-cell' 
38608                         }
38609                         
38610                         var markup = ct.apply(p);
38611                         if(!c.locked){
38612                             cb[cb.length] = markup;
38613                         }else{
38614                             lcb[lcb.length] = markup;
38615                         }
38616                     }
38617                     var alt = [];
38618                     if(stripe && ((rowIndex+1) % 2 == 0)){
38619                         alt.push( "x-grid-row-alt");
38620                     }
38621                     if(r.dirty){
38622                         alt.push(" x-grid-dirty-row");
38623                     }
38624                     rp.cells = lcb;
38625                     if(this.getRowClass){
38626                         alt.push( this.getRowClass(r, rowIndex));
38627                     }
38628                     if (hasListener) {
38629                         rowcfg = {
38630                              
38631                             record: r,
38632                             rowIndex : rowIndex,
38633                             rowClass : ''
38634                         };
38635                         this.grid.fireEvent('rowclass', this, rowcfg);
38636                         alt.push(rowcfg.rowClass);
38637                     }
38638                     
38639                     rp.alt = alt.join(" ");
38640                     rp.cells = lcb.join("");
38641                     lbuf[lbuf.length] = rt.apply(rp);
38642                     rp.cells = cb.join("");
38643                     buf[buf.length] =  rt.apply(rp);
38644                 }
38645                 return [lbuf.join(""), buf.join("")];
38646             },
38647
38648     renderBody : function(){
38649         var markup = this.renderRows();
38650         var bt = this.templates.body;
38651         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
38652     },
38653
38654     /**
38655      * Refreshes the grid
38656      * @param {Boolean} headersToo
38657      */
38658     refresh : function(headersToo){
38659         this.fireEvent("beforerefresh", this);
38660         this.grid.stopEditing();
38661         var result = this.renderBody();
38662         this.lockedBody.update(result[0]);
38663         this.mainBody.update(result[1]);
38664         if(headersToo === true){
38665             this.updateHeaders();
38666             this.updateColumns();
38667             this.updateSplitters();
38668             this.updateHeaderSortState();
38669         }
38670         this.syncRowHeights();
38671         this.layout();
38672         this.fireEvent("refresh", this);
38673     },
38674
38675     handleColumnMove : function(cm, oldIndex, newIndex){
38676         this.indexMap = null;
38677         var s = this.getScrollState();
38678         this.refresh(true);
38679         this.restoreScroll(s);
38680         this.afterMove(newIndex);
38681     },
38682
38683     afterMove : function(colIndex){
38684         if(this.enableMoveAnim && Roo.enableFx){
38685             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
38686         }
38687         // if multisort - fix sortOrder, and reload..
38688         if (this.grid.dataSource.multiSort) {
38689             // the we can call sort again..
38690             var dm = this.grid.dataSource;
38691             var cm = this.grid.colModel;
38692             var so = [];
38693             for(var i = 0; i < cm.config.length; i++ ) {
38694                 
38695                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
38696                     continue; // dont' bother, it's not in sort list or being set.
38697                 }
38698                 
38699                 so.push(cm.config[i].dataIndex);
38700             };
38701             dm.sortOrder = so;
38702             dm.load(dm.lastOptions);
38703             
38704             
38705         }
38706         
38707     },
38708
38709     updateCell : function(dm, rowIndex, dataIndex){
38710         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
38711         if(typeof colIndex == "undefined"){ // not present in grid
38712             return;
38713         }
38714         var cm = this.grid.colModel;
38715         var cell = this.getCell(rowIndex, colIndex);
38716         var cellText = this.getCellText(rowIndex, colIndex);
38717
38718         var p = {
38719             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
38720             id : cm.getColumnId(colIndex),
38721             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
38722         };
38723         var renderer = cm.getRenderer(colIndex);
38724         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
38725         if(typeof val == "undefined" || val === "") {
38726             val = "&#160;";
38727         }
38728         cellText.innerHTML = val;
38729         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
38730         this.syncRowHeights(rowIndex, rowIndex);
38731     },
38732
38733     calcColumnWidth : function(colIndex, maxRowsToMeasure){
38734         var maxWidth = 0;
38735         if(this.grid.autoSizeHeaders){
38736             var h = this.getHeaderCellMeasure(colIndex);
38737             maxWidth = Math.max(maxWidth, h.scrollWidth);
38738         }
38739         var tb, index;
38740         if(this.cm.isLocked(colIndex)){
38741             tb = this.getLockedTable();
38742             index = colIndex;
38743         }else{
38744             tb = this.getBodyTable();
38745             index = colIndex - this.cm.getLockedCount();
38746         }
38747         if(tb && tb.rows){
38748             var rows = tb.rows;
38749             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
38750             for(var i = 0; i < stopIndex; i++){
38751                 var cell = rows[i].childNodes[index].firstChild;
38752                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
38753             }
38754         }
38755         return maxWidth + /*margin for error in IE*/ 5;
38756     },
38757     /**
38758      * Autofit a column to its content.
38759      * @param {Number} colIndex
38760      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
38761      */
38762      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
38763          if(this.cm.isHidden(colIndex)){
38764              return; // can't calc a hidden column
38765          }
38766         if(forceMinSize){
38767             var cid = this.cm.getColumnId(colIndex);
38768             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
38769            if(this.grid.autoSizeHeaders){
38770                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
38771            }
38772         }
38773         var newWidth = this.calcColumnWidth(colIndex);
38774         this.cm.setColumnWidth(colIndex,
38775             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
38776         if(!suppressEvent){
38777             this.grid.fireEvent("columnresize", colIndex, newWidth);
38778         }
38779     },
38780
38781     /**
38782      * Autofits all columns to their content and then expands to fit any extra space in the grid
38783      */
38784      autoSizeColumns : function(){
38785         var cm = this.grid.colModel;
38786         var colCount = cm.getColumnCount();
38787         for(var i = 0; i < colCount; i++){
38788             this.autoSizeColumn(i, true, true);
38789         }
38790         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
38791             this.fitColumns();
38792         }else{
38793             this.updateColumns();
38794             this.layout();
38795         }
38796     },
38797
38798     /**
38799      * Autofits all columns to the grid's width proportionate with their current size
38800      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
38801      */
38802     fitColumns : function(reserveScrollSpace){
38803         var cm = this.grid.colModel;
38804         var colCount = cm.getColumnCount();
38805         var cols = [];
38806         var width = 0;
38807         var i, w;
38808         for (i = 0; i < colCount; i++){
38809             if(!cm.isHidden(i) && !cm.isFixed(i)){
38810                 w = cm.getColumnWidth(i);
38811                 cols.push(i);
38812                 cols.push(w);
38813                 width += w;
38814             }
38815         }
38816         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
38817         if(reserveScrollSpace){
38818             avail -= 17;
38819         }
38820         var frac = (avail - cm.getTotalWidth())/width;
38821         while (cols.length){
38822             w = cols.pop();
38823             i = cols.pop();
38824             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
38825         }
38826         this.updateColumns();
38827         this.layout();
38828     },
38829
38830     onRowSelect : function(rowIndex){
38831         var row = this.getRowComposite(rowIndex);
38832         row.addClass("x-grid-row-selected");
38833     },
38834
38835     onRowDeselect : function(rowIndex){
38836         var row = this.getRowComposite(rowIndex);
38837         row.removeClass("x-grid-row-selected");
38838     },
38839
38840     onCellSelect : function(row, col){
38841         var cell = this.getCell(row, col);
38842         if(cell){
38843             Roo.fly(cell).addClass("x-grid-cell-selected");
38844         }
38845     },
38846
38847     onCellDeselect : function(row, col){
38848         var cell = this.getCell(row, col);
38849         if(cell){
38850             Roo.fly(cell).removeClass("x-grid-cell-selected");
38851         }
38852     },
38853
38854     updateHeaderSortState : function(){
38855         
38856         // sort state can be single { field: xxx, direction : yyy}
38857         // or   { xxx=>ASC , yyy : DESC ..... }
38858         
38859         var mstate = {};
38860         if (!this.ds.multiSort) { 
38861             var state = this.ds.getSortState();
38862             if(!state){
38863                 return;
38864             }
38865             mstate[state.field] = state.direction;
38866             // FIXME... - this is not used here.. but might be elsewhere..
38867             this.sortState = state;
38868             
38869         } else {
38870             mstate = this.ds.sortToggle;
38871         }
38872         //remove existing sort classes..
38873         
38874         var sc = this.sortClasses;
38875         var hds = this.el.select(this.headerSelector).removeClass(sc);
38876         
38877         for(var f in mstate) {
38878         
38879             var sortColumn = this.cm.findColumnIndex(f);
38880             
38881             if(sortColumn != -1){
38882                 var sortDir = mstate[f];        
38883                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
38884             }
38885         }
38886         
38887          
38888         
38889     },
38890
38891
38892     handleHeaderClick : function(g, index,e){
38893         
38894         Roo.log("header click");
38895         
38896         if (Roo.isTouch) {
38897             // touch events on header are handled by context
38898             this.handleHdCtx(g,index,e);
38899             return;
38900         }
38901         
38902         
38903         if(this.headersDisabled){
38904             return;
38905         }
38906         var dm = g.dataSource, cm = g.colModel;
38907         if(!cm.isSortable(index)){
38908             return;
38909         }
38910         g.stopEditing();
38911         
38912         if (dm.multiSort) {
38913             // update the sortOrder
38914             var so = [];
38915             for(var i = 0; i < cm.config.length; i++ ) {
38916                 
38917                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
38918                     continue; // dont' bother, it's not in sort list or being set.
38919                 }
38920                 
38921                 so.push(cm.config[i].dataIndex);
38922             };
38923             dm.sortOrder = so;
38924         }
38925         
38926         
38927         dm.sort(cm.getDataIndex(index));
38928     },
38929
38930
38931     destroy : function(){
38932         if(this.colMenu){
38933             this.colMenu.removeAll();
38934             Roo.menu.MenuMgr.unregister(this.colMenu);
38935             this.colMenu.getEl().remove();
38936             delete this.colMenu;
38937         }
38938         if(this.hmenu){
38939             this.hmenu.removeAll();
38940             Roo.menu.MenuMgr.unregister(this.hmenu);
38941             this.hmenu.getEl().remove();
38942             delete this.hmenu;
38943         }
38944         if(this.grid.enableColumnMove){
38945             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
38946             if(dds){
38947                 for(var dd in dds){
38948                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
38949                         var elid = dds[dd].dragElId;
38950                         dds[dd].unreg();
38951                         Roo.get(elid).remove();
38952                     } else if(dds[dd].config.isTarget){
38953                         dds[dd].proxyTop.remove();
38954                         dds[dd].proxyBottom.remove();
38955                         dds[dd].unreg();
38956                     }
38957                     if(Roo.dd.DDM.locationCache[dd]){
38958                         delete Roo.dd.DDM.locationCache[dd];
38959                     }
38960                 }
38961                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
38962             }
38963         }
38964         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
38965         this.bind(null, null);
38966         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
38967     },
38968
38969     handleLockChange : function(){
38970         this.refresh(true);
38971     },
38972
38973     onDenyColumnLock : function(){
38974
38975     },
38976
38977     onDenyColumnHide : function(){
38978
38979     },
38980
38981     handleHdMenuClick : function(item){
38982         var index = this.hdCtxIndex;
38983         var cm = this.cm, ds = this.ds;
38984         switch(item.id){
38985             case "asc":
38986                 ds.sort(cm.getDataIndex(index), "ASC");
38987                 break;
38988             case "desc":
38989                 ds.sort(cm.getDataIndex(index), "DESC");
38990                 break;
38991             case "lock":
38992                 var lc = cm.getLockedCount();
38993                 if(cm.getColumnCount(true) <= lc+1){
38994                     this.onDenyColumnLock();
38995                     return;
38996                 }
38997                 if(lc != index){
38998                     cm.setLocked(index, true, true);
38999                     cm.moveColumn(index, lc);
39000                     this.grid.fireEvent("columnmove", index, lc);
39001                 }else{
39002                     cm.setLocked(index, true);
39003                 }
39004             break;
39005             case "unlock":
39006                 var lc = cm.getLockedCount();
39007                 if((lc-1) != index){
39008                     cm.setLocked(index, false, true);
39009                     cm.moveColumn(index, lc-1);
39010                     this.grid.fireEvent("columnmove", index, lc-1);
39011                 }else{
39012                     cm.setLocked(index, false);
39013                 }
39014             break;
39015             case 'wider': // used to expand cols on touch..
39016             case 'narrow':
39017                 var cw = cm.getColumnWidth(index);
39018                 cw += (item.id == 'wider' ? 1 : -1) * 50;
39019                 cw = Math.max(0, cw);
39020                 cw = Math.min(cw,4000);
39021                 cm.setColumnWidth(index, cw);
39022                 break;
39023                 
39024             default:
39025                 index = cm.getIndexById(item.id.substr(4));
39026                 if(index != -1){
39027                     if(item.checked && cm.getColumnCount(true) <= 1){
39028                         this.onDenyColumnHide();
39029                         return false;
39030                     }
39031                     cm.setHidden(index, item.checked);
39032                 }
39033         }
39034         return true;
39035     },
39036
39037     beforeColMenuShow : function(){
39038         var cm = this.cm,  colCount = cm.getColumnCount();
39039         this.colMenu.removeAll();
39040         
39041         var items = [];
39042         for(var i = 0; i < colCount; i++){
39043             items.push({
39044                 id: "col-"+cm.getColumnId(i),
39045                 text: cm.getColumnHeader(i),
39046                 checked: !cm.isHidden(i),
39047                 hideOnClick:false
39048             });
39049         }
39050         
39051         if (this.grid.sortColMenu) {
39052             items.sort(function(a,b) {
39053                 if (a.text == b.text) {
39054                     return 0;
39055                 }
39056                 return a.text.toUpperCase() > b.text.toUpperCase() ? 1 : -1;
39057             });
39058         }
39059         
39060         for(var i = 0; i < colCount; i++){
39061             this.colMenu.add(new Roo.menu.CheckItem(items[i]));
39062         }
39063     },
39064
39065     handleHdCtx : function(g, index, e){
39066         e.stopEvent();
39067         var hd = this.getHeaderCell(index);
39068         this.hdCtxIndex = index;
39069         var ms = this.hmenu.items, cm = this.cm;
39070         ms.get("asc").setDisabled(!cm.isSortable(index));
39071         ms.get("desc").setDisabled(!cm.isSortable(index));
39072         if(this.grid.enableColLock !== false){
39073             ms.get("lock").setDisabled(cm.isLocked(index));
39074             ms.get("unlock").setDisabled(!cm.isLocked(index));
39075         }
39076         this.hmenu.show(hd, "tl-bl");
39077     },
39078
39079     handleHdOver : function(e){
39080         var hd = this.findHeaderCell(e.getTarget());
39081         if(hd && !this.headersDisabled){
39082             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
39083                this.fly(hd).addClass("x-grid-hd-over");
39084             }
39085         }
39086     },
39087
39088     handleHdOut : function(e){
39089         var hd = this.findHeaderCell(e.getTarget());
39090         if(hd){
39091             this.fly(hd).removeClass("x-grid-hd-over");
39092         }
39093     },
39094
39095     handleSplitDblClick : function(e, t){
39096         var i = this.getCellIndex(t);
39097         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
39098             this.autoSizeColumn(i, true);
39099             this.layout();
39100         }
39101     },
39102
39103     render : function(){
39104
39105         var cm = this.cm;
39106         var colCount = cm.getColumnCount();
39107
39108         if(this.grid.monitorWindowResize === true){
39109             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
39110         }
39111         var header = this.renderHeaders();
39112         var body = this.templates.body.apply({rows:""});
39113         var html = this.templates.master.apply({
39114             lockedBody: body,
39115             body: body,
39116             lockedHeader: header[0],
39117             header: header[1]
39118         });
39119
39120         //this.updateColumns();
39121
39122         this.grid.getGridEl().dom.innerHTML = html;
39123
39124         this.initElements();
39125         
39126         // a kludge to fix the random scolling effect in webkit
39127         this.el.on("scroll", function() {
39128             this.el.dom.scrollTop=0; // hopefully not recursive..
39129         },this);
39130
39131         this.scroller.on("scroll", this.handleScroll, this);
39132         this.lockedBody.on("mousewheel", this.handleWheel, this);
39133         this.mainBody.on("mousewheel", this.handleWheel, this);
39134
39135         this.mainHd.on("mouseover", this.handleHdOver, this);
39136         this.mainHd.on("mouseout", this.handleHdOut, this);
39137         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
39138                 {delegate: "."+this.splitClass});
39139
39140         this.lockedHd.on("mouseover", this.handleHdOver, this);
39141         this.lockedHd.on("mouseout", this.handleHdOut, this);
39142         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
39143                 {delegate: "."+this.splitClass});
39144
39145         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
39146             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
39147         }
39148
39149         this.updateSplitters();
39150
39151         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
39152             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
39153             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
39154         }
39155
39156         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
39157             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
39158             this.hmenu.add(
39159                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
39160                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
39161             );
39162             if(this.grid.enableColLock !== false){
39163                 this.hmenu.add('-',
39164                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
39165                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
39166                 );
39167             }
39168             if (Roo.isTouch) {
39169                  this.hmenu.add('-',
39170                     {id:"wider", text: this.columnsWiderText},
39171                     {id:"narrow", text: this.columnsNarrowText }
39172                 );
39173                 
39174                  
39175             }
39176             
39177             if(this.grid.enableColumnHide !== false){
39178
39179                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
39180                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
39181                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
39182
39183                 this.hmenu.add('-',
39184                     {id:"columns", text: this.columnsText, menu: this.colMenu}
39185                 );
39186             }
39187             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
39188
39189             this.grid.on("headercontextmenu", this.handleHdCtx, this);
39190         }
39191
39192         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
39193             this.dd = new Roo.grid.GridDragZone(this.grid, {
39194                 ddGroup : this.grid.ddGroup || 'GridDD'
39195             });
39196             
39197         }
39198
39199         /*
39200         for(var i = 0; i < colCount; i++){
39201             if(cm.isHidden(i)){
39202                 this.hideColumn(i);
39203             }
39204             if(cm.config[i].align){
39205                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
39206                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
39207             }
39208         }*/
39209         
39210         this.updateHeaderSortState();
39211
39212         this.beforeInitialResize();
39213         this.layout(true);
39214
39215         // two part rendering gives faster view to the user
39216         this.renderPhase2.defer(1, this);
39217     },
39218
39219     renderPhase2 : function(){
39220         // render the rows now
39221         this.refresh();
39222         if(this.grid.autoSizeColumns){
39223             this.autoSizeColumns();
39224         }
39225     },
39226
39227     beforeInitialResize : function(){
39228
39229     },
39230
39231     onColumnSplitterMoved : function(i, w){
39232         this.userResized = true;
39233         var cm = this.grid.colModel;
39234         cm.setColumnWidth(i, w, true);
39235         var cid = cm.getColumnId(i);
39236         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
39237         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
39238         this.updateSplitters();
39239         this.layout();
39240         this.grid.fireEvent("columnresize", i, w);
39241     },
39242
39243     syncRowHeights : function(startIndex, endIndex){
39244         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
39245             startIndex = startIndex || 0;
39246             var mrows = this.getBodyTable().rows;
39247             var lrows = this.getLockedTable().rows;
39248             var len = mrows.length-1;
39249             endIndex = Math.min(endIndex || len, len);
39250             for(var i = startIndex; i <= endIndex; i++){
39251                 var m = mrows[i], l = lrows[i];
39252                 var h = Math.max(m.offsetHeight, l.offsetHeight);
39253                 m.style.height = l.style.height = h + "px";
39254             }
39255         }
39256     },
39257
39258     layout : function(initialRender, is2ndPass)
39259     {
39260         var g = this.grid;
39261         var auto = g.autoHeight;
39262         var scrollOffset = 16;
39263         var c = g.getGridEl(), cm = this.cm,
39264                 expandCol = g.autoExpandColumn,
39265                 gv = this;
39266         //c.beginMeasure();
39267
39268         if(!c.dom.offsetWidth){ // display:none?
39269             if(initialRender){
39270                 this.lockedWrap.show();
39271                 this.mainWrap.show();
39272             }
39273             return;
39274         }
39275
39276         var hasLock = this.cm.isLocked(0);
39277
39278         var tbh = this.headerPanel.getHeight();
39279         var bbh = this.footerPanel.getHeight();
39280
39281         if(auto){
39282             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
39283             var newHeight = ch + c.getBorderWidth("tb");
39284             if(g.maxHeight){
39285                 newHeight = Math.min(g.maxHeight, newHeight);
39286             }
39287             c.setHeight(newHeight);
39288         }
39289
39290         if(g.autoWidth){
39291             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
39292         }
39293
39294         var s = this.scroller;
39295
39296         var csize = c.getSize(true);
39297
39298         this.el.setSize(csize.width, csize.height);
39299
39300         this.headerPanel.setWidth(csize.width);
39301         this.footerPanel.setWidth(csize.width);
39302
39303         var hdHeight = this.mainHd.getHeight();
39304         var vw = csize.width;
39305         var vh = csize.height - (tbh + bbh);
39306
39307         s.setSize(vw, vh);
39308
39309         var bt = this.getBodyTable();
39310         
39311         if(cm.getLockedCount() == cm.config.length){
39312             bt = this.getLockedTable();
39313         }
39314         
39315         var ltWidth = hasLock ?
39316                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
39317
39318         var scrollHeight = bt.offsetHeight;
39319         var scrollWidth = ltWidth + bt.offsetWidth;
39320         var vscroll = false, hscroll = false;
39321
39322         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
39323
39324         var lw = this.lockedWrap, mw = this.mainWrap;
39325         var lb = this.lockedBody, mb = this.mainBody;
39326
39327         setTimeout(function(){
39328             var t = s.dom.offsetTop;
39329             var w = s.dom.clientWidth,
39330                 h = s.dom.clientHeight;
39331
39332             lw.setTop(t);
39333             lw.setSize(ltWidth, h);
39334
39335             mw.setLeftTop(ltWidth, t);
39336             mw.setSize(w-ltWidth, h);
39337
39338             lb.setHeight(h-hdHeight);
39339             mb.setHeight(h-hdHeight);
39340
39341             if(is2ndPass !== true && !gv.userResized && expandCol){
39342                 // high speed resize without full column calculation
39343                 
39344                 var ci = cm.getIndexById(expandCol);
39345                 if (ci < 0) {
39346                     ci = cm.findColumnIndex(expandCol);
39347                 }
39348                 ci = Math.max(0, ci); // make sure it's got at least the first col.
39349                 var expandId = cm.getColumnId(ci);
39350                 var  tw = cm.getTotalWidth(false);
39351                 var currentWidth = cm.getColumnWidth(ci);
39352                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
39353                 if(currentWidth != cw){
39354                     cm.setColumnWidth(ci, cw, true);
39355                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
39356                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
39357                     gv.updateSplitters();
39358                     gv.layout(false, true);
39359                 }
39360             }
39361
39362             if(initialRender){
39363                 lw.show();
39364                 mw.show();
39365             }
39366             //c.endMeasure();
39367         }, 10);
39368     },
39369
39370     onWindowResize : function(){
39371         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
39372             return;
39373         }
39374         this.layout();
39375     },
39376
39377     appendFooter : function(parentEl){
39378         return null;
39379     },
39380
39381     sortAscText : "Sort Ascending",
39382     sortDescText : "Sort Descending",
39383     lockText : "Lock Column",
39384     unlockText : "Unlock Column",
39385     columnsText : "Columns",
39386  
39387     columnsWiderText : "Wider",
39388     columnsNarrowText : "Thinner"
39389 });
39390
39391
39392 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
39393     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
39394     this.proxy.el.addClass('x-grid3-col-dd');
39395 };
39396
39397 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
39398     handleMouseDown : function(e){
39399
39400     },
39401
39402     callHandleMouseDown : function(e){
39403         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
39404     }
39405 });
39406 /*
39407  * Based on:
39408  * Ext JS Library 1.1.1
39409  * Copyright(c) 2006-2007, Ext JS, LLC.
39410  *
39411  * Originally Released Under LGPL - original licence link has changed is not relivant.
39412  *
39413  * Fork - LGPL
39414  * <script type="text/javascript">
39415  */
39416  /**
39417  * @extends Roo.dd.DDProxy
39418  * @class Roo.grid.SplitDragZone
39419  * Support for Column Header resizing
39420  * @constructor
39421  * @param {Object} config
39422  */
39423 // private
39424 // This is a support class used internally by the Grid components
39425 Roo.grid.SplitDragZone = function(grid, hd, hd2){
39426     this.grid = grid;
39427     this.view = grid.getView();
39428     this.proxy = this.view.resizeProxy;
39429     Roo.grid.SplitDragZone.superclass.constructor.call(
39430         this,
39431         hd, // ID
39432         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
39433         {  // CONFIG
39434             dragElId : Roo.id(this.proxy.dom),
39435             resizeFrame:false
39436         }
39437     );
39438     
39439     this.setHandleElId(Roo.id(hd));
39440     if (hd2 !== false) {
39441         this.setOuterHandleElId(Roo.id(hd2));
39442     }
39443     
39444     this.scroll = false;
39445 };
39446 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
39447     fly: Roo.Element.fly,
39448
39449     b4StartDrag : function(x, y){
39450         this.view.headersDisabled = true;
39451         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
39452                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
39453         );
39454         this.proxy.setHeight(h);
39455         
39456         // for old system colWidth really stored the actual width?
39457         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
39458         // which in reality did not work.. - it worked only for fixed sizes
39459         // for resizable we need to use actual sizes.
39460         var w = this.cm.getColumnWidth(this.cellIndex);
39461         if (!this.view.mainWrap) {
39462             // bootstrap.
39463             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
39464         }
39465         
39466         
39467         
39468         // this was w-this.grid.minColumnWidth;
39469         // doesnt really make sense? - w = thie curren width or the rendered one?
39470         var minw = Math.max(w-this.grid.minColumnWidth, 0);
39471         this.resetConstraints();
39472         this.setXConstraint(minw, 1000);
39473         this.setYConstraint(0, 0);
39474         this.minX = x - minw;
39475         this.maxX = x + 1000;
39476         this.startPos = x;
39477         if (!this.view.mainWrap) { // this is Bootstrap code..
39478             this.getDragEl().style.display='block';
39479         }
39480         
39481         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
39482     },
39483
39484
39485     handleMouseDown : function(e){
39486         ev = Roo.EventObject.setEvent(e);
39487         var t = this.fly(ev.getTarget());
39488         if(t.hasClass("x-grid-split")){
39489             this.cellIndex = this.view.getCellIndex(t.dom);
39490             this.split = t.dom;
39491             this.cm = this.grid.colModel;
39492             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
39493                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
39494             }
39495         }
39496     },
39497
39498     endDrag : function(e){
39499         this.view.headersDisabled = false;
39500         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
39501         var diff = endX - this.startPos;
39502         // 
39503         var w = this.cm.getColumnWidth(this.cellIndex);
39504         if (!this.view.mainWrap) {
39505             w = 0;
39506         }
39507         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
39508     },
39509
39510     autoOffset : function(){
39511         this.setDelta(0,0);
39512     }
39513 });/*
39514  * Based on:
39515  * Ext JS Library 1.1.1
39516  * Copyright(c) 2006-2007, Ext JS, LLC.
39517  *
39518  * Originally Released Under LGPL - original licence link has changed is not relivant.
39519  *
39520  * Fork - LGPL
39521  * <script type="text/javascript">
39522  */
39523  
39524 // private
39525 // This is a support class used internally by the Grid components
39526 Roo.grid.GridDragZone = function(grid, config){
39527     this.view = grid.getView();
39528     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
39529     if(this.view.lockedBody){
39530         this.setHandleElId(Roo.id(this.view.mainBody.dom));
39531         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
39532     }
39533     this.scroll = false;
39534     this.grid = grid;
39535     this.ddel = document.createElement('div');
39536     this.ddel.className = 'x-grid-dd-wrap';
39537 };
39538
39539 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
39540     ddGroup : "GridDD",
39541
39542     getDragData : function(e){
39543         var t = Roo.lib.Event.getTarget(e);
39544         var rowIndex = this.view.findRowIndex(t);
39545         var sm = this.grid.selModel;
39546             
39547         //Roo.log(rowIndex);
39548         
39549         if (sm.getSelectedCell) {
39550             // cell selection..
39551             if (!sm.getSelectedCell()) {
39552                 return false;
39553             }
39554             if (rowIndex != sm.getSelectedCell()[0]) {
39555                 return false;
39556             }
39557         
39558         }
39559         if (sm.getSelections && sm.getSelections().length < 1) {
39560             return false;
39561         }
39562         
39563         
39564         // before it used to all dragging of unseleted... - now we dont do that.
39565         if(rowIndex !== false){
39566             
39567             // if editorgrid.. 
39568             
39569             
39570             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
39571                
39572             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
39573               //  
39574             //}
39575             if (e.hasModifier()){
39576                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
39577             }
39578             
39579             Roo.log("getDragData");
39580             
39581             return {
39582                 grid: this.grid,
39583                 ddel: this.ddel,
39584                 rowIndex: rowIndex,
39585                 selections: sm.getSelections ? sm.getSelections() : (
39586                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
39587             };
39588         }
39589         return false;
39590     },
39591     
39592     
39593     onInitDrag : function(e){
39594         var data = this.dragData;
39595         this.ddel.innerHTML = this.grid.getDragDropText();
39596         this.proxy.update(this.ddel);
39597         // fire start drag?
39598     },
39599
39600     afterRepair : function(){
39601         this.dragging = false;
39602     },
39603
39604     getRepairXY : function(e, data){
39605         return false;
39606     },
39607
39608     onEndDrag : function(data, e){
39609         // fire end drag?
39610     },
39611
39612     onValidDrop : function(dd, e, id){
39613         // fire drag drop?
39614         this.hideProxy();
39615     },
39616
39617     beforeInvalidDrop : function(e, id){
39618
39619     }
39620 });/*
39621  * Based on:
39622  * Ext JS Library 1.1.1
39623  * Copyright(c) 2006-2007, Ext JS, LLC.
39624  *
39625  * Originally Released Under LGPL - original licence link has changed is not relivant.
39626  *
39627  * Fork - LGPL
39628  * <script type="text/javascript">
39629  */
39630  
39631
39632 /**
39633  * @class Roo.grid.ColumnModel
39634  * @extends Roo.util.Observable
39635  * This is the default implementation of a ColumnModel used by the Grid. It defines
39636  * the columns in the grid.
39637  * <br>Usage:<br>
39638  <pre><code>
39639  var colModel = new Roo.grid.ColumnModel([
39640         {header: "Ticker", width: 60, sortable: true, locked: true},
39641         {header: "Company Name", width: 150, sortable: true},
39642         {header: "Market Cap.", width: 100, sortable: true},
39643         {header: "$ Sales", width: 100, sortable: true, renderer: money},
39644         {header: "Employees", width: 100, sortable: true, resizable: false}
39645  ]);
39646  </code></pre>
39647  * <p>
39648  
39649  * The config options listed for this class are options which may appear in each
39650  * individual column definition.
39651  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
39652  * @constructor
39653  * @param {Object} config An Array of column config objects. See this class's
39654  * config objects for details.
39655 */
39656 Roo.grid.ColumnModel = function(config){
39657         /**
39658      * The config passed into the constructor
39659      */
39660     this.config = []; //config;
39661     this.lookup = {};
39662
39663     // if no id, create one
39664     // if the column does not have a dataIndex mapping,
39665     // map it to the order it is in the config
39666     for(var i = 0, len = config.length; i < len; i++){
39667         this.addColumn(config[i]);
39668         
39669     }
39670
39671     /**
39672      * The width of columns which have no width specified (defaults to 100)
39673      * @type Number
39674      */
39675     this.defaultWidth = 100;
39676
39677     /**
39678      * Default sortable of columns which have no sortable specified (defaults to false)
39679      * @type Boolean
39680      */
39681     this.defaultSortable = false;
39682
39683     this.addEvents({
39684         /**
39685              * @event widthchange
39686              * Fires when the width of a column changes.
39687              * @param {ColumnModel} this
39688              * @param {Number} columnIndex The column index
39689              * @param {Number} newWidth The new width
39690              */
39691             "widthchange": true,
39692         /**
39693              * @event headerchange
39694              * Fires when the text of a header changes.
39695              * @param {ColumnModel} this
39696              * @param {Number} columnIndex The column index
39697              * @param {Number} newText The new header text
39698              */
39699             "headerchange": true,
39700         /**
39701              * @event hiddenchange
39702              * Fires when a column is hidden or "unhidden".
39703              * @param {ColumnModel} this
39704              * @param {Number} columnIndex The column index
39705              * @param {Boolean} hidden true if hidden, false otherwise
39706              */
39707             "hiddenchange": true,
39708             /**
39709          * @event columnmoved
39710          * Fires when a column is moved.
39711          * @param {ColumnModel} this
39712          * @param {Number} oldIndex
39713          * @param {Number} newIndex
39714          */
39715         "columnmoved" : true,
39716         /**
39717          * @event columlockchange
39718          * Fires when a column's locked state is changed
39719          * @param {ColumnModel} this
39720          * @param {Number} colIndex
39721          * @param {Boolean} locked true if locked
39722          */
39723         "columnlockchange" : true
39724     });
39725     Roo.grid.ColumnModel.superclass.constructor.call(this);
39726 };
39727 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
39728     /**
39729      * @cfg {String} header The header text to display in the Grid view.
39730      */
39731         /**
39732      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
39733      */
39734         /**
39735      * @cfg {String} smHeader Header at Bootsrap Small width
39736      */
39737         /**
39738      * @cfg {String} mdHeader Header at Bootsrap Medium width
39739      */
39740         /**
39741      * @cfg {String} lgHeader Header at Bootsrap Large width
39742      */
39743         /**
39744      * @cfg {String} xlHeader Header at Bootsrap extra Large width
39745      */
39746     /**
39747      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
39748      * {@link Roo.data.Record} definition from which to draw the column's value. If not
39749      * specified, the column's index is used as an index into the Record's data Array.
39750      */
39751     /**
39752      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
39753      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
39754      */
39755     /**
39756      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
39757      * Defaults to the value of the {@link #defaultSortable} property.
39758      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
39759      */
39760     /**
39761      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
39762      */
39763     /**
39764      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
39765      */
39766     /**
39767      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
39768      */
39769     /**
39770      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
39771      */
39772     /**
39773      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
39774      * given the cell's data value. See {@link #setRenderer}. If not specified, the
39775      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
39776      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
39777      */
39778        /**
39779      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
39780      */
39781     /**
39782      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
39783      */
39784     /**
39785      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
39786      */
39787     /**
39788      * @cfg {String} cursor (Optional)
39789      */
39790     /**
39791      * @cfg {String} tooltip (Optional)
39792      */
39793     /**
39794      * @cfg {Number} xs (Optional) can be '0' for hidden at this size (number less than 12)
39795      */
39796     /**
39797      * @cfg {Number} sm (Optional) can be '0' for hidden at this size (number less than 12)
39798      */
39799     /**
39800      * @cfg {Number} md (Optional) can be '0' for hidden at this size (number less than 12)
39801      */
39802     /**
39803      * @cfg {Number} lg (Optional) can be '0' for hidden at this size (number less than 12)
39804      */
39805         /**
39806      * @cfg {Number} xl (Optional) can be '0' for hidden at this size (number less than 12)
39807      */
39808     /**
39809      * Returns the id of the column at the specified index.
39810      * @param {Number} index The column index
39811      * @return {String} the id
39812      */
39813     getColumnId : function(index){
39814         return this.config[index].id;
39815     },
39816
39817     /**
39818      * Returns the column for a specified id.
39819      * @param {String} id The column id
39820      * @return {Object} the column
39821      */
39822     getColumnById : function(id){
39823         return this.lookup[id];
39824     },
39825
39826     
39827     /**
39828      * Returns the column Object for a specified dataIndex.
39829      * @param {String} dataIndex The column dataIndex
39830      * @return {Object|Boolean} the column or false if not found
39831      */
39832     getColumnByDataIndex: function(dataIndex){
39833         var index = this.findColumnIndex(dataIndex);
39834         return index > -1 ? this.config[index] : false;
39835     },
39836     
39837     /**
39838      * Returns the index for a specified column id.
39839      * @param {String} id The column id
39840      * @return {Number} the index, or -1 if not found
39841      */
39842     getIndexById : function(id){
39843         for(var i = 0, len = this.config.length; i < len; i++){
39844             if(this.config[i].id == id){
39845                 return i;
39846             }
39847         }
39848         return -1;
39849     },
39850     
39851     /**
39852      * Returns the index for a specified column dataIndex.
39853      * @param {String} dataIndex The column dataIndex
39854      * @return {Number} the index, or -1 if not found
39855      */
39856     
39857     findColumnIndex : function(dataIndex){
39858         for(var i = 0, len = this.config.length; i < len; i++){
39859             if(this.config[i].dataIndex == dataIndex){
39860                 return i;
39861             }
39862         }
39863         return -1;
39864     },
39865     
39866     
39867     moveColumn : function(oldIndex, newIndex){
39868         var c = this.config[oldIndex];
39869         this.config.splice(oldIndex, 1);
39870         this.config.splice(newIndex, 0, c);
39871         this.dataMap = null;
39872         this.fireEvent("columnmoved", this, oldIndex, newIndex);
39873     },
39874
39875     isLocked : function(colIndex){
39876         return this.config[colIndex].locked === true;
39877     },
39878
39879     setLocked : function(colIndex, value, suppressEvent){
39880         if(this.isLocked(colIndex) == value){
39881             return;
39882         }
39883         this.config[colIndex].locked = value;
39884         if(!suppressEvent){
39885             this.fireEvent("columnlockchange", this, colIndex, value);
39886         }
39887     },
39888
39889     getTotalLockedWidth : function(){
39890         var totalWidth = 0;
39891         for(var i = 0; i < this.config.length; i++){
39892             if(this.isLocked(i) && !this.isHidden(i)){
39893                 this.totalWidth += this.getColumnWidth(i);
39894             }
39895         }
39896         return totalWidth;
39897     },
39898
39899     getLockedCount : function(){
39900         for(var i = 0, len = this.config.length; i < len; i++){
39901             if(!this.isLocked(i)){
39902                 return i;
39903             }
39904         }
39905         
39906         return this.config.length;
39907     },
39908
39909     /**
39910      * Returns the number of columns.
39911      * @return {Number}
39912      */
39913     getColumnCount : function(visibleOnly){
39914         if(visibleOnly === true){
39915             var c = 0;
39916             for(var i = 0, len = this.config.length; i < len; i++){
39917                 if(!this.isHidden(i)){
39918                     c++;
39919                 }
39920             }
39921             return c;
39922         }
39923         return this.config.length;
39924     },
39925
39926     /**
39927      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
39928      * @param {Function} fn
39929      * @param {Object} scope (optional)
39930      * @return {Array} result
39931      */
39932     getColumnsBy : function(fn, scope){
39933         var r = [];
39934         for(var i = 0, len = this.config.length; i < len; i++){
39935             var c = this.config[i];
39936             if(fn.call(scope||this, c, i) === true){
39937                 r[r.length] = c;
39938             }
39939         }
39940         return r;
39941     },
39942
39943     /**
39944      * Returns true if the specified column is sortable.
39945      * @param {Number} col The column index
39946      * @return {Boolean}
39947      */
39948     isSortable : function(col){
39949         if(typeof this.config[col].sortable == "undefined"){
39950             return this.defaultSortable;
39951         }
39952         return this.config[col].sortable;
39953     },
39954
39955     /**
39956      * Returns the rendering (formatting) function defined for the column.
39957      * @param {Number} col The column index.
39958      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
39959      */
39960     getRenderer : function(col){
39961         if(!this.config[col].renderer){
39962             return Roo.grid.ColumnModel.defaultRenderer;
39963         }
39964         return this.config[col].renderer;
39965     },
39966
39967     /**
39968      * Sets the rendering (formatting) function for a column.
39969      * @param {Number} col The column index
39970      * @param {Function} fn The function to use to process the cell's raw data
39971      * to return HTML markup for the grid view. The render function is called with
39972      * the following parameters:<ul>
39973      * <li>Data value.</li>
39974      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
39975      * <li>css A CSS style string to apply to the table cell.</li>
39976      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
39977      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
39978      * <li>Row index</li>
39979      * <li>Column index</li>
39980      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
39981      */
39982     setRenderer : function(col, fn){
39983         this.config[col].renderer = fn;
39984     },
39985
39986     /**
39987      * Returns the width for the specified column.
39988      * @param {Number} col The column index
39989      * @param (optional) {String} gridSize bootstrap width size.
39990      * @return {Number}
39991      */
39992     getColumnWidth : function(col, gridSize)
39993         {
39994                 var cfg = this.config[col];
39995                 
39996                 if (typeof(gridSize) == 'undefined') {
39997                         return cfg.width * 1 || this.defaultWidth;
39998                 }
39999                 if (gridSize === false) { // if we set it..
40000                         return cfg.width || false;
40001                 }
40002                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
40003                 
40004                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
40005                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
40006                                 continue;
40007                         }
40008                         return cfg[ sizes[i] ];
40009                 }
40010                 return 1;
40011                 
40012     },
40013
40014     /**
40015      * Sets the width for a column.
40016      * @param {Number} col The column index
40017      * @param {Number} width The new width
40018      */
40019     setColumnWidth : function(col, width, suppressEvent){
40020         this.config[col].width = width;
40021         this.totalWidth = null;
40022         if(!suppressEvent){
40023              this.fireEvent("widthchange", this, col, width);
40024         }
40025     },
40026
40027     /**
40028      * Returns the total width of all columns.
40029      * @param {Boolean} includeHidden True to include hidden column widths
40030      * @return {Number}
40031      */
40032     getTotalWidth : function(includeHidden){
40033         if(!this.totalWidth){
40034             this.totalWidth = 0;
40035             for(var i = 0, len = this.config.length; i < len; i++){
40036                 if(includeHidden || !this.isHidden(i)){
40037                     this.totalWidth += this.getColumnWidth(i);
40038                 }
40039             }
40040         }
40041         return this.totalWidth;
40042     },
40043
40044     /**
40045      * Returns the header for the specified column.
40046      * @param {Number} col The column index
40047      * @return {String}
40048      */
40049     getColumnHeader : function(col){
40050         return this.config[col].header;
40051     },
40052
40053     /**
40054      * Sets the header for a column.
40055      * @param {Number} col The column index
40056      * @param {String} header The new header
40057      */
40058     setColumnHeader : function(col, header){
40059         this.config[col].header = header;
40060         this.fireEvent("headerchange", this, col, header);
40061     },
40062
40063     /**
40064      * Returns the tooltip for the specified column.
40065      * @param {Number} col The column index
40066      * @return {String}
40067      */
40068     getColumnTooltip : function(col){
40069             return this.config[col].tooltip;
40070     },
40071     /**
40072      * Sets the tooltip for a column.
40073      * @param {Number} col The column index
40074      * @param {String} tooltip The new tooltip
40075      */
40076     setColumnTooltip : function(col, tooltip){
40077             this.config[col].tooltip = tooltip;
40078     },
40079
40080     /**
40081      * Returns the dataIndex for the specified column.
40082      * @param {Number} col The column index
40083      * @return {Number}
40084      */
40085     getDataIndex : function(col){
40086         return this.config[col].dataIndex;
40087     },
40088
40089     /**
40090      * Sets the dataIndex for a column.
40091      * @param {Number} col The column index
40092      * @param {Number} dataIndex The new dataIndex
40093      */
40094     setDataIndex : function(col, dataIndex){
40095         this.config[col].dataIndex = dataIndex;
40096     },
40097
40098     
40099     
40100     /**
40101      * Returns true if the cell is editable.
40102      * @param {Number} colIndex The column index
40103      * @param {Number} rowIndex The row index - this is nto actually used..?
40104      * @return {Boolean}
40105      */
40106     isCellEditable : function(colIndex, rowIndex){
40107         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
40108     },
40109
40110     /**
40111      * Returns the editor defined for the cell/column.
40112      * return false or null to disable editing.
40113      * @param {Number} colIndex The column index
40114      * @param {Number} rowIndex The row index
40115      * @return {Object}
40116      */
40117     getCellEditor : function(colIndex, rowIndex){
40118         return this.config[colIndex].editor;
40119     },
40120
40121     /**
40122      * Sets if a column is editable.
40123      * @param {Number} col The column index
40124      * @param {Boolean} editable True if the column is editable
40125      */
40126     setEditable : function(col, editable){
40127         this.config[col].editable = editable;
40128     },
40129
40130
40131     /**
40132      * Returns true if the column is hidden.
40133      * @param {Number} colIndex The column index
40134      * @return {Boolean}
40135      */
40136     isHidden : function(colIndex){
40137         return this.config[colIndex].hidden;
40138     },
40139
40140
40141     /**
40142      * Returns true if the column width cannot be changed
40143      */
40144     isFixed : function(colIndex){
40145         return this.config[colIndex].fixed;
40146     },
40147
40148     /**
40149      * Returns true if the column can be resized
40150      * @return {Boolean}
40151      */
40152     isResizable : function(colIndex){
40153         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
40154     },
40155     /**
40156      * Sets if a column is hidden.
40157      * @param {Number} colIndex The column index
40158      * @param {Boolean} hidden True if the column is hidden
40159      */
40160     setHidden : function(colIndex, hidden){
40161         this.config[colIndex].hidden = hidden;
40162         this.totalWidth = null;
40163         this.fireEvent("hiddenchange", this, colIndex, hidden);
40164     },
40165
40166     /**
40167      * Sets the editor for a column.
40168      * @param {Number} col The column index
40169      * @param {Object} editor The editor object
40170      */
40171     setEditor : function(col, editor){
40172         this.config[col].editor = editor;
40173     },
40174     /**
40175      * Add a column (experimental...) - defaults to adding to the end..
40176      * @param {Object} config 
40177     */
40178     addColumn : function(c)
40179     {
40180     
40181         var i = this.config.length;
40182         this.config[i] = c;
40183         
40184         if(typeof c.dataIndex == "undefined"){
40185             c.dataIndex = i;
40186         }
40187         if(typeof c.renderer == "string"){
40188             c.renderer = Roo.util.Format[c.renderer];
40189         }
40190         if(typeof c.id == "undefined"){
40191             c.id = Roo.id();
40192         }
40193         if(c.editor && c.editor.xtype){
40194             c.editor  = Roo.factory(c.editor, Roo.grid);
40195         }
40196         if(c.editor && c.editor.isFormField){
40197             c.editor = new Roo.grid.GridEditor(c.editor);
40198         }
40199         this.lookup[c.id] = c;
40200     }
40201     
40202 });
40203
40204 Roo.grid.ColumnModel.defaultRenderer = function(value)
40205 {
40206     if(typeof value == "object") {
40207         return value;
40208     }
40209         if(typeof value == "string" && value.length < 1){
40210             return "&#160;";
40211         }
40212     
40213         return String.format("{0}", value);
40214 };
40215
40216 // Alias for backwards compatibility
40217 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
40218 /*
40219  * Based on:
40220  * Ext JS Library 1.1.1
40221  * Copyright(c) 2006-2007, Ext JS, LLC.
40222  *
40223  * Originally Released Under LGPL - original licence link has changed is not relivant.
40224  *
40225  * Fork - LGPL
40226  * <script type="text/javascript">
40227  */
40228
40229 /**
40230  * @class Roo.grid.AbstractSelectionModel
40231  * @extends Roo.util.Observable
40232  * @abstract
40233  * Abstract base class for grid SelectionModels.  It provides the interface that should be
40234  * implemented by descendant classes.  This class should not be directly instantiated.
40235  * @constructor
40236  */
40237 Roo.grid.AbstractSelectionModel = function(){
40238     this.locked = false;
40239     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
40240 };
40241
40242 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
40243     /** @ignore Called by the grid automatically. Do not call directly. */
40244     init : function(grid){
40245         this.grid = grid;
40246         this.initEvents();
40247     },
40248
40249     /**
40250      * Locks the selections.
40251      */
40252     lock : function(){
40253         this.locked = true;
40254     },
40255
40256     /**
40257      * Unlocks the selections.
40258      */
40259     unlock : function(){
40260         this.locked = false;
40261     },
40262
40263     /**
40264      * Returns true if the selections are locked.
40265      * @return {Boolean}
40266      */
40267     isLocked : function(){
40268         return this.locked;
40269     }
40270 });/*
40271  * Based on:
40272  * Ext JS Library 1.1.1
40273  * Copyright(c) 2006-2007, Ext JS, LLC.
40274  *
40275  * Originally Released Under LGPL - original licence link has changed is not relivant.
40276  *
40277  * Fork - LGPL
40278  * <script type="text/javascript">
40279  */
40280 /**
40281  * @extends Roo.grid.AbstractSelectionModel
40282  * @class Roo.grid.RowSelectionModel
40283  * The default SelectionModel used by {@link Roo.grid.Grid}.
40284  * It supports multiple selections and keyboard selection/navigation. 
40285  * @constructor
40286  * @param {Object} config
40287  */
40288 Roo.grid.RowSelectionModel = function(config){
40289     Roo.apply(this, config);
40290     this.selections = new Roo.util.MixedCollection(false, function(o){
40291         return o.id;
40292     });
40293
40294     this.last = false;
40295     this.lastActive = false;
40296
40297     this.addEvents({
40298         /**
40299         * @event selectionchange
40300         * Fires when the selection changes
40301         * @param {SelectionModel} this
40302         */
40303        "selectionchange" : true,
40304        /**
40305         * @event afterselectionchange
40306         * Fires after the selection changes (eg. by key press or clicking)
40307         * @param {SelectionModel} this
40308         */
40309        "afterselectionchange" : true,
40310        /**
40311         * @event beforerowselect
40312         * Fires when a row is selected being selected, return false to cancel.
40313         * @param {SelectionModel} this
40314         * @param {Number} rowIndex The selected index
40315         * @param {Boolean} keepExisting False if other selections will be cleared
40316         */
40317        "beforerowselect" : true,
40318        /**
40319         * @event rowselect
40320         * Fires when a row is selected.
40321         * @param {SelectionModel} this
40322         * @param {Number} rowIndex The selected index
40323         * @param {Roo.data.Record} r The record
40324         */
40325        "rowselect" : true,
40326        /**
40327         * @event rowdeselect
40328         * Fires when a row is deselected.
40329         * @param {SelectionModel} this
40330         * @param {Number} rowIndex The selected index
40331         */
40332         "rowdeselect" : true
40333     });
40334     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
40335     this.locked = false;
40336 };
40337
40338 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
40339     /**
40340      * @cfg {Boolean} singleSelect
40341      * True to allow selection of only one row at a time (defaults to false)
40342      */
40343     singleSelect : false,
40344
40345     // private
40346     initEvents : function(){
40347
40348         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
40349             this.grid.on("mousedown", this.handleMouseDown, this);
40350         }else{ // allow click to work like normal
40351             this.grid.on("rowclick", this.handleDragableRowClick, this);
40352         }
40353         // bootstrap does not have a view..
40354         var view = this.grid.view ? this.grid.view : this.grid;
40355         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
40356             "up" : function(e){
40357                 if(!e.shiftKey){
40358                     this.selectPrevious(e.shiftKey);
40359                 }else if(this.last !== false && this.lastActive !== false){
40360                     var last = this.last;
40361                     this.selectRange(this.last,  this.lastActive-1);
40362                     view.focusRow(this.lastActive);
40363                     if(last !== false){
40364                         this.last = last;
40365                     }
40366                 }else{
40367                     this.selectFirstRow();
40368                 }
40369                 this.fireEvent("afterselectionchange", this);
40370             },
40371             "down" : function(e){
40372                 if(!e.shiftKey){
40373                     this.selectNext(e.shiftKey);
40374                 }else if(this.last !== false && this.lastActive !== false){
40375                     var last = this.last;
40376                     this.selectRange(this.last,  this.lastActive+1);
40377                     view.focusRow(this.lastActive);
40378                     if(last !== false){
40379                         this.last = last;
40380                     }
40381                 }else{
40382                     this.selectFirstRow();
40383                 }
40384                 this.fireEvent("afterselectionchange", this);
40385             },
40386             scope: this
40387         });
40388
40389          
40390         view.on("refresh", this.onRefresh, this);
40391         view.on("rowupdated", this.onRowUpdated, this);
40392         view.on("rowremoved", this.onRemove, this);
40393     },
40394
40395     // private
40396     onRefresh : function(){
40397         var ds = this.grid.ds, i, v = this.grid.view;
40398         var s = this.selections;
40399         s.each(function(r){
40400             if((i = ds.indexOfId(r.id)) != -1){
40401                 v.onRowSelect(i);
40402                 s.add(ds.getAt(i)); // updating the selection relate data
40403             }else{
40404                 s.remove(r);
40405             }
40406         });
40407     },
40408
40409     // private
40410     onRemove : function(v, index, r){
40411         this.selections.remove(r);
40412     },
40413
40414     // private
40415     onRowUpdated : function(v, index, r){
40416         if(this.isSelected(r)){
40417             v.onRowSelect(index);
40418         }
40419     },
40420
40421     /**
40422      * Select records.
40423      * @param {Array} records The records to select
40424      * @param {Boolean} keepExisting (optional) True to keep existing selections
40425      */
40426     selectRecords : function(records, keepExisting){
40427         if(!keepExisting){
40428             this.clearSelections();
40429         }
40430         var ds = this.grid.ds;
40431         for(var i = 0, len = records.length; i < len; i++){
40432             this.selectRow(ds.indexOf(records[i]), true);
40433         }
40434     },
40435
40436     /**
40437      * Gets the number of selected rows.
40438      * @return {Number}
40439      */
40440     getCount : function(){
40441         return this.selections.length;
40442     },
40443
40444     /**
40445      * Selects the first row in the grid.
40446      */
40447     selectFirstRow : function(){
40448         this.selectRow(0);
40449     },
40450
40451     /**
40452      * Select the last row.
40453      * @param {Boolean} keepExisting (optional) True to keep existing selections
40454      */
40455     selectLastRow : function(keepExisting){
40456         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
40457     },
40458
40459     /**
40460      * Selects the row immediately following the last selected row.
40461      * @param {Boolean} keepExisting (optional) True to keep existing selections
40462      */
40463     selectNext : function(keepExisting){
40464         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
40465             this.selectRow(this.last+1, keepExisting);
40466             var view = this.grid.view ? this.grid.view : this.grid;
40467             view.focusRow(this.last);
40468         }
40469     },
40470
40471     /**
40472      * Selects the row that precedes the last selected row.
40473      * @param {Boolean} keepExisting (optional) True to keep existing selections
40474      */
40475     selectPrevious : function(keepExisting){
40476         if(this.last){
40477             this.selectRow(this.last-1, keepExisting);
40478             var view = this.grid.view ? this.grid.view : this.grid;
40479             view.focusRow(this.last);
40480         }
40481     },
40482
40483     /**
40484      * Returns the selected records
40485      * @return {Array} Array of selected records
40486      */
40487     getSelections : function(){
40488         return [].concat(this.selections.items);
40489     },
40490
40491     /**
40492      * Returns the first selected record.
40493      * @return {Record}
40494      */
40495     getSelected : function(){
40496         return this.selections.itemAt(0);
40497     },
40498
40499
40500     /**
40501      * Clears all selections.
40502      */
40503     clearSelections : function(fast){
40504         if(this.locked) {
40505             return;
40506         }
40507         if(fast !== true){
40508             var ds = this.grid.ds;
40509             var s = this.selections;
40510             s.each(function(r){
40511                 this.deselectRow(ds.indexOfId(r.id));
40512             }, this);
40513             s.clear();
40514         }else{
40515             this.selections.clear();
40516         }
40517         this.last = false;
40518     },
40519
40520
40521     /**
40522      * Selects all rows.
40523      */
40524     selectAll : function(){
40525         if(this.locked) {
40526             return;
40527         }
40528         this.selections.clear();
40529         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
40530             this.selectRow(i, true);
40531         }
40532     },
40533
40534     /**
40535      * Returns True if there is a selection.
40536      * @return {Boolean}
40537      */
40538     hasSelection : function(){
40539         return this.selections.length > 0;
40540     },
40541
40542     /**
40543      * Returns True if the specified row is selected.
40544      * @param {Number/Record} record The record or index of the record to check
40545      * @return {Boolean}
40546      */
40547     isSelected : function(index){
40548         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
40549         return (r && this.selections.key(r.id) ? true : false);
40550     },
40551
40552     /**
40553      * Returns True if the specified record id is selected.
40554      * @param {String} id The id of record to check
40555      * @return {Boolean}
40556      */
40557     isIdSelected : function(id){
40558         return (this.selections.key(id) ? true : false);
40559     },
40560
40561     // private
40562     handleMouseDown : function(e, t)
40563     {
40564         var view = this.grid.view ? this.grid.view : this.grid;
40565         var rowIndex;
40566         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
40567             return;
40568         };
40569         if(e.shiftKey && this.last !== false){
40570             var last = this.last;
40571             this.selectRange(last, rowIndex, e.ctrlKey);
40572             this.last = last; // reset the last
40573             view.focusRow(rowIndex);
40574         }else{
40575             var isSelected = this.isSelected(rowIndex);
40576             if(e.button !== 0 && isSelected){
40577                 view.focusRow(rowIndex);
40578             }else if(e.ctrlKey && isSelected){
40579                 this.deselectRow(rowIndex);
40580             }else if(!isSelected){
40581                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
40582                 view.focusRow(rowIndex);
40583             }
40584         }
40585         this.fireEvent("afterselectionchange", this);
40586     },
40587     // private
40588     handleDragableRowClick :  function(grid, rowIndex, e) 
40589     {
40590         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
40591             this.selectRow(rowIndex, false);
40592             var view = this.grid.view ? this.grid.view : this.grid;
40593             view.focusRow(rowIndex);
40594              this.fireEvent("afterselectionchange", this);
40595         }
40596     },
40597     
40598     /**
40599      * Selects multiple rows.
40600      * @param {Array} rows Array of the indexes of the row to select
40601      * @param {Boolean} keepExisting (optional) True to keep existing selections
40602      */
40603     selectRows : function(rows, keepExisting){
40604         if(!keepExisting){
40605             this.clearSelections();
40606         }
40607         for(var i = 0, len = rows.length; i < len; i++){
40608             this.selectRow(rows[i], true);
40609         }
40610     },
40611
40612     /**
40613      * Selects a range of rows. All rows in between startRow and endRow are also selected.
40614      * @param {Number} startRow The index of the first row in the range
40615      * @param {Number} endRow The index of the last row in the range
40616      * @param {Boolean} keepExisting (optional) True to retain existing selections
40617      */
40618     selectRange : function(startRow, endRow, keepExisting){
40619         if(this.locked) {
40620             return;
40621         }
40622         if(!keepExisting){
40623             this.clearSelections();
40624         }
40625         if(startRow <= endRow){
40626             for(var i = startRow; i <= endRow; i++){
40627                 this.selectRow(i, true);
40628             }
40629         }else{
40630             for(var i = startRow; i >= endRow; i--){
40631                 this.selectRow(i, true);
40632             }
40633         }
40634     },
40635
40636     /**
40637      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
40638      * @param {Number} startRow The index of the first row in the range
40639      * @param {Number} endRow The index of the last row in the range
40640      */
40641     deselectRange : function(startRow, endRow, preventViewNotify){
40642         if(this.locked) {
40643             return;
40644         }
40645         for(var i = startRow; i <= endRow; i++){
40646             this.deselectRow(i, preventViewNotify);
40647         }
40648     },
40649
40650     /**
40651      * Selects a row.
40652      * @param {Number} row The index of the row to select
40653      * @param {Boolean} keepExisting (optional) True to keep existing selections
40654      */
40655     selectRow : function(index, keepExisting, preventViewNotify){
40656         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
40657             return;
40658         }
40659         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
40660             if(!keepExisting || this.singleSelect){
40661                 this.clearSelections();
40662             }
40663             var r = this.grid.ds.getAt(index);
40664             this.selections.add(r);
40665             this.last = this.lastActive = index;
40666             if(!preventViewNotify){
40667                 var view = this.grid.view ? this.grid.view : this.grid;
40668                 view.onRowSelect(index);
40669             }
40670             this.fireEvent("rowselect", this, index, r);
40671             this.fireEvent("selectionchange", this);
40672         }
40673     },
40674
40675     /**
40676      * Deselects a row.
40677      * @param {Number} row The index of the row to deselect
40678      */
40679     deselectRow : function(index, preventViewNotify){
40680         if(this.locked) {
40681             return;
40682         }
40683         if(this.last == index){
40684             this.last = false;
40685         }
40686         if(this.lastActive == index){
40687             this.lastActive = false;
40688         }
40689         var r = this.grid.ds.getAt(index);
40690         this.selections.remove(r);
40691         if(!preventViewNotify){
40692             var view = this.grid.view ? this.grid.view : this.grid;
40693             view.onRowDeselect(index);
40694         }
40695         this.fireEvent("rowdeselect", this, index);
40696         this.fireEvent("selectionchange", this);
40697     },
40698
40699     // private
40700     restoreLast : function(){
40701         if(this._last){
40702             this.last = this._last;
40703         }
40704     },
40705
40706     // private
40707     acceptsNav : function(row, col, cm){
40708         return !cm.isHidden(col) && cm.isCellEditable(col, row);
40709     },
40710
40711     // private
40712     onEditorKey : function(field, e){
40713         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
40714         if(k == e.TAB){
40715             e.stopEvent();
40716             ed.completeEdit();
40717             if(e.shiftKey){
40718                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
40719             }else{
40720                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
40721             }
40722         }else if(k == e.ENTER && !e.ctrlKey){
40723             e.stopEvent();
40724             ed.completeEdit();
40725             if(e.shiftKey){
40726                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
40727             }else{
40728                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
40729             }
40730         }else if(k == e.ESC){
40731             ed.cancelEdit();
40732         }
40733         if(newCell){
40734             g.startEditing(newCell[0], newCell[1]);
40735         }
40736     }
40737 });/*
40738  * Based on:
40739  * Ext JS Library 1.1.1
40740  * Copyright(c) 2006-2007, Ext JS, LLC.
40741  *
40742  * Originally Released Under LGPL - original licence link has changed is not relivant.
40743  *
40744  * Fork - LGPL
40745  * <script type="text/javascript">
40746  */
40747 /**
40748  * @class Roo.grid.CellSelectionModel
40749  * @extends Roo.grid.AbstractSelectionModel
40750  * This class provides the basic implementation for cell selection in a grid.
40751  * @constructor
40752  * @param {Object} config The object containing the configuration of this model.
40753  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
40754  */
40755 Roo.grid.CellSelectionModel = function(config){
40756     Roo.apply(this, config);
40757
40758     this.selection = null;
40759
40760     this.addEvents({
40761         /**
40762              * @event beforerowselect
40763              * Fires before a cell is selected.
40764              * @param {SelectionModel} this
40765              * @param {Number} rowIndex The selected row index
40766              * @param {Number} colIndex The selected cell index
40767              */
40768             "beforecellselect" : true,
40769         /**
40770              * @event cellselect
40771              * Fires when a cell is selected.
40772              * @param {SelectionModel} this
40773              * @param {Number} rowIndex The selected row index
40774              * @param {Number} colIndex The selected cell index
40775              */
40776             "cellselect" : true,
40777         /**
40778              * @event selectionchange
40779              * Fires when the active selection changes.
40780              * @param {SelectionModel} this
40781              * @param {Object} selection null for no selection or an object (o) with two properties
40782                 <ul>
40783                 <li>o.record: the record object for the row the selection is in</li>
40784                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
40785                 </ul>
40786              */
40787             "selectionchange" : true,
40788         /**
40789              * @event tabend
40790              * Fires when the tab (or enter) was pressed on the last editable cell
40791              * You can use this to trigger add new row.
40792              * @param {SelectionModel} this
40793              */
40794             "tabend" : true,
40795          /**
40796              * @event beforeeditnext
40797              * Fires before the next editable sell is made active
40798              * You can use this to skip to another cell or fire the tabend
40799              *    if you set cell to false
40800              * @param {Object} eventdata object : { cell : [ row, col ] } 
40801              */
40802             "beforeeditnext" : true
40803     });
40804     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
40805 };
40806
40807 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
40808     
40809     enter_is_tab: false,
40810
40811     /** @ignore */
40812     initEvents : function(){
40813         this.grid.on("mousedown", this.handleMouseDown, this);
40814         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
40815         var view = this.grid.view;
40816         view.on("refresh", this.onViewChange, this);
40817         view.on("rowupdated", this.onRowUpdated, this);
40818         view.on("beforerowremoved", this.clearSelections, this);
40819         view.on("beforerowsinserted", this.clearSelections, this);
40820         if(this.grid.isEditor){
40821             this.grid.on("beforeedit", this.beforeEdit,  this);
40822         }
40823     },
40824
40825         //private
40826     beforeEdit : function(e){
40827         this.select(e.row, e.column, false, true, e.record);
40828     },
40829
40830         //private
40831     onRowUpdated : function(v, index, r){
40832         if(this.selection && this.selection.record == r){
40833             v.onCellSelect(index, this.selection.cell[1]);
40834         }
40835     },
40836
40837         //private
40838     onViewChange : function(){
40839         this.clearSelections(true);
40840     },
40841
40842         /**
40843          * Returns the currently selected cell,.
40844          * @return {Array} The selected cell (row, column) or null if none selected.
40845          */
40846     getSelectedCell : function(){
40847         return this.selection ? this.selection.cell : null;
40848     },
40849
40850     /**
40851      * Clears all selections.
40852      * @param {Boolean} true to prevent the gridview from being notified about the change.
40853      */
40854     clearSelections : function(preventNotify){
40855         var s = this.selection;
40856         if(s){
40857             if(preventNotify !== true){
40858                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
40859             }
40860             this.selection = null;
40861             this.fireEvent("selectionchange", this, null);
40862         }
40863     },
40864
40865     /**
40866      * Returns true if there is a selection.
40867      * @return {Boolean}
40868      */
40869     hasSelection : function(){
40870         return this.selection ? true : false;
40871     },
40872
40873     /** @ignore */
40874     handleMouseDown : function(e, t){
40875         var v = this.grid.getView();
40876         if(this.isLocked()){
40877             return;
40878         };
40879         var row = v.findRowIndex(t);
40880         var cell = v.findCellIndex(t);
40881         if(row !== false && cell !== false){
40882             this.select(row, cell);
40883         }
40884     },
40885
40886     /**
40887      * Selects a cell.
40888      * @param {Number} rowIndex
40889      * @param {Number} collIndex
40890      */
40891     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
40892         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
40893             this.clearSelections();
40894             r = r || this.grid.dataSource.getAt(rowIndex);
40895             this.selection = {
40896                 record : r,
40897                 cell : [rowIndex, colIndex]
40898             };
40899             if(!preventViewNotify){
40900                 var v = this.grid.getView();
40901                 v.onCellSelect(rowIndex, colIndex);
40902                 if(preventFocus !== true){
40903                     v.focusCell(rowIndex, colIndex);
40904                 }
40905             }
40906             this.fireEvent("cellselect", this, rowIndex, colIndex);
40907             this.fireEvent("selectionchange", this, this.selection);
40908         }
40909     },
40910
40911         //private
40912     isSelectable : function(rowIndex, colIndex, cm){
40913         return !cm.isHidden(colIndex);
40914     },
40915
40916     /** @ignore */
40917     handleKeyDown : function(e){
40918         //Roo.log('Cell Sel Model handleKeyDown');
40919         if(!e.isNavKeyPress()){
40920             return;
40921         }
40922         var g = this.grid, s = this.selection;
40923         if(!s){
40924             e.stopEvent();
40925             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
40926             if(cell){
40927                 this.select(cell[0], cell[1]);
40928             }
40929             return;
40930         }
40931         var sm = this;
40932         var walk = function(row, col, step){
40933             return g.walkCells(row, col, step, sm.isSelectable,  sm);
40934         };
40935         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
40936         var newCell;
40937
40938       
40939
40940         switch(k){
40941             case e.TAB:
40942                 // handled by onEditorKey
40943                 if (g.isEditor && g.editing) {
40944                     return;
40945                 }
40946                 if(e.shiftKey) {
40947                     newCell = walk(r, c-1, -1);
40948                 } else {
40949                     newCell = walk(r, c+1, 1);
40950                 }
40951                 break;
40952             
40953             case e.DOWN:
40954                newCell = walk(r+1, c, 1);
40955                 break;
40956             
40957             case e.UP:
40958                 newCell = walk(r-1, c, -1);
40959                 break;
40960             
40961             case e.RIGHT:
40962                 newCell = walk(r, c+1, 1);
40963                 break;
40964             
40965             case e.LEFT:
40966                 newCell = walk(r, c-1, -1);
40967                 break;
40968             
40969             case e.ENTER:
40970                 
40971                 if(g.isEditor && !g.editing){
40972                    g.startEditing(r, c);
40973                    e.stopEvent();
40974                    return;
40975                 }
40976                 
40977                 
40978              break;
40979         };
40980         if(newCell){
40981             this.select(newCell[0], newCell[1]);
40982             e.stopEvent();
40983             
40984         }
40985     },
40986
40987     acceptsNav : function(row, col, cm){
40988         return !cm.isHidden(col) && cm.isCellEditable(col, row);
40989     },
40990     /**
40991      * Selects a cell.
40992      * @param {Number} field (not used) - as it's normally used as a listener
40993      * @param {Number} e - event - fake it by using
40994      *
40995      * var e = Roo.EventObjectImpl.prototype;
40996      * e.keyCode = e.TAB
40997      *
40998      * 
40999      */
41000     onEditorKey : function(field, e){
41001         
41002         var k = e.getKey(),
41003             newCell,
41004             g = this.grid,
41005             ed = g.activeEditor,
41006             forward = false;
41007         ///Roo.log('onEditorKey' + k);
41008         
41009         
41010         if (this.enter_is_tab && k == e.ENTER) {
41011             k = e.TAB;
41012         }
41013         
41014         if(k == e.TAB){
41015             if(e.shiftKey){
41016                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
41017             }else{
41018                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
41019                 forward = true;
41020             }
41021             
41022             e.stopEvent();
41023             
41024         } else if(k == e.ENTER &&  !e.ctrlKey){
41025             ed.completeEdit();
41026             e.stopEvent();
41027             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
41028         
41029                 } else if(k == e.ESC){
41030             ed.cancelEdit();
41031         }
41032                 
41033         if (newCell) {
41034             var ecall = { cell : newCell, forward : forward };
41035             this.fireEvent('beforeeditnext', ecall );
41036             newCell = ecall.cell;
41037                         forward = ecall.forward;
41038         }
41039                 
41040         if(newCell){
41041             //Roo.log('next cell after edit');
41042             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
41043         } else if (forward) {
41044             // tabbed past last
41045             this.fireEvent.defer(100, this, ['tabend',this]);
41046         }
41047     }
41048 });/*
41049  * Based on:
41050  * Ext JS Library 1.1.1
41051  * Copyright(c) 2006-2007, Ext JS, LLC.
41052  *
41053  * Originally Released Under LGPL - original licence link has changed is not relivant.
41054  *
41055  * Fork - LGPL
41056  * <script type="text/javascript">
41057  */
41058  
41059 /**
41060  * @class Roo.grid.EditorGrid
41061  * @extends Roo.grid.Grid
41062  * Class for creating and editable grid.
41063  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
41064  * The container MUST have some type of size defined for the grid to fill. The container will be 
41065  * automatically set to position relative if it isn't already.
41066  * @param {Object} dataSource The data model to bind to
41067  * @param {Object} colModel The column model with info about this grid's columns
41068  */
41069 Roo.grid.EditorGrid = function(container, config){
41070     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
41071     this.getGridEl().addClass("xedit-grid");
41072
41073     if(!this.selModel){
41074         this.selModel = new Roo.grid.CellSelectionModel();
41075     }
41076
41077     this.activeEditor = null;
41078
41079         this.addEvents({
41080             /**
41081              * @event beforeedit
41082              * Fires before cell editing is triggered. The edit event object has the following properties <br />
41083              * <ul style="padding:5px;padding-left:16px;">
41084              * <li>grid - This grid</li>
41085              * <li>record - The record being edited</li>
41086              * <li>field - The field name being edited</li>
41087              * <li>value - The value for the field being edited.</li>
41088              * <li>row - The grid row index</li>
41089              * <li>column - The grid column index</li>
41090              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
41091              * </ul>
41092              * @param {Object} e An edit event (see above for description)
41093              */
41094             "beforeedit" : true,
41095             /**
41096              * @event afteredit
41097              * Fires after a cell is edited. <br />
41098              * <ul style="padding:5px;padding-left:16px;">
41099              * <li>grid - This grid</li>
41100              * <li>record - The record being edited</li>
41101              * <li>field - The field name being edited</li>
41102              * <li>value - The value being set</li>
41103              * <li>originalValue - The original value for the field, before the edit.</li>
41104              * <li>row - The grid row index</li>
41105              * <li>column - The grid column index</li>
41106              * </ul>
41107              * @param {Object} e An edit event (see above for description)
41108              */
41109             "afteredit" : true,
41110             /**
41111              * @event validateedit
41112              * Fires after a cell is edited, but before the value is set in the record. 
41113          * You can use this to modify the value being set in the field, Return false
41114              * to cancel the change. The edit event object has the following properties <br />
41115              * <ul style="padding:5px;padding-left:16px;">
41116          * <li>editor - This editor</li>
41117              * <li>grid - This grid</li>
41118              * <li>record - The record being edited</li>
41119              * <li>field - The field name being edited</li>
41120              * <li>value - The value being set</li>
41121              * <li>originalValue - The original value for the field, before the edit.</li>
41122              * <li>row - The grid row index</li>
41123              * <li>column - The grid column index</li>
41124              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
41125              * </ul>
41126              * @param {Object} e An edit event (see above for description)
41127              */
41128             "validateedit" : true
41129         });
41130     this.on("bodyscroll", this.stopEditing,  this);
41131     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
41132 };
41133
41134 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
41135     /**
41136      * @cfg {Number} clicksToEdit
41137      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
41138      */
41139     clicksToEdit: 2,
41140
41141     // private
41142     isEditor : true,
41143     // private
41144     trackMouseOver: false, // causes very odd FF errors
41145
41146     onCellDblClick : function(g, row, col){
41147         this.startEditing(row, col);
41148     },
41149
41150     onEditComplete : function(ed, value, startValue){
41151         this.editing = false;
41152         this.activeEditor = null;
41153         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
41154         var r = ed.record;
41155         var field = this.colModel.getDataIndex(ed.col);
41156         var e = {
41157             grid: this,
41158             record: r,
41159             field: field,
41160             originalValue: startValue,
41161             value: value,
41162             row: ed.row,
41163             column: ed.col,
41164             cancel:false,
41165             editor: ed
41166         };
41167         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
41168         cell.show();
41169           
41170         if(String(value) !== String(startValue)){
41171             
41172             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
41173                 r.set(field, e.value);
41174                 // if we are dealing with a combo box..
41175                 // then we also set the 'name' colum to be the displayField
41176                 if (ed.field.displayField && ed.field.name) {
41177                     r.set(ed.field.name, ed.field.el.dom.value);
41178                 }
41179                 
41180                 delete e.cancel; //?? why!!!
41181                 this.fireEvent("afteredit", e);
41182             }
41183         } else {
41184             this.fireEvent("afteredit", e); // always fire it!
41185         }
41186         this.view.focusCell(ed.row, ed.col);
41187     },
41188
41189     /**
41190      * Starts editing the specified for the specified row/column
41191      * @param {Number} rowIndex
41192      * @param {Number} colIndex
41193      */
41194     startEditing : function(row, col){
41195         this.stopEditing();
41196         if(this.colModel.isCellEditable(col, row)){
41197             this.view.ensureVisible(row, col, true);
41198           
41199             var r = this.dataSource.getAt(row);
41200             var field = this.colModel.getDataIndex(col);
41201             var cell = Roo.get(this.view.getCell(row,col));
41202             var e = {
41203                 grid: this,
41204                 record: r,
41205                 field: field,
41206                 value: r.data[field],
41207                 row: row,
41208                 column: col,
41209                 cancel:false 
41210             };
41211             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
41212                 this.editing = true;
41213                 var ed = this.colModel.getCellEditor(col, row);
41214                 
41215                 if (!ed) {
41216                     return;
41217                 }
41218                 if(!ed.rendered){
41219                     ed.render(ed.parentEl || document.body);
41220                 }
41221                 ed.field.reset();
41222                
41223                 cell.hide();
41224                 
41225                 (function(){ // complex but required for focus issues in safari, ie and opera
41226                     ed.row = row;
41227                     ed.col = col;
41228                     ed.record = r;
41229                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
41230                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
41231                     this.activeEditor = ed;
41232                     var v = r.data[field];
41233                     ed.startEdit(this.view.getCell(row, col), v);
41234                     // combo's with 'displayField and name set
41235                     if (ed.field.displayField && ed.field.name) {
41236                         ed.field.el.dom.value = r.data[ed.field.name];
41237                     }
41238                     
41239                     
41240                 }).defer(50, this);
41241             }
41242         }
41243     },
41244         
41245     /**
41246      * Stops any active editing
41247      */
41248     stopEditing : function(){
41249         if(this.activeEditor){
41250             this.activeEditor.completeEdit();
41251         }
41252         this.activeEditor = null;
41253     },
41254         
41255          /**
41256      * Called to get grid's drag proxy text, by default returns this.ddText.
41257      * @return {String}
41258      */
41259     getDragDropText : function(){
41260         var count = this.selModel.getSelectedCell() ? 1 : 0;
41261         return String.format(this.ddText, count, count == 1 ? '' : 's');
41262     }
41263         
41264 });/*
41265  * Based on:
41266  * Ext JS Library 1.1.1
41267  * Copyright(c) 2006-2007, Ext JS, LLC.
41268  *
41269  * Originally Released Under LGPL - original licence link has changed is not relivant.
41270  *
41271  * Fork - LGPL
41272  * <script type="text/javascript">
41273  */
41274
41275 // private - not really -- you end up using it !
41276 // This is a support class used internally by the Grid components
41277
41278 /**
41279  * @class Roo.grid.GridEditor
41280  * @extends Roo.Editor
41281  * Class for creating and editable grid elements.
41282  * @param {Object} config any settings (must include field)
41283  */
41284 Roo.grid.GridEditor = function(field, config){
41285     if (!config && field.field) {
41286         config = field;
41287         field = Roo.factory(config.field, Roo.form);
41288     }
41289     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
41290     field.monitorTab = false;
41291 };
41292
41293 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
41294     
41295     /**
41296      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
41297      */
41298     
41299     alignment: "tl-tl",
41300     autoSize: "width",
41301     hideEl : false,
41302     cls: "x-small-editor x-grid-editor",
41303     shim:false,
41304     shadow:"frame"
41305 });/*
41306  * Based on:
41307  * Ext JS Library 1.1.1
41308  * Copyright(c) 2006-2007, Ext JS, LLC.
41309  *
41310  * Originally Released Under LGPL - original licence link has changed is not relivant.
41311  *
41312  * Fork - LGPL
41313  * <script type="text/javascript">
41314  */
41315   
41316
41317   
41318 Roo.grid.PropertyRecord = Roo.data.Record.create([
41319     {name:'name',type:'string'},  'value'
41320 ]);
41321
41322
41323 Roo.grid.PropertyStore = function(grid, source){
41324     this.grid = grid;
41325     this.store = new Roo.data.Store({
41326         recordType : Roo.grid.PropertyRecord
41327     });
41328     this.store.on('update', this.onUpdate,  this);
41329     if(source){
41330         this.setSource(source);
41331     }
41332     Roo.grid.PropertyStore.superclass.constructor.call(this);
41333 };
41334
41335
41336
41337 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
41338     setSource : function(o){
41339         this.source = o;
41340         this.store.removeAll();
41341         var data = [];
41342         for(var k in o){
41343             if(this.isEditableValue(o[k])){
41344                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
41345             }
41346         }
41347         this.store.loadRecords({records: data}, {}, true);
41348     },
41349
41350     onUpdate : function(ds, record, type){
41351         if(type == Roo.data.Record.EDIT){
41352             var v = record.data['value'];
41353             var oldValue = record.modified['value'];
41354             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
41355                 this.source[record.id] = v;
41356                 record.commit();
41357                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
41358             }else{
41359                 record.reject();
41360             }
41361         }
41362     },
41363
41364     getProperty : function(row){
41365        return this.store.getAt(row);
41366     },
41367
41368     isEditableValue: function(val){
41369         if(val && val instanceof Date){
41370             return true;
41371         }else if(typeof val == 'object' || typeof val == 'function'){
41372             return false;
41373         }
41374         return true;
41375     },
41376
41377     setValue : function(prop, value){
41378         this.source[prop] = value;
41379         this.store.getById(prop).set('value', value);
41380     },
41381
41382     getSource : function(){
41383         return this.source;
41384     }
41385 });
41386
41387 Roo.grid.PropertyColumnModel = function(grid, store){
41388     this.grid = grid;
41389     var g = Roo.grid;
41390     g.PropertyColumnModel.superclass.constructor.call(this, [
41391         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
41392         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
41393     ]);
41394     this.store = store;
41395     this.bselect = Roo.DomHelper.append(document.body, {
41396         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
41397             {tag: 'option', value: 'true', html: 'true'},
41398             {tag: 'option', value: 'false', html: 'false'}
41399         ]
41400     });
41401     Roo.id(this.bselect);
41402     var f = Roo.form;
41403     this.editors = {
41404         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
41405         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
41406         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
41407         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
41408         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
41409     };
41410     this.renderCellDelegate = this.renderCell.createDelegate(this);
41411     this.renderPropDelegate = this.renderProp.createDelegate(this);
41412 };
41413
41414 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
41415     
41416     
41417     nameText : 'Name',
41418     valueText : 'Value',
41419     
41420     dateFormat : 'm/j/Y',
41421     
41422     
41423     renderDate : function(dateVal){
41424         return dateVal.dateFormat(this.dateFormat);
41425     },
41426
41427     renderBool : function(bVal){
41428         return bVal ? 'true' : 'false';
41429     },
41430
41431     isCellEditable : function(colIndex, rowIndex){
41432         return colIndex == 1;
41433     },
41434
41435     getRenderer : function(col){
41436         return col == 1 ?
41437             this.renderCellDelegate : this.renderPropDelegate;
41438     },
41439
41440     renderProp : function(v){
41441         return this.getPropertyName(v);
41442     },
41443
41444     renderCell : function(val){
41445         var rv = val;
41446         if(val instanceof Date){
41447             rv = this.renderDate(val);
41448         }else if(typeof val == 'boolean'){
41449             rv = this.renderBool(val);
41450         }
41451         return Roo.util.Format.htmlEncode(rv);
41452     },
41453
41454     getPropertyName : function(name){
41455         var pn = this.grid.propertyNames;
41456         return pn && pn[name] ? pn[name] : name;
41457     },
41458
41459     getCellEditor : function(colIndex, rowIndex){
41460         var p = this.store.getProperty(rowIndex);
41461         var n = p.data['name'], val = p.data['value'];
41462         
41463         if(typeof(this.grid.customEditors[n]) == 'string'){
41464             return this.editors[this.grid.customEditors[n]];
41465         }
41466         if(typeof(this.grid.customEditors[n]) != 'undefined'){
41467             return this.grid.customEditors[n];
41468         }
41469         if(val instanceof Date){
41470             return this.editors['date'];
41471         }else if(typeof val == 'number'){
41472             return this.editors['number'];
41473         }else if(typeof val == 'boolean'){
41474             return this.editors['boolean'];
41475         }else{
41476             return this.editors['string'];
41477         }
41478     }
41479 });
41480
41481 /**
41482  * @class Roo.grid.PropertyGrid
41483  * @extends Roo.grid.EditorGrid
41484  * This class represents the  interface of a component based property grid control.
41485  * <br><br>Usage:<pre><code>
41486  var grid = new Roo.grid.PropertyGrid("my-container-id", {
41487       
41488  });
41489  // set any options
41490  grid.render();
41491  * </code></pre>
41492   
41493  * @constructor
41494  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
41495  * The container MUST have some type of size defined for the grid to fill. The container will be
41496  * automatically set to position relative if it isn't already.
41497  * @param {Object} config A config object that sets properties on this grid.
41498  */
41499 Roo.grid.PropertyGrid = function(container, config){
41500     config = config || {};
41501     var store = new Roo.grid.PropertyStore(this);
41502     this.store = store;
41503     var cm = new Roo.grid.PropertyColumnModel(this, store);
41504     store.store.sort('name', 'ASC');
41505     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
41506         ds: store.store,
41507         cm: cm,
41508         enableColLock:false,
41509         enableColumnMove:false,
41510         stripeRows:false,
41511         trackMouseOver: false,
41512         clicksToEdit:1
41513     }, config));
41514     this.getGridEl().addClass('x-props-grid');
41515     this.lastEditRow = null;
41516     this.on('columnresize', this.onColumnResize, this);
41517     this.addEvents({
41518          /**
41519              * @event beforepropertychange
41520              * Fires before a property changes (return false to stop?)
41521              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
41522              * @param {String} id Record Id
41523              * @param {String} newval New Value
41524          * @param {String} oldval Old Value
41525              */
41526         "beforepropertychange": true,
41527         /**
41528              * @event propertychange
41529              * Fires after a property changes
41530              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
41531              * @param {String} id Record Id
41532              * @param {String} newval New Value
41533          * @param {String} oldval Old Value
41534              */
41535         "propertychange": true
41536     });
41537     this.customEditors = this.customEditors || {};
41538 };
41539 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
41540     
41541      /**
41542      * @cfg {Object} customEditors map of colnames=> custom editors.
41543      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
41544      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
41545      * false disables editing of the field.
41546          */
41547     
41548       /**
41549      * @cfg {Object} propertyNames map of property Names to their displayed value
41550          */
41551     
41552     render : function(){
41553         Roo.grid.PropertyGrid.superclass.render.call(this);
41554         this.autoSize.defer(100, this);
41555     },
41556
41557     autoSize : function(){
41558         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
41559         if(this.view){
41560             this.view.fitColumns();
41561         }
41562     },
41563
41564     onColumnResize : function(){
41565         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
41566         this.autoSize();
41567     },
41568     /**
41569      * Sets the data for the Grid
41570      * accepts a Key => Value object of all the elements avaiable.
41571      * @param {Object} data  to appear in grid.
41572      */
41573     setSource : function(source){
41574         this.store.setSource(source);
41575         //this.autoSize();
41576     },
41577     /**
41578      * Gets all the data from the grid.
41579      * @return {Object} data  data stored in grid
41580      */
41581     getSource : function(){
41582         return this.store.getSource();
41583     }
41584 });/*
41585   
41586  * Licence LGPL
41587  
41588  */
41589  
41590 /**
41591  * @class Roo.grid.Calendar
41592  * @extends Roo.grid.Grid
41593  * This class extends the Grid to provide a calendar widget
41594  * <br><br>Usage:<pre><code>
41595  var grid = new Roo.grid.Calendar("my-container-id", {
41596      ds: myDataStore,
41597      cm: myColModel,
41598      selModel: mySelectionModel,
41599      autoSizeColumns: true,
41600      monitorWindowResize: false,
41601      trackMouseOver: true
41602      eventstore : real data store..
41603  });
41604  // set any options
41605  grid.render();
41606   
41607   * @constructor
41608  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
41609  * The container MUST have some type of size defined for the grid to fill. The container will be
41610  * automatically set to position relative if it isn't already.
41611  * @param {Object} config A config object that sets properties on this grid.
41612  */
41613 Roo.grid.Calendar = function(container, config){
41614         // initialize the container
41615         this.container = Roo.get(container);
41616         this.container.update("");
41617         this.container.setStyle("overflow", "hidden");
41618     this.container.addClass('x-grid-container');
41619
41620     this.id = this.container.id;
41621
41622     Roo.apply(this, config);
41623     // check and correct shorthanded configs
41624     
41625     var rows = [];
41626     var d =1;
41627     for (var r = 0;r < 6;r++) {
41628         
41629         rows[r]=[];
41630         for (var c =0;c < 7;c++) {
41631             rows[r][c]= '';
41632         }
41633     }
41634     if (this.eventStore) {
41635         this.eventStore= Roo.factory(this.eventStore, Roo.data);
41636         this.eventStore.on('load',this.onLoad, this);
41637         this.eventStore.on('beforeload',this.clearEvents, this);
41638          
41639     }
41640     
41641     this.dataSource = new Roo.data.Store({
41642             proxy: new Roo.data.MemoryProxy(rows),
41643             reader: new Roo.data.ArrayReader({}, [
41644                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
41645     });
41646
41647     this.dataSource.load();
41648     this.ds = this.dataSource;
41649     this.ds.xmodule = this.xmodule || false;
41650     
41651     
41652     var cellRender = function(v,x,r)
41653     {
41654         return String.format(
41655             '<div class="fc-day  fc-widget-content"><div>' +
41656                 '<div class="fc-event-container"></div>' +
41657                 '<div class="fc-day-number">{0}</div>'+
41658                 
41659                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
41660             '</div></div>', v);
41661     
41662     }
41663     
41664     
41665     this.colModel = new Roo.grid.ColumnModel( [
41666         {
41667             xtype: 'ColumnModel',
41668             xns: Roo.grid,
41669             dataIndex : 'weekday0',
41670             header : 'Sunday',
41671             renderer : cellRender
41672         },
41673         {
41674             xtype: 'ColumnModel',
41675             xns: Roo.grid,
41676             dataIndex : 'weekday1',
41677             header : 'Monday',
41678             renderer : cellRender
41679         },
41680         {
41681             xtype: 'ColumnModel',
41682             xns: Roo.grid,
41683             dataIndex : 'weekday2',
41684             header : 'Tuesday',
41685             renderer : cellRender
41686         },
41687         {
41688             xtype: 'ColumnModel',
41689             xns: Roo.grid,
41690             dataIndex : 'weekday3',
41691             header : 'Wednesday',
41692             renderer : cellRender
41693         },
41694         {
41695             xtype: 'ColumnModel',
41696             xns: Roo.grid,
41697             dataIndex : 'weekday4',
41698             header : 'Thursday',
41699             renderer : cellRender
41700         },
41701         {
41702             xtype: 'ColumnModel',
41703             xns: Roo.grid,
41704             dataIndex : 'weekday5',
41705             header : 'Friday',
41706             renderer : cellRender
41707         },
41708         {
41709             xtype: 'ColumnModel',
41710             xns: Roo.grid,
41711             dataIndex : 'weekday6',
41712             header : 'Saturday',
41713             renderer : cellRender
41714         }
41715     ]);
41716     this.cm = this.colModel;
41717     this.cm.xmodule = this.xmodule || false;
41718  
41719         
41720           
41721     //this.selModel = new Roo.grid.CellSelectionModel();
41722     //this.sm = this.selModel;
41723     //this.selModel.init(this);
41724     
41725     
41726     if(this.width){
41727         this.container.setWidth(this.width);
41728     }
41729
41730     if(this.height){
41731         this.container.setHeight(this.height);
41732     }
41733     /** @private */
41734         this.addEvents({
41735         // raw events
41736         /**
41737          * @event click
41738          * The raw click event for the entire grid.
41739          * @param {Roo.EventObject} e
41740          */
41741         "click" : true,
41742         /**
41743          * @event dblclick
41744          * The raw dblclick event for the entire grid.
41745          * @param {Roo.EventObject} e
41746          */
41747         "dblclick" : true,
41748         /**
41749          * @event contextmenu
41750          * The raw contextmenu event for the entire grid.
41751          * @param {Roo.EventObject} e
41752          */
41753         "contextmenu" : true,
41754         /**
41755          * @event mousedown
41756          * The raw mousedown event for the entire grid.
41757          * @param {Roo.EventObject} e
41758          */
41759         "mousedown" : true,
41760         /**
41761          * @event mouseup
41762          * The raw mouseup event for the entire grid.
41763          * @param {Roo.EventObject} e
41764          */
41765         "mouseup" : true,
41766         /**
41767          * @event mouseover
41768          * The raw mouseover event for the entire grid.
41769          * @param {Roo.EventObject} e
41770          */
41771         "mouseover" : true,
41772         /**
41773          * @event mouseout
41774          * The raw mouseout event for the entire grid.
41775          * @param {Roo.EventObject} e
41776          */
41777         "mouseout" : true,
41778         /**
41779          * @event keypress
41780          * The raw keypress event for the entire grid.
41781          * @param {Roo.EventObject} e
41782          */
41783         "keypress" : true,
41784         /**
41785          * @event keydown
41786          * The raw keydown event for the entire grid.
41787          * @param {Roo.EventObject} e
41788          */
41789         "keydown" : true,
41790
41791         // custom events
41792
41793         /**
41794          * @event cellclick
41795          * Fires when a cell is clicked
41796          * @param {Grid} this
41797          * @param {Number} rowIndex
41798          * @param {Number} columnIndex
41799          * @param {Roo.EventObject} e
41800          */
41801         "cellclick" : true,
41802         /**
41803          * @event celldblclick
41804          * Fires when a cell is double clicked
41805          * @param {Grid} this
41806          * @param {Number} rowIndex
41807          * @param {Number} columnIndex
41808          * @param {Roo.EventObject} e
41809          */
41810         "celldblclick" : true,
41811         /**
41812          * @event rowclick
41813          * Fires when a row is clicked
41814          * @param {Grid} this
41815          * @param {Number} rowIndex
41816          * @param {Roo.EventObject} e
41817          */
41818         "rowclick" : true,
41819         /**
41820          * @event rowdblclick
41821          * Fires when a row is double clicked
41822          * @param {Grid} this
41823          * @param {Number} rowIndex
41824          * @param {Roo.EventObject} e
41825          */
41826         "rowdblclick" : true,
41827         /**
41828          * @event headerclick
41829          * Fires when a header is clicked
41830          * @param {Grid} this
41831          * @param {Number} columnIndex
41832          * @param {Roo.EventObject} e
41833          */
41834         "headerclick" : true,
41835         /**
41836          * @event headerdblclick
41837          * Fires when a header cell is double clicked
41838          * @param {Grid} this
41839          * @param {Number} columnIndex
41840          * @param {Roo.EventObject} e
41841          */
41842         "headerdblclick" : true,
41843         /**
41844          * @event rowcontextmenu
41845          * Fires when a row is right clicked
41846          * @param {Grid} this
41847          * @param {Number} rowIndex
41848          * @param {Roo.EventObject} e
41849          */
41850         "rowcontextmenu" : true,
41851         /**
41852          * @event cellcontextmenu
41853          * Fires when a cell is right clicked
41854          * @param {Grid} this
41855          * @param {Number} rowIndex
41856          * @param {Number} cellIndex
41857          * @param {Roo.EventObject} e
41858          */
41859          "cellcontextmenu" : true,
41860         /**
41861          * @event headercontextmenu
41862          * Fires when a header is right clicked
41863          * @param {Grid} this
41864          * @param {Number} columnIndex
41865          * @param {Roo.EventObject} e
41866          */
41867         "headercontextmenu" : true,
41868         /**
41869          * @event bodyscroll
41870          * Fires when the body element is scrolled
41871          * @param {Number} scrollLeft
41872          * @param {Number} scrollTop
41873          */
41874         "bodyscroll" : true,
41875         /**
41876          * @event columnresize
41877          * Fires when the user resizes a column
41878          * @param {Number} columnIndex
41879          * @param {Number} newSize
41880          */
41881         "columnresize" : true,
41882         /**
41883          * @event columnmove
41884          * Fires when the user moves a column
41885          * @param {Number} oldIndex
41886          * @param {Number} newIndex
41887          */
41888         "columnmove" : true,
41889         /**
41890          * @event startdrag
41891          * Fires when row(s) start being dragged
41892          * @param {Grid} this
41893          * @param {Roo.GridDD} dd The drag drop object
41894          * @param {event} e The raw browser event
41895          */
41896         "startdrag" : true,
41897         /**
41898          * @event enddrag
41899          * Fires when a drag operation is complete
41900          * @param {Grid} this
41901          * @param {Roo.GridDD} dd The drag drop object
41902          * @param {event} e The raw browser event
41903          */
41904         "enddrag" : true,
41905         /**
41906          * @event dragdrop
41907          * Fires when dragged row(s) are dropped on a valid DD target
41908          * @param {Grid} this
41909          * @param {Roo.GridDD} dd The drag drop object
41910          * @param {String} targetId The target drag drop object
41911          * @param {event} e The raw browser event
41912          */
41913         "dragdrop" : true,
41914         /**
41915          * @event dragover
41916          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
41917          * @param {Grid} this
41918          * @param {Roo.GridDD} dd The drag drop object
41919          * @param {String} targetId The target drag drop object
41920          * @param {event} e The raw browser event
41921          */
41922         "dragover" : true,
41923         /**
41924          * @event dragenter
41925          *  Fires when the dragged row(s) first cross another DD target while being dragged
41926          * @param {Grid} this
41927          * @param {Roo.GridDD} dd The drag drop object
41928          * @param {String} targetId The target drag drop object
41929          * @param {event} e The raw browser event
41930          */
41931         "dragenter" : true,
41932         /**
41933          * @event dragout
41934          * Fires when the dragged row(s) leave another DD target while being dragged
41935          * @param {Grid} this
41936          * @param {Roo.GridDD} dd The drag drop object
41937          * @param {String} targetId The target drag drop object
41938          * @param {event} e The raw browser event
41939          */
41940         "dragout" : true,
41941         /**
41942          * @event rowclass
41943          * Fires when a row is rendered, so you can change add a style to it.
41944          * @param {GridView} gridview   The grid view
41945          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
41946          */
41947         'rowclass' : true,
41948
41949         /**
41950          * @event render
41951          * Fires when the grid is rendered
41952          * @param {Grid} grid
41953          */
41954         'render' : true,
41955             /**
41956              * @event select
41957              * Fires when a date is selected
41958              * @param {DatePicker} this
41959              * @param {Date} date The selected date
41960              */
41961         'select': true,
41962         /**
41963              * @event monthchange
41964              * Fires when the displayed month changes 
41965              * @param {DatePicker} this
41966              * @param {Date} date The selected month
41967              */
41968         'monthchange': true,
41969         /**
41970              * @event evententer
41971              * Fires when mouse over an event
41972              * @param {Calendar} this
41973              * @param {event} Event
41974              */
41975         'evententer': true,
41976         /**
41977              * @event eventleave
41978              * Fires when the mouse leaves an
41979              * @param {Calendar} this
41980              * @param {event}
41981              */
41982         'eventleave': true,
41983         /**
41984              * @event eventclick
41985              * Fires when the mouse click an
41986              * @param {Calendar} this
41987              * @param {event}
41988              */
41989         'eventclick': true,
41990         /**
41991              * @event eventrender
41992              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
41993              * @param {Calendar} this
41994              * @param {data} data to be modified
41995              */
41996         'eventrender': true
41997         
41998     });
41999
42000     Roo.grid.Grid.superclass.constructor.call(this);
42001     this.on('render', function() {
42002         this.view.el.addClass('x-grid-cal'); 
42003         
42004         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
42005
42006     },this);
42007     
42008     if (!Roo.grid.Calendar.style) {
42009         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
42010             
42011             
42012             '.x-grid-cal .x-grid-col' :  {
42013                 height: 'auto !important',
42014                 'vertical-align': 'top'
42015             },
42016             '.x-grid-cal  .fc-event-hori' : {
42017                 height: '14px'
42018             }
42019              
42020             
42021         }, Roo.id());
42022     }
42023
42024     
42025     
42026 };
42027 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
42028     /**
42029      * @cfg {Store} eventStore The store that loads events.
42030      */
42031     eventStore : 25,
42032
42033      
42034     activeDate : false,
42035     startDay : 0,
42036     autoWidth : true,
42037     monitorWindowResize : false,
42038
42039     
42040     resizeColumns : function() {
42041         var col = (this.view.el.getWidth() / 7) - 3;
42042         // loop through cols, and setWidth
42043         for(var i =0 ; i < 7 ; i++){
42044             this.cm.setColumnWidth(i, col);
42045         }
42046     },
42047      setDate :function(date) {
42048         
42049         Roo.log('setDate?');
42050         
42051         this.resizeColumns();
42052         var vd = this.activeDate;
42053         this.activeDate = date;
42054 //        if(vd && this.el){
42055 //            var t = date.getTime();
42056 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
42057 //                Roo.log('using add remove');
42058 //                
42059 //                this.fireEvent('monthchange', this, date);
42060 //                
42061 //                this.cells.removeClass("fc-state-highlight");
42062 //                this.cells.each(function(c){
42063 //                   if(c.dateValue == t){
42064 //                       c.addClass("fc-state-highlight");
42065 //                       setTimeout(function(){
42066 //                            try{c.dom.firstChild.focus();}catch(e){}
42067 //                       }, 50);
42068 //                       return false;
42069 //                   }
42070 //                   return true;
42071 //                });
42072 //                return;
42073 //            }
42074 //        }
42075         
42076         var days = date.getDaysInMonth();
42077         
42078         var firstOfMonth = date.getFirstDateOfMonth();
42079         var startingPos = firstOfMonth.getDay()-this.startDay;
42080         
42081         if(startingPos < this.startDay){
42082             startingPos += 7;
42083         }
42084         
42085         var pm = date.add(Date.MONTH, -1);
42086         var prevStart = pm.getDaysInMonth()-startingPos;
42087 //        
42088         
42089         
42090         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
42091         
42092         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
42093         //this.cells.addClassOnOver('fc-state-hover');
42094         
42095         var cells = this.cells.elements;
42096         var textEls = this.textNodes;
42097         
42098         //Roo.each(cells, function(cell){
42099         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
42100         //});
42101         
42102         days += startingPos;
42103
42104         // convert everything to numbers so it's fast
42105         var day = 86400000;
42106         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
42107         //Roo.log(d);
42108         //Roo.log(pm);
42109         //Roo.log(prevStart);
42110         
42111         var today = new Date().clearTime().getTime();
42112         var sel = date.clearTime().getTime();
42113         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
42114         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
42115         var ddMatch = this.disabledDatesRE;
42116         var ddText = this.disabledDatesText;
42117         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
42118         var ddaysText = this.disabledDaysText;
42119         var format = this.format;
42120         
42121         var setCellClass = function(cal, cell){
42122             
42123             //Roo.log('set Cell Class');
42124             cell.title = "";
42125             var t = d.getTime();
42126             
42127             //Roo.log(d);
42128             
42129             
42130             cell.dateValue = t;
42131             if(t == today){
42132                 cell.className += " fc-today";
42133                 cell.className += " fc-state-highlight";
42134                 cell.title = cal.todayText;
42135             }
42136             if(t == sel){
42137                 // disable highlight in other month..
42138                 cell.className += " fc-state-highlight";
42139                 
42140             }
42141             // disabling
42142             if(t < min) {
42143                 //cell.className = " fc-state-disabled";
42144                 cell.title = cal.minText;
42145                 return;
42146             }
42147             if(t > max) {
42148                 //cell.className = " fc-state-disabled";
42149                 cell.title = cal.maxText;
42150                 return;
42151             }
42152             if(ddays){
42153                 if(ddays.indexOf(d.getDay()) != -1){
42154                     // cell.title = ddaysText;
42155                    // cell.className = " fc-state-disabled";
42156                 }
42157             }
42158             if(ddMatch && format){
42159                 var fvalue = d.dateFormat(format);
42160                 if(ddMatch.test(fvalue)){
42161                     cell.title = ddText.replace("%0", fvalue);
42162                    cell.className = " fc-state-disabled";
42163                 }
42164             }
42165             
42166             if (!cell.initialClassName) {
42167                 cell.initialClassName = cell.dom.className;
42168             }
42169             
42170             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
42171         };
42172
42173         var i = 0;
42174         
42175         for(; i < startingPos; i++) {
42176             cells[i].dayName =  (++prevStart);
42177             Roo.log(textEls[i]);
42178             d.setDate(d.getDate()+1);
42179             
42180             //cells[i].className = "fc-past fc-other-month";
42181             setCellClass(this, cells[i]);
42182         }
42183         
42184         var intDay = 0;
42185         
42186         for(; i < days; i++){
42187             intDay = i - startingPos + 1;
42188             cells[i].dayName =  (intDay);
42189             d.setDate(d.getDate()+1);
42190             
42191             cells[i].className = ''; // "x-date-active";
42192             setCellClass(this, cells[i]);
42193         }
42194         var extraDays = 0;
42195         
42196         for(; i < 42; i++) {
42197             //textEls[i].innerHTML = (++extraDays);
42198             
42199             d.setDate(d.getDate()+1);
42200             cells[i].dayName = (++extraDays);
42201             cells[i].className = "fc-future fc-other-month";
42202             setCellClass(this, cells[i]);
42203         }
42204         
42205         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
42206         
42207         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
42208         
42209         // this will cause all the cells to mis
42210         var rows= [];
42211         var i =0;
42212         for (var r = 0;r < 6;r++) {
42213             for (var c =0;c < 7;c++) {
42214                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
42215             }    
42216         }
42217         
42218         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
42219         for(i=0;i<cells.length;i++) {
42220             
42221             this.cells.elements[i].dayName = cells[i].dayName ;
42222             this.cells.elements[i].className = cells[i].className;
42223             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
42224             this.cells.elements[i].title = cells[i].title ;
42225             this.cells.elements[i].dateValue = cells[i].dateValue ;
42226         }
42227         
42228         
42229         
42230         
42231         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
42232         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
42233         
42234         ////if(totalRows != 6){
42235             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
42236            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
42237        // }
42238         
42239         this.fireEvent('monthchange', this, date);
42240         
42241         
42242     },
42243  /**
42244      * Returns the grid's SelectionModel.
42245      * @return {SelectionModel}
42246      */
42247     getSelectionModel : function(){
42248         if(!this.selModel){
42249             this.selModel = new Roo.grid.CellSelectionModel();
42250         }
42251         return this.selModel;
42252     },
42253
42254     load: function() {
42255         this.eventStore.load()
42256         
42257         
42258         
42259     },
42260     
42261     findCell : function(dt) {
42262         dt = dt.clearTime().getTime();
42263         var ret = false;
42264         this.cells.each(function(c){
42265             //Roo.log("check " +c.dateValue + '?=' + dt);
42266             if(c.dateValue == dt){
42267                 ret = c;
42268                 return false;
42269             }
42270             return true;
42271         });
42272         
42273         return ret;
42274     },
42275     
42276     findCells : function(rec) {
42277         var s = rec.data.start_dt.clone().clearTime().getTime();
42278        // Roo.log(s);
42279         var e= rec.data.end_dt.clone().clearTime().getTime();
42280        // Roo.log(e);
42281         var ret = [];
42282         this.cells.each(function(c){
42283              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
42284             
42285             if(c.dateValue > e){
42286                 return ;
42287             }
42288             if(c.dateValue < s){
42289                 return ;
42290             }
42291             ret.push(c);
42292         });
42293         
42294         return ret;    
42295     },
42296     
42297     findBestRow: function(cells)
42298     {
42299         var ret = 0;
42300         
42301         for (var i =0 ; i < cells.length;i++) {
42302             ret  = Math.max(cells[i].rows || 0,ret);
42303         }
42304         return ret;
42305         
42306     },
42307     
42308     
42309     addItem : function(rec)
42310     {
42311         // look for vertical location slot in
42312         var cells = this.findCells(rec);
42313         
42314         rec.row = this.findBestRow(cells);
42315         
42316         // work out the location.
42317         
42318         var crow = false;
42319         var rows = [];
42320         for(var i =0; i < cells.length; i++) {
42321             if (!crow) {
42322                 crow = {
42323                     start : cells[i],
42324                     end :  cells[i]
42325                 };
42326                 continue;
42327             }
42328             if (crow.start.getY() == cells[i].getY()) {
42329                 // on same row.
42330                 crow.end = cells[i];
42331                 continue;
42332             }
42333             // different row.
42334             rows.push(crow);
42335             crow = {
42336                 start: cells[i],
42337                 end : cells[i]
42338             };
42339             
42340         }
42341         
42342         rows.push(crow);
42343         rec.els = [];
42344         rec.rows = rows;
42345         rec.cells = cells;
42346         for (var i = 0; i < cells.length;i++) {
42347             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
42348             
42349         }
42350         
42351         
42352     },
42353     
42354     clearEvents: function() {
42355         
42356         if (!this.eventStore.getCount()) {
42357             return;
42358         }
42359         // reset number of rows in cells.
42360         Roo.each(this.cells.elements, function(c){
42361             c.rows = 0;
42362         });
42363         
42364         this.eventStore.each(function(e) {
42365             this.clearEvent(e);
42366         },this);
42367         
42368     },
42369     
42370     clearEvent : function(ev)
42371     {
42372         if (ev.els) {
42373             Roo.each(ev.els, function(el) {
42374                 el.un('mouseenter' ,this.onEventEnter, this);
42375                 el.un('mouseleave' ,this.onEventLeave, this);
42376                 el.remove();
42377             },this);
42378             ev.els = [];
42379         }
42380     },
42381     
42382     
42383     renderEvent : function(ev,ctr) {
42384         if (!ctr) {
42385              ctr = this.view.el.select('.fc-event-container',true).first();
42386         }
42387         
42388          
42389         this.clearEvent(ev);
42390             //code
42391        
42392         
42393         
42394         ev.els = [];
42395         var cells = ev.cells;
42396         var rows = ev.rows;
42397         this.fireEvent('eventrender', this, ev);
42398         
42399         for(var i =0; i < rows.length; i++) {
42400             
42401             cls = '';
42402             if (i == 0) {
42403                 cls += ' fc-event-start';
42404             }
42405             if ((i+1) == rows.length) {
42406                 cls += ' fc-event-end';
42407             }
42408             
42409             //Roo.log(ev.data);
42410             // how many rows should it span..
42411             var cg = this.eventTmpl.append(ctr,Roo.apply({
42412                 fccls : cls
42413                 
42414             }, ev.data) , true);
42415             
42416             
42417             cg.on('mouseenter' ,this.onEventEnter, this, ev);
42418             cg.on('mouseleave' ,this.onEventLeave, this, ev);
42419             cg.on('click', this.onEventClick, this, ev);
42420             
42421             ev.els.push(cg);
42422             
42423             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
42424             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
42425             //Roo.log(cg);
42426              
42427             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
42428             cg.setWidth(ebox.right - sbox.x -2);
42429         }
42430     },
42431     
42432     renderEvents: function()
42433     {   
42434         // first make sure there is enough space..
42435         
42436         if (!this.eventTmpl) {
42437             this.eventTmpl = new Roo.Template(
42438                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
42439                     '<div class="fc-event-inner">' +
42440                         '<span class="fc-event-time">{time}</span>' +
42441                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
42442                     '</div>' +
42443                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
42444                 '</div>'
42445             );
42446                 
42447         }
42448                
42449         
42450         
42451         this.cells.each(function(c) {
42452             //Roo.log(c.select('.fc-day-content div',true).first());
42453             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
42454         });
42455         
42456         var ctr = this.view.el.select('.fc-event-container',true).first();
42457         
42458         var cls;
42459         this.eventStore.each(function(ev){
42460             
42461             this.renderEvent(ev);
42462              
42463              
42464         }, this);
42465         this.view.layout();
42466         
42467     },
42468     
42469     onEventEnter: function (e, el,event,d) {
42470         this.fireEvent('evententer', this, el, event);
42471     },
42472     
42473     onEventLeave: function (e, el,event,d) {
42474         this.fireEvent('eventleave', this, el, event);
42475     },
42476     
42477     onEventClick: function (e, el,event,d) {
42478         this.fireEvent('eventclick', this, el, event);
42479     },
42480     
42481     onMonthChange: function () {
42482         this.store.load();
42483     },
42484     
42485     onLoad: function () {
42486         
42487         //Roo.log('calendar onload');
42488 //         
42489         if(this.eventStore.getCount() > 0){
42490             
42491            
42492             
42493             this.eventStore.each(function(d){
42494                 
42495                 
42496                 // FIXME..
42497                 var add =   d.data;
42498                 if (typeof(add.end_dt) == 'undefined')  {
42499                     Roo.log("Missing End time in calendar data: ");
42500                     Roo.log(d);
42501                     return;
42502                 }
42503                 if (typeof(add.start_dt) == 'undefined')  {
42504                     Roo.log("Missing Start time in calendar data: ");
42505                     Roo.log(d);
42506                     return;
42507                 }
42508                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
42509                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
42510                 add.id = add.id || d.id;
42511                 add.title = add.title || '??';
42512                 
42513                 this.addItem(d);
42514                 
42515              
42516             },this);
42517         }
42518         
42519         this.renderEvents();
42520     }
42521     
42522
42523 });
42524 /*
42525  grid : {
42526                 xtype: 'Grid',
42527                 xns: Roo.grid,
42528                 listeners : {
42529                     render : function ()
42530                     {
42531                         _this.grid = this;
42532                         
42533                         if (!this.view.el.hasClass('course-timesheet')) {
42534                             this.view.el.addClass('course-timesheet');
42535                         }
42536                         if (this.tsStyle) {
42537                             this.ds.load({});
42538                             return; 
42539                         }
42540                         Roo.log('width');
42541                         Roo.log(_this.grid.view.el.getWidth());
42542                         
42543                         
42544                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
42545                             '.course-timesheet .x-grid-row' : {
42546                                 height: '80px'
42547                             },
42548                             '.x-grid-row td' : {
42549                                 'vertical-align' : 0
42550                             },
42551                             '.course-edit-link' : {
42552                                 'color' : 'blue',
42553                                 'text-overflow' : 'ellipsis',
42554                                 'overflow' : 'hidden',
42555                                 'white-space' : 'nowrap',
42556                                 'cursor' : 'pointer'
42557                             },
42558                             '.sub-link' : {
42559                                 'color' : 'green'
42560                             },
42561                             '.de-act-sup-link' : {
42562                                 'color' : 'purple',
42563                                 'text-decoration' : 'line-through'
42564                             },
42565                             '.de-act-link' : {
42566                                 'color' : 'red',
42567                                 'text-decoration' : 'line-through'
42568                             },
42569                             '.course-timesheet .course-highlight' : {
42570                                 'border-top-style': 'dashed !important',
42571                                 'border-bottom-bottom': 'dashed !important'
42572                             },
42573                             '.course-timesheet .course-item' : {
42574                                 'font-family'   : 'tahoma, arial, helvetica',
42575                                 'font-size'     : '11px',
42576                                 'overflow'      : 'hidden',
42577                                 'padding-left'  : '10px',
42578                                 'padding-right' : '10px',
42579                                 'padding-top' : '10px' 
42580                             }
42581                             
42582                         }, Roo.id());
42583                                 this.ds.load({});
42584                     }
42585                 },
42586                 autoWidth : true,
42587                 monitorWindowResize : false,
42588                 cellrenderer : function(v,x,r)
42589                 {
42590                     return v;
42591                 },
42592                 sm : {
42593                     xtype: 'CellSelectionModel',
42594                     xns: Roo.grid
42595                 },
42596                 dataSource : {
42597                     xtype: 'Store',
42598                     xns: Roo.data,
42599                     listeners : {
42600                         beforeload : function (_self, options)
42601                         {
42602                             options.params = options.params || {};
42603                             options.params._month = _this.monthField.getValue();
42604                             options.params.limit = 9999;
42605                             options.params['sort'] = 'when_dt';    
42606                             options.params['dir'] = 'ASC';    
42607                             this.proxy.loadResponse = this.loadResponse;
42608                             Roo.log("load?");
42609                             //this.addColumns();
42610                         },
42611                         load : function (_self, records, options)
42612                         {
42613                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
42614                                 // if you click on the translation.. you can edit it...
42615                                 var el = Roo.get(this);
42616                                 var id = el.dom.getAttribute('data-id');
42617                                 var d = el.dom.getAttribute('data-date');
42618                                 var t = el.dom.getAttribute('data-time');
42619                                 //var id = this.child('span').dom.textContent;
42620                                 
42621                                 //Roo.log(this);
42622                                 Pman.Dialog.CourseCalendar.show({
42623                                     id : id,
42624                                     when_d : d,
42625                                     when_t : t,
42626                                     productitem_active : id ? 1 : 0
42627                                 }, function() {
42628                                     _this.grid.ds.load({});
42629                                 });
42630                            
42631                            });
42632                            
42633                            _this.panel.fireEvent('resize', [ '', '' ]);
42634                         }
42635                     },
42636                     loadResponse : function(o, success, response){
42637                             // this is overridden on before load..
42638                             
42639                             Roo.log("our code?");       
42640                             //Roo.log(success);
42641                             //Roo.log(response)
42642                             delete this.activeRequest;
42643                             if(!success){
42644                                 this.fireEvent("loadexception", this, o, response);
42645                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
42646                                 return;
42647                             }
42648                             var result;
42649                             try {
42650                                 result = o.reader.read(response);
42651                             }catch(e){
42652                                 Roo.log("load exception?");
42653                                 this.fireEvent("loadexception", this, o, response, e);
42654                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
42655                                 return;
42656                             }
42657                             Roo.log("ready...");        
42658                             // loop through result.records;
42659                             // and set this.tdate[date] = [] << array of records..
42660                             _this.tdata  = {};
42661                             Roo.each(result.records, function(r){
42662                                 //Roo.log(r.data);
42663                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
42664                                     _this.tdata[r.data.when_dt.format('j')] = [];
42665                                 }
42666                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
42667                             });
42668                             
42669                             //Roo.log(_this.tdata);
42670                             
42671                             result.records = [];
42672                             result.totalRecords = 6;
42673                     
42674                             // let's generate some duumy records for the rows.
42675                             //var st = _this.dateField.getValue();
42676                             
42677                             // work out monday..
42678                             //st = st.add(Date.DAY, -1 * st.format('w'));
42679                             
42680                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
42681                             
42682                             var firstOfMonth = date.getFirstDayOfMonth();
42683                             var days = date.getDaysInMonth();
42684                             var d = 1;
42685                             var firstAdded = false;
42686                             for (var i = 0; i < result.totalRecords ; i++) {
42687                                 //var d= st.add(Date.DAY, i);
42688                                 var row = {};
42689                                 var added = 0;
42690                                 for(var w = 0 ; w < 7 ; w++){
42691                                     if(!firstAdded && firstOfMonth != w){
42692                                         continue;
42693                                     }
42694                                     if(d > days){
42695                                         continue;
42696                                     }
42697                                     firstAdded = true;
42698                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
42699                                     row['weekday'+w] = String.format(
42700                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
42701                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
42702                                                     d,
42703                                                     date.format('Y-m-')+dd
42704                                                 );
42705                                     added++;
42706                                     if(typeof(_this.tdata[d]) != 'undefined'){
42707                                         Roo.each(_this.tdata[d], function(r){
42708                                             var is_sub = '';
42709                                             var deactive = '';
42710                                             var id = r.id;
42711                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
42712                                             if(r.parent_id*1>0){
42713                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
42714                                                 id = r.parent_id;
42715                                             }
42716                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
42717                                                 deactive = 'de-act-link';
42718                                             }
42719                                             
42720                                             row['weekday'+w] += String.format(
42721                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
42722                                                     id, //0
42723                                                     r.product_id_name, //1
42724                                                     r.when_dt.format('h:ia'), //2
42725                                                     is_sub, //3
42726                                                     deactive, //4
42727                                                     desc // 5
42728                                             );
42729                                         });
42730                                     }
42731                                     d++;
42732                                 }
42733                                 
42734                                 // only do this if something added..
42735                                 if(added > 0){ 
42736                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
42737                                 }
42738                                 
42739                                 
42740                                 // push it twice. (second one with an hour..
42741                                 
42742                             }
42743                             //Roo.log(result);
42744                             this.fireEvent("load", this, o, o.request.arg);
42745                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
42746                         },
42747                     sortInfo : {field: 'when_dt', direction : 'ASC' },
42748                     proxy : {
42749                         xtype: 'HttpProxy',
42750                         xns: Roo.data,
42751                         method : 'GET',
42752                         url : baseURL + '/Roo/Shop_course.php'
42753                     },
42754                     reader : {
42755                         xtype: 'JsonReader',
42756                         xns: Roo.data,
42757                         id : 'id',
42758                         fields : [
42759                             {
42760                                 'name': 'id',
42761                                 'type': 'int'
42762                             },
42763                             {
42764                                 'name': 'when_dt',
42765                                 'type': 'string'
42766                             },
42767                             {
42768                                 'name': 'end_dt',
42769                                 'type': 'string'
42770                             },
42771                             {
42772                                 'name': 'parent_id',
42773                                 'type': 'int'
42774                             },
42775                             {
42776                                 'name': 'product_id',
42777                                 'type': 'int'
42778                             },
42779                             {
42780                                 'name': 'productitem_id',
42781                                 'type': 'int'
42782                             },
42783                             {
42784                                 'name': 'guid',
42785                                 'type': 'int'
42786                             }
42787                         ]
42788                     }
42789                 },
42790                 toolbar : {
42791                     xtype: 'Toolbar',
42792                     xns: Roo,
42793                     items : [
42794                         {
42795                             xtype: 'Button',
42796                             xns: Roo.Toolbar,
42797                             listeners : {
42798                                 click : function (_self, e)
42799                                 {
42800                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
42801                                     sd.setMonth(sd.getMonth()-1);
42802                                     _this.monthField.setValue(sd.format('Y-m-d'));
42803                                     _this.grid.ds.load({});
42804                                 }
42805                             },
42806                             text : "Back"
42807                         },
42808                         {
42809                             xtype: 'Separator',
42810                             xns: Roo.Toolbar
42811                         },
42812                         {
42813                             xtype: 'MonthField',
42814                             xns: Roo.form,
42815                             listeners : {
42816                                 render : function (_self)
42817                                 {
42818                                     _this.monthField = _self;
42819                                    // _this.monthField.set  today
42820                                 },
42821                                 select : function (combo, date)
42822                                 {
42823                                     _this.grid.ds.load({});
42824                                 }
42825                             },
42826                             value : (function() { return new Date(); })()
42827                         },
42828                         {
42829                             xtype: 'Separator',
42830                             xns: Roo.Toolbar
42831                         },
42832                         {
42833                             xtype: 'TextItem',
42834                             xns: Roo.Toolbar,
42835                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
42836                         },
42837                         {
42838                             xtype: 'Fill',
42839                             xns: Roo.Toolbar
42840                         },
42841                         {
42842                             xtype: 'Button',
42843                             xns: Roo.Toolbar,
42844                             listeners : {
42845                                 click : function (_self, e)
42846                                 {
42847                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
42848                                     sd.setMonth(sd.getMonth()+1);
42849                                     _this.monthField.setValue(sd.format('Y-m-d'));
42850                                     _this.grid.ds.load({});
42851                                 }
42852                             },
42853                             text : "Next"
42854                         }
42855                     ]
42856                 },
42857                  
42858             }
42859         };
42860         
42861         *//*
42862  * Based on:
42863  * Ext JS Library 1.1.1
42864  * Copyright(c) 2006-2007, Ext JS, LLC.
42865  *
42866  * Originally Released Under LGPL - original licence link has changed is not relivant.
42867  *
42868  * Fork - LGPL
42869  * <script type="text/javascript">
42870  */
42871  
42872 /**
42873  * @class Roo.LoadMask
42874  * A simple utility class for generically masking elements while loading data.  If the element being masked has
42875  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
42876  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
42877  * element's UpdateManager load indicator and will be destroyed after the initial load.
42878  * @constructor
42879  * Create a new LoadMask
42880  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
42881  * @param {Object} config The config object
42882  */
42883 Roo.LoadMask = function(el, config){
42884     this.el = Roo.get(el);
42885     Roo.apply(this, config);
42886     if(this.store){
42887         this.store.on('beforeload', this.onBeforeLoad, this);
42888         this.store.on('load', this.onLoad, this);
42889         this.store.on('loadexception', this.onLoadException, this);
42890         this.removeMask = false;
42891     }else{
42892         var um = this.el.getUpdateManager();
42893         um.showLoadIndicator = false; // disable the default indicator
42894         um.on('beforeupdate', this.onBeforeLoad, this);
42895         um.on('update', this.onLoad, this);
42896         um.on('failure', this.onLoad, this);
42897         this.removeMask = true;
42898     }
42899 };
42900
42901 Roo.LoadMask.prototype = {
42902     /**
42903      * @cfg {Boolean} removeMask
42904      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
42905      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
42906      */
42907     removeMask : false,
42908     /**
42909      * @cfg {String} msg
42910      * The text to display in a centered loading message box (defaults to 'Loading...')
42911      */
42912     msg : 'Loading...',
42913     /**
42914      * @cfg {String} msgCls
42915      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
42916      */
42917     msgCls : 'x-mask-loading',
42918
42919     /**
42920      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
42921      * @type Boolean
42922      */
42923     disabled: false,
42924
42925     /**
42926      * Disables the mask to prevent it from being displayed
42927      */
42928     disable : function(){
42929        this.disabled = true;
42930     },
42931
42932     /**
42933      * Enables the mask so that it can be displayed
42934      */
42935     enable : function(){
42936         this.disabled = false;
42937     },
42938     
42939     onLoadException : function()
42940     {
42941         Roo.log(arguments);
42942         
42943         if (typeof(arguments[3]) != 'undefined') {
42944             Roo.MessageBox.alert("Error loading",arguments[3]);
42945         } 
42946         /*
42947         try {
42948             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
42949                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
42950             }   
42951         } catch(e) {
42952             
42953         }
42954         */
42955     
42956         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
42957     },
42958     // private
42959     onLoad : function()
42960     {
42961         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
42962     },
42963
42964     // private
42965     onBeforeLoad : function(){
42966         if(!this.disabled){
42967             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
42968         }
42969     },
42970
42971     // private
42972     destroy : function(){
42973         if(this.store){
42974             this.store.un('beforeload', this.onBeforeLoad, this);
42975             this.store.un('load', this.onLoad, this);
42976             this.store.un('loadexception', this.onLoadException, this);
42977         }else{
42978             var um = this.el.getUpdateManager();
42979             um.un('beforeupdate', this.onBeforeLoad, this);
42980             um.un('update', this.onLoad, this);
42981             um.un('failure', this.onLoad, this);
42982         }
42983     }
42984 };/*
42985  * Based on:
42986  * Ext JS Library 1.1.1
42987  * Copyright(c) 2006-2007, Ext JS, LLC.
42988  *
42989  * Originally Released Under LGPL - original licence link has changed is not relivant.
42990  *
42991  * Fork - LGPL
42992  * <script type="text/javascript">
42993  */
42994
42995
42996 /**
42997  * @class Roo.XTemplate
42998  * @extends Roo.Template
42999  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
43000 <pre><code>
43001 var t = new Roo.XTemplate(
43002         '&lt;select name="{name}"&gt;',
43003                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
43004         '&lt;/select&gt;'
43005 );
43006  
43007 // then append, applying the master template values
43008  </code></pre>
43009  *
43010  * Supported features:
43011  *
43012  *  Tags:
43013
43014 <pre><code>
43015       {a_variable} - output encoded.
43016       {a_variable.format:("Y-m-d")} - call a method on the variable
43017       {a_variable:raw} - unencoded output
43018       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
43019       {a_variable:this.method_on_template(...)} - call a method on the template object.
43020  
43021 </code></pre>
43022  *  The tpl tag:
43023 <pre><code>
43024         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
43025         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
43026         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
43027         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
43028   
43029         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
43030         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
43031 </code></pre>
43032  *      
43033  */
43034 Roo.XTemplate = function()
43035 {
43036     Roo.XTemplate.superclass.constructor.apply(this, arguments);
43037     if (this.html) {
43038         this.compile();
43039     }
43040 };
43041
43042
43043 Roo.extend(Roo.XTemplate, Roo.Template, {
43044
43045     /**
43046      * The various sub templates
43047      */
43048     tpls : false,
43049     /**
43050      *
43051      * basic tag replacing syntax
43052      * WORD:WORD()
43053      *
43054      * // you can fake an object call by doing this
43055      *  x.t:(test,tesT) 
43056      * 
43057      */
43058     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
43059
43060     /**
43061      * compile the template
43062      *
43063      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
43064      *
43065      */
43066     compile: function()
43067     {
43068         var s = this.html;
43069      
43070         s = ['<tpl>', s, '</tpl>'].join('');
43071     
43072         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
43073             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
43074             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
43075             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
43076             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
43077             m,
43078             id     = 0,
43079             tpls   = [];
43080     
43081         while(true == !!(m = s.match(re))){
43082             var forMatch   = m[0].match(nameRe),
43083                 ifMatch   = m[0].match(ifRe),
43084                 execMatch   = m[0].match(execRe),
43085                 namedMatch   = m[0].match(namedRe),
43086                 
43087                 exp  = null, 
43088                 fn   = null,
43089                 exec = null,
43090                 name = forMatch && forMatch[1] ? forMatch[1] : '';
43091                 
43092             if (ifMatch) {
43093                 // if - puts fn into test..
43094                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
43095                 if(exp){
43096                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
43097                 }
43098             }
43099             
43100             if (execMatch) {
43101                 // exec - calls a function... returns empty if true is  returned.
43102                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
43103                 if(exp){
43104                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
43105                 }
43106             }
43107             
43108             
43109             if (name) {
43110                 // for = 
43111                 switch(name){
43112                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
43113                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
43114                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
43115                 }
43116             }
43117             var uid = namedMatch ? namedMatch[1] : id;
43118             
43119             
43120             tpls.push({
43121                 id:     namedMatch ? namedMatch[1] : id,
43122                 target: name,
43123                 exec:   exec,
43124                 test:   fn,
43125                 body:   m[1] || ''
43126             });
43127             if (namedMatch) {
43128                 s = s.replace(m[0], '');
43129             } else { 
43130                 s = s.replace(m[0], '{xtpl'+ id + '}');
43131             }
43132             ++id;
43133         }
43134         this.tpls = [];
43135         for(var i = tpls.length-1; i >= 0; --i){
43136             this.compileTpl(tpls[i]);
43137             this.tpls[tpls[i].id] = tpls[i];
43138         }
43139         this.master = tpls[tpls.length-1];
43140         return this;
43141     },
43142     /**
43143      * same as applyTemplate, except it's done to one of the subTemplates
43144      * when using named templates, you can do:
43145      *
43146      * var str = pl.applySubTemplate('your-name', values);
43147      *
43148      * 
43149      * @param {Number} id of the template
43150      * @param {Object} values to apply to template
43151      * @param {Object} parent (normaly the instance of this object)
43152      */
43153     applySubTemplate : function(id, values, parent)
43154     {
43155         
43156         
43157         var t = this.tpls[id];
43158         
43159         
43160         try { 
43161             if(t.test && !t.test.call(this, values, parent)){
43162                 return '';
43163             }
43164         } catch(e) {
43165             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
43166             Roo.log(e.toString());
43167             Roo.log(t.test);
43168             return ''
43169         }
43170         try { 
43171             
43172             if(t.exec && t.exec.call(this, values, parent)){
43173                 return '';
43174             }
43175         } catch(e) {
43176             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
43177             Roo.log(e.toString());
43178             Roo.log(t.exec);
43179             return ''
43180         }
43181         try {
43182             var vs = t.target ? t.target.call(this, values, parent) : values;
43183             parent = t.target ? values : parent;
43184             if(t.target && vs instanceof Array){
43185                 var buf = [];
43186                 for(var i = 0, len = vs.length; i < len; i++){
43187                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
43188                 }
43189                 return buf.join('');
43190             }
43191             return t.compiled.call(this, vs, parent);
43192         } catch (e) {
43193             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
43194             Roo.log(e.toString());
43195             Roo.log(t.compiled);
43196             return '';
43197         }
43198     },
43199
43200     compileTpl : function(tpl)
43201     {
43202         var fm = Roo.util.Format;
43203         var useF = this.disableFormats !== true;
43204         var sep = Roo.isGecko ? "+" : ",";
43205         var undef = function(str) {
43206             Roo.log("Property not found :"  + str);
43207             return '';
43208         };
43209         
43210         var fn = function(m, name, format, args)
43211         {
43212             //Roo.log(arguments);
43213             args = args ? args.replace(/\\'/g,"'") : args;
43214             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
43215             if (typeof(format) == 'undefined') {
43216                 format= 'htmlEncode';
43217             }
43218             if (format == 'raw' ) {
43219                 format = false;
43220             }
43221             
43222             if(name.substr(0, 4) == 'xtpl'){
43223                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
43224             }
43225             
43226             // build an array of options to determine if value is undefined..
43227             
43228             // basically get 'xxxx.yyyy' then do
43229             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
43230             //    (function () { Roo.log("Property not found"); return ''; })() :
43231             //    ......
43232             
43233             var udef_ar = [];
43234             var lookfor = '';
43235             Roo.each(name.split('.'), function(st) {
43236                 lookfor += (lookfor.length ? '.': '') + st;
43237                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
43238             });
43239             
43240             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
43241             
43242             
43243             if(format && useF){
43244                 
43245                 args = args ? ',' + args : "";
43246                  
43247                 if(format.substr(0, 5) != "this."){
43248                     format = "fm." + format + '(';
43249                 }else{
43250                     format = 'this.call("'+ format.substr(5) + '", ';
43251                     args = ", values";
43252                 }
43253                 
43254                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
43255             }
43256              
43257             if (args.length) {
43258                 // called with xxyx.yuu:(test,test)
43259                 // change to ()
43260                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
43261             }
43262             // raw.. - :raw modifier..
43263             return "'"+ sep + udef_st  + name + ")"+sep+"'";
43264             
43265         };
43266         var body;
43267         // branched to use + in gecko and [].join() in others
43268         if(Roo.isGecko){
43269             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
43270                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
43271                     "';};};";
43272         }else{
43273             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
43274             body.push(tpl.body.replace(/(\r\n|\n)/g,
43275                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
43276             body.push("'].join('');};};");
43277             body = body.join('');
43278         }
43279         
43280         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
43281        
43282         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
43283         eval(body);
43284         
43285         return this;
43286     },
43287
43288     applyTemplate : function(values){
43289         return this.master.compiled.call(this, values, {});
43290         //var s = this.subs;
43291     },
43292
43293     apply : function(){
43294         return this.applyTemplate.apply(this, arguments);
43295     }
43296
43297  });
43298
43299 Roo.XTemplate.from = function(el){
43300     el = Roo.getDom(el);
43301     return new Roo.XTemplate(el.value || el.innerHTML);
43302 };